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
|
// SPDX-License-Identifier: GPL-2.0
#include "uploadDiveShare.h"
#include <QDebug>
#include "core/membuffer.h"
#include "core/settings/qPrefCloudStorage.h"
#include "core/qthelper.h"
#include "core/cloudstorage.h"
#include "core/save-html.h"
#include "core/errorhelper.h"
uploadDiveShare *uploadDiveShare::instance()
{
static uploadDiveShare *self = new uploadDiveShare;
return self;
}
uploadDiveShare::uploadDiveShare():
reply(NULL)
{
timeout.setSingleShot(true);
}
void uploadDiveShare::doUpload(bool selected, const QString &uid, bool noPublic)
{
//generate json
struct membuffer buf = {};
export_list(&buf, NULL, selected, false);
QByteArray json_data(buf.buffer, buf.len);
free_buffer(&buf);
//Request to server
QNetworkRequest request;
if (noPublic)
request.setUrl(QUrl("http://dive-share.appspot.com/upload?private=true"));
else
request.setUrl(QUrl("http://dive-share.appspot.com/upload"));
request.setRawHeader("User-Agent", getUserAgent().toUtf8());
if (uid.length() != 0)
request.setRawHeader("X-UID", uid.toUtf8());
// Execute async.
reply = manager()->put(request, json_data);
// connect signals from upload process
connect(reply, SIGNAL(finished()), this, SLOT(uploadFinishedSlot()));
connect(reply, SIGNAL(error(QNetworkReply::NetworkError)), this,
SLOT(uploadErrorSlot(QNetworkReply::NetworkError)));
connect(reply, SIGNAL(uploadProgress(qint64, qint64)), this,
SLOT(updateProgressSlot(qint64, qint64)));
connect(&timeout, SIGNAL(timeout()), this, SLOT(uploadTimeoutSlot()));
timeout.start(30000); // 30s
}
void uploadDiveShare::updateProgressSlot(qint64 current, qint64 total)
{
if (!reply)
return;
if (total <= 0 || current <= 0)
return;
// Calculate percentage
// And signal whoever wants to know
qreal percentage = (float)current / (float)total;
emit uploadProgress(percentage, 1.0);
// reset the timer: 30 seconds after we last got any data
timeout.start();
}
void uploadDiveShare::uploadFinishedSlot()
{
QByteArray html = reply->readAll();
reply->deleteLater();
timeout.stop();
if (reply->error() != 0) {
emit uploadFinish(false, reply->errorString(), html);
} else {
emit uploadFinish(true, tr("Upload successful"), html);
}
}
void uploadDiveShare::uploadTimeoutSlot()
{
timeout.stop();
if (reply) {
reply->deleteLater();
reply = NULL;
}
QString err(tr("dive-share.com not responding"));
report_error(err.toUtf8());
emit uploadFinish(false, err, QByteArray());
}
void uploadDiveShare::uploadErrorSlot(QNetworkReply::NetworkError error)
{
timeout.stop();
if (reply) {
reply->deleteLater();
reply = NULL;
}
QString err(tr("network error %1").arg(error));
report_error(err.toUtf8());
emit uploadFinish(false, err, QByteArray());
}
|