-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathqt-updater.cpp
More file actions
421 lines (333 loc) · 16.4 KB
/
qt-updater.cpp
File metadata and controls
421 lines (333 loc) · 16.4 KB
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
// global headers
#include <iostream>
#include <iomanip>
// library headers
#include <QCloseEvent>
#include <QDialogButtonBox>
#include <QFileInfo>
#include <QGroupBox>
#include <QLabel>
#include <QLayout>
#include <QMessageBox>
#include <QPlainTextEdit>
#include <QProgressBar>
#include <QPushButton>
#include <QProgressDialog>
#include <QTimer>
// local headers
#include "appimage/update/qt-ui.h"
#include "appimage/update.h"
#include "spoiler.h"
#include "util/util.h"
namespace appimage {
namespace update {
using namespace util;
namespace qt {
class QtUpdater::Private {
public:
const QString pathToAppImage;
appimage::update::Updater* updater;
QLabel* label;
QHBoxLayout* labelLayout;
QLabel* progressLabel;
QLabel* validationStateLabel;
QDialogButtonBox* buttonBox;
QProgressBar* progressBar;
QLayout* mainLayout;
QString appName;
QString appImageFileName;
QTimer* progressTimer;
Spoiler* spoiler;
QVBoxLayout* spoilerLayout;
QPlainTextEdit* spoilerLog;
bool finished;
const int minimumWidth;
bool enableRunUpdatedAppImageButton;
public:
explicit Private(const QString& pathToAppImage) : buttonBox(nullptr),
progressBar(nullptr),
mainLayout(nullptr),
label(nullptr),
progressTimer(nullptr),
progressLabel(nullptr),
pathToAppImage(pathToAppImage),
spoiler(nullptr),
spoilerLayout(nullptr),
spoilerLog(nullptr),
finished(false),
minimumWidth(400),
enableRunUpdatedAppImageButton(false)
{
if (!isFile(pathToAppImage.toStdString()))
throw std::runtime_error("No such file or directory: " + pathToAppImage.toStdString());
updater = new Updater(pathToAppImage.toStdString());
auto fileInfo = QFileInfo(pathToAppImage);
{
auto appName = fileInfo.baseName();
QStringList archs;
archs << "x86_64" << "i386" << "i586" << "i686" << "x64" << "x86";
for (const auto& arch : archs)
appName.replace(arch, "");
auto stdAppName = appName.toStdString();
trim(stdAppName, '-');
appName = QString::fromStdString(stdAppName);
this->appName = appName;
}
appImageFileName = fileInfo.baseName() + "." + fileInfo.suffix();
}
~Private() {
delete updater;
delete label;
delete progressLabel;
delete buttonBox;
delete progressBar;
delete mainLayout;
delete progressTimer;
delete spoiler;
}
public:
void startUpdate() {
updater->start();
}
void printStatusMessages(const QtUpdater* self, Updater& updater) {
std::string nextMessage;
while (updater.nextStatusMessage(nextMessage)) {
emit self->newStatusMessage(nextMessage);
}
}
};
QtUpdater::QtUpdater(const QString& pathToAppImage) {
d = new Private(pathToAppImage);
init();
}
QtUpdater::~QtUpdater() {
delete d;
}
void QtUpdater::init() {
// replace default cancel button handling
setWindowTitle(QString("Updating " + d->appName));
// make it a modal dialog
// doesn't have an effect in the standalone AppImageUpdate-Qt app, but should improve UX when being
// integrated in other apps
setModal(true);
d->mainLayout = new QVBoxLayout();
setLayout(d->mainLayout);
// make sure the QDialog resizes with the spoiler
layout()->setSizeConstraint(QLayout::SetFixedSize);
d->label = new QLabel(QString("Updating " + d->appImageFileName + "..."));
d->label->setMinimumWidth(d->minimumWidth);
layout()->addWidget(d->label);
d->progressBar = new QProgressBar();
d->progressBar->setMinimumWidth(d->minimumWidth);
d->progressBar->setMinimum(0);
d->progressBar->setMaximum(100);
layout()->addWidget(d->progressBar);
d->progressLabel = new QLabel(this);
d->progressLabel->setMinimumWidth(d->minimumWidth);
d->progressLabel->setAlignment(Qt::AlignRight | Qt::AlignVCenter);
d->progressLabel->setText("Starting update...");
layout()->addWidget(d->progressLabel);
d->spoiler = new Spoiler("Details");
d->spoiler->resize(QSize(d->minimumWidth, 200));
d->spoilerLayout = new QVBoxLayout();
d->spoilerLog = new QPlainTextEdit();
d->spoilerLog->setReadOnly(true);
d->spoilerLayout->addWidget(d->spoilerLog);
d->spoiler->setContentLayout(*d->spoilerLayout);
layout()->addWidget(d->spoiler);
d->buttonBox = new QDialogButtonBox(QDialogButtonBox::Cancel);
connect(d->buttonBox, SIGNAL(rejected()), this, SLOT(showCancelDialog()));
layout()->addWidget(d->buttonBox);
d->progressTimer = new QTimer(this);
connect(d->progressTimer, SIGNAL(timeout()), this, SLOT(updateProgress()));
d->progressTimer->start(100);
adjustSize();
// default run action
connect(this, SIGNAL(runUpdatedAppImageClicked()), this, SLOT(runUpdatedAppImage()));
// connect log method
connect(this, SIGNAL(newStatusMessage(const std::string&)), this, SLOT(processNewStatusMessage(const std::string&)));
}
void QtUpdater::processNewStatusMessage(const std::string& nextMessage) {
// print message to stderr
std::cerr << nextMessage << std::endl;
// if spoilerLog is available, also print message there
if (d->spoilerLog != nullptr) {
d->spoilerLog->moveCursor(QTextCursor::End);
std::ostringstream oss;
oss << nextMessage << std::endl;
d->spoilerLog->insertPlainText(QString::fromStdString(oss.str()));
}
}
void QtUpdater::updateProgress() {
double progress;
if (!d->updater->progress(progress))
return;
d->progressBar->setValue(int(progress * 100));
long long fileSize;
if (d->updater->remoteFileSize(fileSize)) {
double downloadedSize = progress * fileSize;
std::stringstream ss;
ss << std::fixed << std::setprecision(1)
<< downloadedSize / 1024.0f / 1024.0f << " MiB of " << fileSize / 1024.0f / 1024.0f << " MiB";
d->progressLabel->setText(QString::fromStdString(ss.str()));
}
d->printStatusMessages(this, *d->updater);
if (d->updater->isDone()) {
d->finished = true;
d->progressTimer->stop();
auto palette = d->progressBar->palette();
// can only validate signature once the update has finished, otherwiws
Updater::ValidationState validationResult = Updater::VALIDATION_FAILED;
QString validationMessage;
// TODO: refactor this block, it's quite difficult to understand right now
if (d->updater->hasError()) {
d->label->setText("Update failed!");
palette.setColor(QPalette::Highlight, Qt::red);
} else {
// can
validationResult = d->updater->validateSignature();
validationMessage = QString::fromStdString(d->updater->signatureValidationMessage(validationResult));
if (validationResult != d->updater->VALIDATION_PASSED) {
if (validationResult >= d->updater->VALIDATION_WARNING && validationResult < d->updater->VALIDATION_FAILED) {
if (validationResult == d->updater->VALIDATION_NOT_SIGNED) {
// copy permissions of the old AppImage to the new version
d->updater->copyPermissionsToNewFile();
d->label->setText("Update Completed with warning: " + validationMessage);
palette.setColor(QPalette::Highlight, Qt::gray);
palette.setColor(QPalette::HighlightedText, Qt::black);
} else {
d->label->setText("Signature validation problem: " + validationMessage);
palette.setColor(QPalette::Highlight, Qt::yellow);
palette.setColor(QPalette::HighlightedText, Qt::black);
}
} else {
d->updater->restoreOriginalFile();
const QString message = "Signature validation error: " + validationMessage;
d->label->setText(message);
palette.setColor(QPalette::Highlight, Qt::red);
QMessageBox::critical(this, "Error", message + "\n\nRestoring original file");
}
} else {
// copy permissions of the old AppImage to the new version
d->updater->copyPermissionsToNewFile();
if (validationResult == d->updater->VALIDATION_PASSED)
newStatusMessage("Signature validation passed");
d->label->setText("Update successful!");
palette.setColor(QPalette::Highlight, Qt::green);
palette.setColor(QPalette::HighlightedText, Qt::black);
}
}
// TODO: doesn't work with the Gtk+ platform theme
d->progressBar->setPalette(palette);
// replace button box
disconnect(d->buttonBox, SIGNAL(rejected()));
delete d->buttonBox;
d->buttonBox = new QDialogButtonBox();
if (!d->updater->hasError() && validationResult < d->updater->VALIDATION_FAILED && d->enableRunUpdatedAppImageButton) {
d->buttonBox->addButton("Run updated AppImage", QDialogButtonBox::AcceptRole);
connect(d->buttonBox, &QDialogButtonBox::accepted, this, [this](){
emit runUpdatedAppImageClicked();
});
}
d->buttonBox->addButton("Close", QDialogButtonBox::RejectRole);
connect(d->buttonBox, &QDialogButtonBox::rejected, this, [this]() {
this->done(0);
});
layout()->addWidget(d->buttonBox);
}
}
int QtUpdater::checkForUpdates(bool writeToStderr) const {
appimage::update::Updater updater(d->pathToAppImage.toStdString());
try {
if (updater.updateInformation().empty()) {
return -1;
}
} catch (const std::runtime_error& e) {
std::cerr << e.what();
return -1;
}
bool changesAvailable = false;
auto result = updater.checkForChanges(changesAvailable);
// print all messages that might be available
d->printStatusMessages(this, updater);
if (!result)
return 2;
if (changesAvailable) {
if (writeToStderr)
std::cerr << "Update available" << std::endl;
return 1;
} else {
if (writeToStderr)
std::cerr << "AppImage already up to date" << std::endl;
return 0;
}
}
void QtUpdater::closeEvent(QCloseEvent* event) {
if (!d->finished) {
// ignore event...
event->ignore();
// ... and show cancel dialog
showCancelDialog();
}
}
void QtUpdater::showEvent(QShowEvent* event) {
QDialog::showEvent(event);
d->startUpdate();
}
bool QtUpdater::pathToNewFile(QString& pathToNewAppImage) const {
std::string stdPathToNewAppImage;
if (!d->updater->pathToNewFile(stdPathToNewAppImage))
return false;
pathToNewAppImage = QString::fromStdString(stdPathToNewAppImage);
return true;
}
void QtUpdater::runUpdatedAppImage() {
QString pathToNewAppImage;
if (!pathToNewFile(pathToNewAppImage))
throw std::runtime_error("Could not detect path to new AppImage");
runApp(pathToNewAppImage.toStdString());
done(0);
}
void QtUpdater::showCancelDialog() {
// prepare message box
auto button = QMessageBox::critical(
this,
"Cancel update", "Do you want to cancel the update process?",
QMessageBox::No | QMessageBox::Yes,
QMessageBox::Yes
);
switch (button) {
case QMessageBox::Yes:
cancelUpdate();
break;
default:
break;
}
}
void QtUpdater::cancelUpdate() {
std::cerr << "canceled" << std::endl;
if (!d->updater->isDone())
d->updater->stop();
done(1);
}
QtUpdater* QtUpdater::fromEnv() {
auto* APPIMAGE = getenv("APPIMAGE");
if (APPIMAGE == nullptr || !isFile(APPIMAGE))
return nullptr;
auto pathToAppImage = QString(APPIMAGE);
return new QtUpdater(pathToAppImage);
}
void QtUpdater::keyPressEvent(QKeyEvent* event) {
if (event->key() == Qt::Key_Escape) {
event->ignore();
showCancelDialog();
} else {
QDialog::keyPressEvent(event);
}
}
void QtUpdater::enableRunUpdatedAppImageButton(bool enable) {
d->enableRunUpdatedAppImageButton = enable;
}
}
}
}