QTfrontend/ui/page/pagedata.cpp
author sheepluva
Sat, 28 Apr 2012 18:56:31 +0200
changeset 6952 7f70f37bbf08
parent 6932 005393616925
child 7015 08642c7da4a3
permissions -rw-r--r--
license header year range adjustments
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5271
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
     1
/*
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
     2
 * Hedgewars, a free turn based strategy game
6952
7f70f37bbf08 license header year range adjustments
sheepluva
parents: 6932
diff changeset
     3
 * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
5271
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
     4
 *
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
     8
 *
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    12
 * GNU General Public License for more details.
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    13
 *
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    17
 */
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    18
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    19
#include <QGridLayout>
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    20
#include <QPushButton>
5567
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
    21
#include <QNetworkAccessManager>
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
    22
#include <QNetworkRequest>
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
    23
#include <QNetworkReply>
5567
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
    24
#include <QFileInfo>
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
    25
#include <QFileDialog>
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
    26
#include <QDebug>
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
    27
#include <QProgressBar>
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
    28
#include <QBuffer>
5271
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    29
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    30
#include "pagedata.h"
5755
a079b4dea081 Implement DataBrowser which downloads resources (images, css) on its own.
unc0rr
parents: 5754
diff changeset
    31
#include "databrowser.h"
5762
0d6a338bf377 Extract to cfgdir
unc0rr
parents: 5756
diff changeset
    32
#include "hwconsts.h"
6932
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
    33
#include "DataManager.h"
5271
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    34
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
    35
#include "quazip.h"
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
    36
#include "quazipfile.h"
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
    37
6042
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    38
QLayout * PageDataDownload::bodyLayoutDefinition()
5271
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    39
{
6042
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    40
    QGridLayout * pageLayout = new QGridLayout();
5271
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    41
    pageLayout->setColumnStretch(0, 1);
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    42
    pageLayout->setColumnStretch(1, 1);
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    43
    pageLayout->setColumnStretch(2, 1);
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    44
5755
a079b4dea081 Implement DataBrowser which downloads resources (images, css) on its own.
unc0rr
parents: 5754
diff changeset
    45
    web = new DataBrowser(this);
5271
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    46
    pageLayout->addWidget(web, 0, 0, 1, 3);
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
    47
5769
09aca6e1317a Prevent runtime warning
unc0rr
parents: 5768
diff changeset
    48
    progressBarsLayout = new QVBoxLayout();
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
    49
    pageLayout->addLayout(progressBarsLayout, 1, 0, 1, 3);
6042
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    50
    return pageLayout;
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    51
}
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
    52
6042
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    53
void PageDataDownload::connectSignals()
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    54
{
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    55
    connect(web, SIGNAL(anchorClicked(QUrl)), this, SLOT(request(const QUrl&)));
6932
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
    56
    connect(this, SIGNAL(goBack()), this, SLOT(onPageLeave()));
6042
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    57
}
6009
14f6fc9869f2 code cleanup/etc
sheepluva
parents: 5769
diff changeset
    58
6042
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    59
PageDataDownload::PageDataDownload(QWidget* parent) : AbstractPage(parent)
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    60
{
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    61
    initPage();
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    62
8b5345758f62 some more cleanups/refactoring/blahblah, some button positions may are a bit off atm. also I added a new picture for one of the buttons
sheepluva
parents: 6009
diff changeset
    63
    web->setOpenLinks(false);
6384
8b7e8ff1b16a Disable loading content.html on startup, it is fetched on pushing to top of stack already.
nemo
parents: 6131
diff changeset
    64
//    fetchList();
6932
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
    65
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
    66
    m_contentDownloaded = false;
5271
48d18e329298 ack. forgot to add my stub files
nemo
parents:
diff changeset
    67
}
5567
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
    68
