summaryrefslogtreecommitdiffstats
path: root/utils/themeeditor/gui/fontdownloader.cpp
blob: 693f4a5b202d1e009f18c75ef4eaa4302f417ff3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 * $Id$
 *
 * Copyright (C) 2010 Robert Bieber
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

#include "fontdownloader.h"
#include "ui_fontdownloader.h"

#include "quazip.h"
#include "quazipfile.h"
#include "quazipfileinfo.h"

#include <QNetworkRequest>
#include <QNetworkReply>
#include <QCloseEvent>

#include <QDebug>

FontDownloader::FontDownloader(QWidget *parent, QString path) :
    QDialog(parent),
    ui(new Ui::FontDownloader), dir(path), reply(0)
{
    ui->setupUi(this);

    manager = new QNetworkAccessManager();

    if(!dir.exists())
        dir.mkpath(path);

    if(dir.isReadable())
    {
        fout.setFileName(dir.absolutePath() + "/fonts.zip");
        if(fout.open(QFile::WriteOnly))
        {
            ui->label->setText(tr("Downloading font pack"));

            QNetworkRequest request;
            request.setUrl(QUrl("http://download.rockbox.org"
                                "/daily/fonts/rockbox-fonts.zip"));
            request.setRawHeader("User-Agent", "Rockbox Theme Editor");

            reply = manager->get(request);

            QObject::connect(reply, SIGNAL(readyRead()),
                             this, SLOT(dataReceived()));
            QObject::connect(reply, SIGNAL(finished()),
                             this, SLOT(finished()));
            QObject::connect(reply, SIGNAL(downloadProgress(qint64,qint64)),
                             this, SLOT(progress(qint64,qint64)));
        }
        else
        {
            ui->label->setText(tr("Error: Couldn't open archive file"));
        }
    }
    else
    {
        ui->label->setText(tr("Error: Fonts directory not readable"));
    }

}

FontDownloader::~FontDownloader()
{
    delete ui;
    fout.close();
    manager->deleteLater();

    if(reply)
    {
        reply->abort();
        reply->deleteLater();
    }
}

void FontDownloader::cancel()
{
    if(reply)
    {
        reply->abort();
        reply->deleteLater();
        reply = 0;
    }
}

void FontDownloader::dataReceived()
{
    fout.write(reply->readAll());
}

void FontDownloader::progress(qint64 bytes, qint64 available)
{
    if(available > 0)
    {
        ui->progressBar->setMaximum(available);
        ui->progressBar->setValue(bytes);
    }
}

void FontDownloader::finished()
{
    fout.close();
    reply->deleteLater();
    reply = 0;
    ui->label->setText(tr("Download complete"));

    /* Extracting the ZIP archive */
    QuaZip archive(fout.fileName());
    QuaZipFile zipFile(&archive);
    archive.open(QuaZip::mdUnzip);

    bool more;
    for(more = archive.goToFirstFile(); more; more = archive.goToNextFile())
    {
        if(archive.getCurrentFileName().split("/").last() == "")
            continue;

        QFile fontFile(dir.absolutePath() + "/" +
                       archive.getCurrentFileName().split("/").last());
        fontFile.open(QFile::WriteOnly);

        zipFile.open(QIODevice::ReadOnly);
        fontFile.write(zipFile.readAll());
        zipFile.close();

        fontFile.close();
    }

    archive.close();
    QFile::remove(dir.absolutePath() + "/fonts.zip");

    hide();
    this->deleteLater();
}

void FontDownloader::netError(QNetworkReply::NetworkError code)
{
    ui->label->setText(tr("Network error: ") + reply->errorString());
}

void FontDownloader::closeEvent(QCloseEvent *event)
{
    cancel();
    event->accept();
}