forked from alphaonex86/Ultracopier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InternetUpdater.cpp
executable file
·149 lines (139 loc) · 4.46 KB
/
InternetUpdater.cpp
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
#include "InternetUpdater.h"
#include "EventDispatcher.h"
#include "OptionEngine.h"
#include "cpp11addition.h"
#include "ProductKey.h"
#include "Version.h"
#ifdef ULTRACOPIER_INTERNET_SUPPORT
#include <QNetworkRequest>
#include <QUrl>
#include "PluginsManager.h"
InternetUpdater::InternetUpdater(QObject *parent) :
QObject(parent)
{
connect(&newUpdateTimer,&QTimer::timeout,this,&InternetUpdater::downloadFile);
connect(&firstUpdateTimer,&QTimer::timeout,this,&InternetUpdater::downloadFile);
newUpdateTimer.start(1000*3600*72);
firstUpdateTimer.setSingleShot(true);
firstUpdateTimer.start(1000*600);
reply=NULL;
qnam=new QNetworkAccessManager();
}
InternetUpdater::~InternetUpdater()
{
if(reply!=NULL)
{
delete reply;
reply=NULL;
}
delete qnam;
}
void InternetUpdater::checkUpdate()
{
downloadFileInternal(true);
}
void InternetUpdater::downloadFile()
{
downloadFileInternal();
}
void InternetUpdater::downloadFileInternal(const bool force)
{
if(!force)
if(!stringtobool(OptionEngine::optionEngine->getOptionValue("Ultracopier","checkTheUpdate")))
return;
#ifdef ULTRACOPIER_MODE_SUPERCOPIER
std::string name="Supercopier";
#else
std::string name="Ultracopier";
#endif
std::string ultracopierVersion;
if(ProductKey::productKey->isUltimate())
ultracopierVersion=name+" Ultimate/"+FacilityEngine::version();
else
ultracopierVersion=name+"/"+FacilityEngine::version();
#ifdef ULTRACOPIER_VERSION_PORTABLE
#ifdef ULTRACOPIER_PLUGIN_ALL_IN_ONE
ultracopierVersion+=" portable/all-in-one";
#else
ultracopierVersion+=" portable";
#endif
#else
#ifdef ULTRACOPIER_PLUGIN_ALL_IN_ONE
ultracopierVersion+=" all-in-one";
#endif
#endif
#if defined(Q_OS_WIN32) || defined(Q_OS_MAC)
ultracopierVersion+=" (OS: "+EventDispatcher::GetOSDisplayString()+")";
#endif
ultracopierVersion+=" "+std::string(ULTRACOPIER_PLATFORM_CODE);
QNetworkRequest networkRequest(QStringLiteral(ULTRACOPIER_UPDATER_URL));
networkRequest.setHeader(QNetworkRequest::UserAgentHeader,QString::fromStdString(ultracopierVersion));
networkRequest.setRawHeader("Connection", "Close");
reply = qnam->get(networkRequest);
connect(reply, &QNetworkReply::finished, this, &InternetUpdater::httpFinished);
}
void InternetUpdater::httpFinished()
{
if(reply==NULL)
return;
QVariant redirectionTarget = reply->attribute(QNetworkRequest::RedirectionTargetAttribute);
if (!reply->isFinished())
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"get the new update failed: not finished");
reply->deleteLater();
reply=NULL;
return;
}
else if (reply->error())
{
newUpdateTimer.stop();
newUpdateTimer.start(1000*3600*24);
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"get the new update failed: "+reply->errorString().toStdString());
reply->deleteLater();
reply=NULL;
return;
} else if (!redirectionTarget.isNull()) {
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Notice,"redirection denied to: "+redirectionTarget.toUrl().toString().toStdString());
reply->deleteLater();
reply=NULL;
return;
}
QString newVersion=QString::fromUtf8(reply->readAll());
if(newVersion.isEmpty())
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"version string is empty");
reply->deleteLater();
reply=NULL;
return;
}
newVersion.remove("\n");
if(!newVersion.contains(QRegularExpression(QLatin1Literal("^[0-9]+(\\.[0-9]+)+$"))))
{
ULTRACOPIER_DEBUGCONSOLE(Ultracopier::DebugLevel_Critical,"version string don't match: "+newVersion.toStdString());
reply->deleteLater();
reply=NULL;
return;
}
if(newVersion.toStdString()==FacilityEngine::version())
{
reply->deleteLater();
reply=NULL;
emit noNewUpdate();
return;
}
if(PluginsManager::compareVersion(newVersion.toStdString(),"<=",FacilityEngine::version()))
{
reply->deleteLater();
reply=NULL;
emit noNewUpdate();
return;
}
newUpdateTimer.stop();
emit newUpdate(newVersion.toStdString());
reply->deleteLater();
reply=NULL;
//regen to force close the connection
delete qnam;
qnam=new QNetworkAccessManager();
}
#endif