5765
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    69
void PageDataDownload::request(const QUrl &url)
5567
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
    70
{
5768
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
    71
    QUrl finalUrl;
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
    72
    if(url.host().isEmpty())
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
    73
        finalUrl = QUrl("http://www.hedgewars.org" + url.path());
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
    74
    else
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
    75
        finalUrl = url;
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
    76
5765
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    77
    if(url.path().endsWith(".zip"))
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    78
    {
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    79
        qWarning() << "Download Request" << url.toString();
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    80
        QString fileName = QFileInfo(url.toString()).fileName();
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
    81
5768
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
    82
        QNetworkRequest newRequest(finalUrl);
5765
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    83
        newRequest.setAttribute(QNetworkRequest::User, fileName);
5567
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
    84
5765
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    85
        QNetworkAccessManager *manager = new QNetworkAccessManager(this);
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    86
        QNetworkReply *reply = manager->get(newRequest);
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    87
        connect(reply, SIGNAL(finished()), this, SLOT(fileDownloaded()));
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    88
        connect(reply, SIGNAL(downloadProgress(qint64, qint64)), this, SLOT(downloadProgress(qint64, qint64)));
5567
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
    89
5765
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    90
        QProgressBar *progressBar = new QProgressBar(this);
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    91
        progressBarsLayout->addWidget(progressBar);
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    92
        progressBars.insert(reply, progressBar);
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
    93
    }
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
    94
    else
5765
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    95
    {
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    96
        qWarning() << "Page Request" << url.toString();
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    97
5768
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
    98
        QNetworkRequest newRequest(finalUrl);
5765
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
    99
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
   100
        QNetworkAccessManager *manager = new QNetworkAccessManager(this);
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
   101
        QNetworkReply *reply = manager->get(newRequest);
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
   102
        connect(reply, SIGNAL(finished()), this, SLOT(pageDownloaded()));
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
   103
    }
5567
44c9a577b082 Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents: 5271
diff changeset
   104
}
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   105
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   106
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   107
void PageDataDownload::pageDownloaded()
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   108
{
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   109
    QNetworkReply * reply = qobject_cast<QNetworkReply *>(sender());
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   110
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   111
    if(reply)
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   112
    {
5766
nemo
parents: 5765
diff changeset
   113
        QString html = QString::fromUtf8(reply->readAll());
5768
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
   114
        int begin = html.indexOf("<!-- BEGIN -->");
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
   115
        int end = html.indexOf("<!-- END -->");
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
   116
        if(begin != -1 && begin < end)
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
   117
        {
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
   118
            html.truncate(end);
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
   119
            html.remove(0, begin);
852ba8f5685c Only prepend hedgewars.org if the url is relative
unc0rr
parents: 5766
diff changeset
   120
        }
5764
d785d7e23113 truncate page on comment tags, as suggested by unc0rr
nemo
parents: 5762
diff changeset
   121
        web->setHtml(html);
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   122
    }
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   123
}
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   124
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   125
void PageDataDownload::fileDownloaded()
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   126
{
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   127
    QNetworkReply * reply = qobject_cast<QNetworkReply *>(sender());
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   128
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   129
    if(reply)
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   130
    {
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   131
        QByteArray fileContents = reply->readAll();
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   132
        QProgressBar *progressBar = progressBars.value(reply, 0);
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   133
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   134
        if(progressBar)
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   135
        {
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   136
            progressBars.remove(reply);
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   137
            progressBar->deleteLater();
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   138
        }
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   139
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   140
        extractDataPack(&fileContents);
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   141
    }
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   142
}
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   143
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   144
void PageDataDownload::downloadProgress(qint64 bytesRecieved, qint64 bytesTotal)
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   145
{
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   146
    QNetworkReply * reply = qobject_cast<QNetworkReply *>(sender());
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   147
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   148
    if(reply)
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   149
    {
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   150
        QProgressBar *progressBar = progressBars.value(reply, 0);
5746
fbc52bb92cad Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents: 5582
diff changeset
   151
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   152
        if(progressBar)
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   153
        {
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   154
            progressBar->setValue(bytesRecieved);
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   155
            progressBar->setMaximum(bytesTotal);
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   156
        }
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   157
    }
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   158
}
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   159
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   160
void PageDataDownload::fetchList()
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   161
{
5765
e87f6756773e Allow surfing, download and extract only .zip files
unc0rr
parents: 5764
diff changeset
   162
    request(QUrl("http://hedgewars.org/content.html"));
5754
583b7a683b17 - Implement progressbars to show download progress
unc0rr
parents: 5746
diff changeset
   163
}
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   164
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   165
bool PageDataDownload::extractDataPack(QByteArray * buf)
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   166
{
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   167
    QBuffer buffer;
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   168
    buffer.setBuffer(buf);
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   169
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   170
    QuaZip zip;
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   171
    zip.setIoDevice(&buffer);
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   172
    if(!zip.open(QuaZip::mdUnzip))
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   173
    {
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   174
        qWarning("testRead(): zip.open(): %d", zip.getZipError());
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   175
        return false;
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   176
    }
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   177
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   178
    QuaZipFile file(&zip);
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   179
5762
0d6a338bf377 Extract to cfgdir
unc0rr
parents: 5756
diff changeset
   180
    QDir extractDir(*cfgdir);
0d6a338bf377 Extract to cfgdir
unc0rr
parents: 5756
diff changeset
   181
    extractDir.cd("Data");
0d6a338bf377 Extract to cfgdir
unc0rr
parents: 5756
diff changeset
   182
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   183
    for(bool more = zip.goToFirstFile(); more; more = zip.goToNextFile())
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   184
    {
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   185
        if(!file.open(QIODevice::ReadOnly))
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   186
        {
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   187
            qWarning("file.open(): %d", file.getZipError());
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   188
            return false;
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   189
        }
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   190
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   191
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   192
        QString fileName = file.getActualFileName();
5762
0d6a338bf377 Extract to cfgdir
unc0rr
parents: 5756
diff changeset
   193
        QString filePath = extractDir.filePath(fileName);
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   194
        if (fileName.endsWith("/"))
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   195
        {
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   196
            QFileInfo fi(filePath);
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   197
            QDir().mkpath(fi.filePath());
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   198
        }
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   199
        else
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   200
        {
5762
0d6a338bf377 Extract to cfgdir
unc0rr
parents: 5756
diff changeset
   201
            qDebug() << "Extracting" << filePath;
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   202
            QFile out(filePath);
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   203
            if(!out.open(QFile::WriteOnly))
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   204
            {
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   205
                qWarning() << "out.open():" << out.errorString();
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   206
                return false;
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   207
            }
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   208
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   209
            out.write(file.readAll());
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   210
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   211
            out.close();
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   212
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   213
            if(file.getZipError() != UNZ_OK)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   214
            {
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   215
                qWarning("file.getFileName(): %d", file.getZipError());
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   216
                return false;
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   217
            }
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   218
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   219
            if(!file.atEnd())
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   220
            {
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   221
                qWarning("read all but not EOF");
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   222
                return false;
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   223
            }
6932
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   224
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   225
            m_contentDownloaded = true;
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   226
        }
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   227
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   228
        file.close();
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   229
6616
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   230
        if(file.getZipError()!=UNZ_OK)
f77bb02b669f astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents: 6384
diff changeset
   231
        {
5756
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   232
            qWarning("file.close(): %d", file.getZipError());
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   233
            return false;
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   234
        }
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   235
    }
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   236
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   237
    zip.close();
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   238
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   239
    return true;
b451fd21ff4c Extract downloaded content into temp dir
unc0rr
parents: 5755
diff changeset
   240
}
6932
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   241
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   242
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   243
void PageDataDownload::onPageLeave()
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   244
{
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   245
    if (m_contentDownloaded)
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   246
    {
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   247
        m_contentDownloaded = false;
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   248
        DataManager::instance().reload();
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   249
    }
005393616925 make DLC trigger data reload
sheepluva
parents: 6700
diff changeset
   250
}