author | sheepluva |
Sat, 17 Jan 2015 21:41:01 +0100 | |
changeset 10793 | f8e0961b463e |
parent 10108 | c68cf030eded |
child 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
5271 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
9998 | 3 |
* Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com> |
5271 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
5271 | 17 |
*/ |
18 |
||
19 |
#include <QGridLayout> |
|
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 | 26 |
#include <QDebug> |
27 |
#include <QProgressBar> |
|
5756 | 28 |
#include <QBuffer> |
9829 | 29 |
#include <QDesktopServices> |
5271 | 30 |
|
31 |
#include "pagedata.h" |
|
5755
a079b4dea081
Implement DataBrowser which downloads resources (images, css) on its own.
unc0rr
parents:
5754
diff
changeset
|
32 |
#include "databrowser.h" |
5762 | 33 |
#include "hwconsts.h" |
6932 | 34 |
#include "DataManager.h" |
8055
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
35 |
#include "FileEngine.h" |
5754 | 36 |
|
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
|
37 |
QLayout * PageDataDownload::bodyLayoutDefinition() |
5271 | 38 |
{ |
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
|
39 |
QGridLayout * pageLayout = new QGridLayout(); |
5271 | 40 |
pageLayout->setColumnStretch(0, 1); |
41 |
pageLayout->setColumnStretch(1, 1); |
|
42 |
pageLayout->setColumnStretch(2, 1); |
|
43 |
||
5755
a079b4dea081
Implement DataBrowser which downloads resources (images, css) on its own.
unc0rr
parents:
5754
diff
changeset
|
44 |
web = new DataBrowser(this); |
5271 | 45 |
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
|
46 |
|
5769 | 47 |
progressBarsLayout = new QVBoxLayout(); |
5754 | 48 |
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
|
49 |
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
|
50 |
} |
5746
fbc52bb92cad
Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents:
5582
diff
changeset
|
51 |
|
9829 | 52 |
QLayout * PageDataDownload::footerLayoutDefinition() |
53 |
{ |
|
54 |
QHBoxLayout * bottomLayout = new QHBoxLayout(); |
|
55 |
bottomLayout->setStretch(0, 1); |
|
56 |
||
57 |
pbOpenDir = addButton(tr("Open packages directory"), bottomLayout, 1, false); |
|
58 |
||
59 |
bottomLayout->setStretch(2, 1); |
|
60 |
||
61 |
return bottomLayout; |
|
62 |
} |
|
63 |
||
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
|
64 |
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
|
65 |
{ |
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
|
66 |
connect(web, SIGNAL(anchorClicked(QUrl)), this, SLOT(request(const QUrl&))); |
6932 | 67 |
connect(this, SIGNAL(goBack()), this, SLOT(onPageLeave())); |
9829 | 68 |
connect(pbOpenDir, SIGNAL(clicked()), this, SLOT(openPackagesDir())); |
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
|
69 |
} |
6009 | 70 |
|
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
|
71 |
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
|
72 |
{ |
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
|
73 |
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
|
74 |
|
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
|
75 |
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
|
76 |
// fetchList(); |
8876
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
77 |
web->setHtml(QString( |
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
78 |
"<center><h2>Hedgewars Downloadable Content</h2><br><br>" |
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
79 |
"<i>%1</i></center>") |
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
80 |
.arg(tr("Loading, please wait."))); |
6932 | 81 |
m_contentDownloaded = false; |
5271 | 82 |
} |
5567
44c9a577b082
Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents:
5271
diff
changeset
|
83 |
|
5765
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
84 |
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
|
85 |
{ |
5768 | 86 |
QUrl finalUrl; |
87 |
if(url.host().isEmpty()) |
|
88 |
finalUrl = QUrl("http://www.hedgewars.org" + url.path()); |
|
89 |
else |
|
90 |
finalUrl = url; |
|
91 |
||
8059 | 92 |
if(url.path().endsWith(".hwp") || url.path().endsWith(".zip")) |
5765
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
93 |
{ |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
94 |
qWarning() << "Download Request" << url.toString(); |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
95 |
QString fileName = QFileInfo(url.toString()).fileName(); |
5754 | 96 |
|
5768 | 97 |
QNetworkRequest newRequest(finalUrl); |
5765
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
98 |
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
|
99 |
|
5765
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(fileDownloaded())); |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
103 |
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
|
104 |
|
5765
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
105 |
QProgressBar *progressBar = new QProgressBar(this); |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
106 |
progressBarsLayout->addWidget(progressBar); |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
107 |
progressBars.insert(reply, progressBar); |
6616
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6384
diff
changeset
|
108 |
} |
f77bb02b669f
astyle -C -S -L -N --style=allman --recursive "QTfrontend/*.cpp" "QTfrontend/*.h"
nemo
parents:
6384
diff
changeset
|
109 |
else |
5765
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
110 |
{ |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
111 |
qWarning() << "Page Request" << url.toString(); |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
112 |
|
5768 | 113 |
QNetworkRequest newRequest(finalUrl); |
5765
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
114 |
|
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
115 |
QNetworkAccessManager *manager = new QNetworkAccessManager(this); |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
116 |
QNetworkReply *reply = manager->get(newRequest); |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
117 |
connect(reply, SIGNAL(finished()), this, SLOT(pageDownloaded())); |
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
118 |
} |
5567
44c9a577b082
Tiny bit of progress on download page - hooked it up to "Info" button for now.
nemo
parents:
5271
diff
changeset
|
119 |
} |
5746
fbc52bb92cad
Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents:
5582
diff
changeset
|
120 |
|
fbc52bb92cad
Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents:
5582
diff
changeset
|
121 |
|
5754 | 122 |
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
|
123 |
{ |
fbc52bb92cad
Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents:
5582
diff
changeset
|
124 |
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
|
125 |
|
8876
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
126 |
if (reply && (reply->error() == QNetworkReply::NoError)) { |
5766 | 127 |
QString html = QString::fromUtf8(reply->readAll()); |
5768 | 128 |
int begin = html.indexOf("<!-- BEGIN -->"); |
129 |
int end = html.indexOf("<!-- END -->"); |
|
130 |
if(begin != -1 && begin < end) |
|
131 |
{ |
|
132 |
html.truncate(end); |
|
133 |
html.remove(0, begin); |
|
134 |
} |
|
5764
d785d7e23113
truncate page on comment tags, as suggested by unc0rr
nemo
parents:
5762
diff
changeset
|
135 |
web->setHtml(html); |
8876
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
136 |
} else |
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
137 |
web->setHtml(QString( |
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
138 |
"<center><h2>Hedgewars Downloadable Content</h2><br><br>" |
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
139 |
"<p><i><h4>%1</i></h4></p></center>") |
bd8df772dbe6
reintroduce the notification message in case you access dlc page without internet connection
koda
parents:
8059
diff
changeset
|
140 |
.arg(tr("This page requires an internet connection."))); |
5746
fbc52bb92cad
Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents:
5582
diff
changeset
|
141 |
} |
fbc52bb92cad
Use QTextBrowser instead of WebKit for downloadable contents page (currently only shows the page itself)
unc0rr
parents:
5582
diff
changeset
|
142 |
|
5754 | 143 |
void PageDataDownload::fileDownloaded() |
144 |
{ |
|
145 |
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
|
146 |
|
5754 | 147 |
if(reply) |
148 |
{ |
|
149 |
QProgressBar *progressBar = progressBars.value(reply, 0); |
|
150 |
||
151 |
if(progressBar) |
|
152 |
{ |
|
153 |
progressBars.remove(reply); |
|
154 |
progressBar->deleteLater(); |
|
155 |
} |
|
5756 | 156 |
|
8055
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
157 |
QDir extractDir(*cfgdir); |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
158 |
extractDir.cd("Data"); |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
159 |
|
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
160 |
QString fileName = extractDir.filePath(QFileInfo(reply->url().path()).fileName()); |
8059 | 161 |
if(fileName.endsWith(".zip")) |
162 |
fileName = fileName.left(fileName.length() - 4) + ".hwp"; |
|
8055
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
163 |
|
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
164 |
QFile out(fileName); |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
165 |
if(!out.open(QFile::WriteOnly)) |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
166 |
{ |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
167 |
qWarning() << "out.open():" << out.errorString(); |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
168 |
return ; |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
169 |
} |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
170 |
|
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
171 |
out.write(reply->readAll()); |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
172 |
|
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
173 |
out.close(); |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
174 |
|
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
175 |
// now mount it |
04dd8b7fb605
- Download .hwp files into Data folder and mount them immediately (yes, could cause problems in case of overlapped contents)
unc0rr
parents:
7824
diff
changeset
|
176 |
FileEngineHandler::mount(fileName); |
5754 | 177 |
} |
178 |
} |
|
179 |
||
180 |
void PageDataDownload::downloadProgress(qint64 bytesRecieved, qint64 bytesTotal) |
|
181 |
{ |
|
182 |
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
|
183 |
|
5754 | 184 |
if(reply) |
185 |
{ |
|
186 |
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
|
187 |
|
5754 | 188 |
if(progressBar) |
189 |
{ |
|
190 |
progressBar->setValue(bytesRecieved); |
|
191 |
progressBar->setMaximum(bytesTotal); |
|
192 |
} |
|
193 |
} |
|
194 |
} |
|
195 |
||
196 |
void PageDataDownload::fetchList() |
|
197 |
{ |
|
5765
e87f6756773e
Allow surfing, download and extract only .zip files
unc0rr
parents:
5764
diff
changeset
|
198 |
request(QUrl("http://hedgewars.org/content.html")); |
5754 | 199 |
} |
5756 | 200 |
|
6932 | 201 |
|
202 |
void PageDataDownload::onPageLeave() |
|
203 |
{ |
|
204 |
if (m_contentDownloaded) |
|
205 |
{ |
|
206 |
m_contentDownloaded = false; |
|
7824 | 207 |
//DataManager::instance().reload(); |
6932 | 208 |
} |
209 |
} |
|
9829 | 210 |
|
211 |
void PageDataDownload::openPackagesDir() |
|
212 |
{ |
|
213 |
QString path = QDir::toNativeSeparators(cfgdir->absolutePath() + "/Data"); |
|
214 |
QDesktopServices::openUrl(QUrl("file:///" + path)); |
|
215 |
} |