-
Notifications
You must be signed in to change notification settings - Fork 1
/
ObjectRecupHebergeurs.cpp
307 lines (257 loc) · 12.6 KB
/
ObjectRecupHebergeurs.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
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
/* This file is part of Multiup MaNaGeR.
*
* Multiup MaNaGeR is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Multiup MaNaGeR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Multiup MaNaGeR. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2012-2023 Lex
*/
#include "ObjectRecupHebergeurs.h"
RecupHebergeurs::RecupHebergeurs(QObject *parent): QObject(parent)
{
//qDebug() << "RecupHebergeurs :: Nous sommes dans :" << Q_FUNC_INFO << QThread::currentThreadId();
//qRegisterMetaType<QList<QByteArray> >("QList<QByteArray>");
// PS: Rien d'autre ne peut être initialisé ici...
// Surtout pas le QNetworkAccessManager car :
// nous sommes encore dans un objet appartenant au thread parent
// l'attribut sera lu dans le thread enfant
// ex:
// QObject: Cannot create children for a parent that is in a different thread.
// (Parent is QNetworkAccessManager(0x89cc4e0), parent's thread is QThread(0x8930af8), current thread is QThread(0x89f3b38)
//
// PS: ce message notifiant 3 threads, est probablement du au fait que l'initialisation de cet objet se fait par défaut détaché de tout:
// QObject *parent = NULL...
}
RecupHebergeurs::RecupHebergeurs(const QString &login, const QString &password, QObject *parent): QObject(parent)
{
// Constructeur appelé en cas de récupération des hébergeurs avec le login
m_login = login;
m_password = password;
}
RecupHebergeurs::~RecupHebergeurs()
{
qDebug() << "RecupHebergeurs :: Destruction en cours...";
// Save new hosts and delete old icons in the cache
//qDebug() << m_downloadedIcons.keys() << '\n' << m_hostnames << '\n' << m_listCachedIcons.keys();
// Save new hosts
QHash<QString, QByteArray>::const_iterator hosts_it = m_downloadedIcons.constBegin();
QPixmap pixmap;
while (hosts_it != m_downloadedIcons.constEnd()) {
// Don't save corrupted data
if (pixmap.loadFromData(hosts_it.value()))
saveIconToCache(hosts_it.key(), hosts_it.value());
++hosts_it;
}
// Delete old hosts
hosts_it = m_listCachedIcons.constBegin();
while (hosts_it != m_listCachedIcons.constEnd()) {
if (!m_hostnames.contains(hosts_it.key()))
qDebug() << "to delete" << hosts_it.key();
++hosts_it;
}
}
void RecupHebergeurs::receptionRecupHebergeursIcones(QByteArray iconData, QString hostId)
{
//qDebug() << "RecupHebergeurs :: Icon reception" << hostId << "Remaining icons to display: " << m_nbRemainingIconsToDisplay - 1;
// Send iconData to the main process
emit this->emissionRecupHebergeursIcones(iconData, hostId);
m_nbRemainingIconsToDisplay--;
// Memorize the downloaded hosts for the save step in ~RecupHebergeurs()
m_downloadedIcons.insert(hostId, iconData);
if (m_nbRemainingIconsToDisplay == 0)
// No more icon to load
// This signal ends the thread RecupHebergeur
emit m_threadRecupIcones->finished();
}
void RecupHebergeurs::demarrage()
{
// !!!! Slot appelé lorsque on s'est assuré que le thread acceuillant cette classe dérivée de QObject est lancé !!!!
qDebug() << "RecupHebergeurs :: Nous sommes dans :" << Q_FUNC_INFO << QThread::currentThreadId();
#ifdef WINDOWS
m_listCachedIcons = loadCachedIcons(QApplication::applicationDirPath() + "\\cache\\");
#endif
#ifdef LINUX
m_listCachedIcons = loadCachedIcons(QDir::homePath() + "/" + APP_DIR + "/cache/");
#endif
// Initialisation du thread des icones
m_thread = new QThread(this);
// Création et envoi de l'objet dans le thread
m_threadRecupIcones = new RecupHebergeursIcones(NULL);
m_threadRecupIcones->moveToThread(m_thread);
connect(m_thread, SIGNAL(started()), m_threadRecupIcones, SLOT(demarrage()));
connect(this, SIGNAL(emissionUrlIcone(QUrl, QString)), m_threadRecupIcones, SLOT(downloadUrl(QUrl, QString)));
connect(m_threadRecupIcones, SIGNAL(emissionRecupHebergeursIcones(QByteArray, QString)), this, SLOT(receptionRecupHebergeursIcones(QByteArray, QString)));
connect(m_threadRecupIcones, SIGNAL(finished()), m_thread, SLOT(quit()));
connect(m_threadRecupIcones, SIGNAL(finished()), m_threadRecupIcones, SLOT(deleteLater()));
connect(m_thread, SIGNAL(finished()), m_thread, SLOT(deleteLater()));
connect(m_thread, SIGNAL(destroyed()), this, SIGNAL(finished()));
m_thread->start();
// On crée notre requête
QNetworkRequest requete;
requete.setRawHeader("User-Agent", USER_AGENT);
requete.setRawHeader("Accept-Language","fr,fr-fr;q=0.8,en-us;q=0.5,en;q=0.3");
requete.setRawHeader("Accept-Charset","ISO-8859-1,utf-8;q=0.7,*;q=0.7");
requete.setRawHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");
requete.setUrl(QUrl(URL_RECUPERATION_DROITS));
qDebug() << "RecupHebergeurs :: Recuperation des hebergeurs en cours...";
// Initialisation du QNetworkAccessManager
m_networkAccessManager = new QNetworkAccessManager(this);
QNetworkReply *r = NULL;
if (m_login.isEmpty() || m_password.isEmpty()) {
// La requête GET suffit ici (pas de login spécifié)
// en cas d'upload anonyme => pas de récupération des hébergeurs avec le login
r = m_networkAccessManager->get(requete);
} else {
// en cas d'upload connecté => récupération des hébergeurs avec le login
r = m_networkAccessManager->post(requete, QString("username=" +
m_login +
"&password=" +
m_password
).toLatin1());
}
connect(r, SIGNAL(finished()), this, SLOT(finRecupHebergeurs()));
}
void RecupHebergeurs::finRecupHebergeurs()
{
QNetworkReply *r = qobject_cast<QNetworkReply*>(sender());
qDebug() << "RecupHebergeurs :: Analyse de la liste des hebergeurs en cours...";
// Récupération de la page
QByteArray temp = r->readAll();
// Traitement des erreurs éventuelles
switch (r->error()) {
// Doc de l'énumération : http://qt.developpez.com/doc/4.7/qnetworkreply/#networkerror-enum
case QNetworkReply::NoError : //qDebug() << "RecupHebergeurs :: Pas d'erreurs, poursuite";
r->deleteLater();
m_statutConnexion = Bad; // A la base on est pas sûr d'analyser correctement la chaine...
break;
default : qCritical() << "RecupHebergeurs :: Erreur lors du chargement. Code de l'erreur : " << r->errorString();
r->deleteLater();
m_statutConnexion = Error;
this->finProcedure();
return;
}
/* V4
{
"error":"success",
"hosts":
{
"1fichier.com": {
"selected":"true",
"size":5120
},
"easybytez.com":{
"selected":"false",
"size":5120
}
},
"default":
[
"dl.free.fr",
"uptobox.com",
"uploaded.net",
"ezfile.ch",
"1fichier.com",
"turbobit.net",
"hugefiles.net",
"rapidgator.net",
"mega.co.nz",
"zippyshare.com",
"2shared.com",
"filesupload.org",
"uplea.com",
"clicknupload.com",
"uploadable.ch",
"oboom.com",
"filerio.in",
"userscloud.com"
],
"maxHosts":18
}
*/
QJsonDocument loadDoc(QJsonDocument::fromJson(temp));
if (!loadDoc.isNull()) { // Test de validité
QJsonObject connexionObj = loadDoc.object();
if (connexionObj["error"].toString() == "success") {
// Succès certain
// Récupération de l'objet liste de hosts
QJsonObject hosts = connexionObj["hosts"].toObject();
// Here's how to iterate over a QMap<QString, int> using an iterator
// http://qt-project.org/doc/qt-4.8/qmap.html
// http://doc.qt.io/qt-5/containers.html#stl-style-iterators
m_nbRemainingIconsToDisplay = hosts.size();
m_hostnames = hosts.keys();
QJsonObject::const_iterator hosts_it = hosts.constBegin();
while (hosts_it != hosts.constEnd()) {
// Objet host
QJsonObject host = hosts_it.value().toObject();
//qDebug() << hosts_it.key() << ":" << host;
// Stockage du texte affiché sur la checkbox => nom du host
QString nom = hosts_it.key();
nom[0] = nom.at(0).toUpper();
// Etat de sélection
bool etat_selection = (host["selected"] == "true") ? true : false;
// Création checkbox
emit this->emissionRecupHebergeursHebergeurs(
hosts_it.key(),
nom + " (" + QString::number(host["size"].toInt(0)) + " Mo)",
etat_selection,
hosts_it.key());
// Icons...
QByteArray iconData = m_listCachedIcons.value(hosts_it.key());
if (!iconData.isNull()) {
// The icon is in the cache
//qDebug() << hosts_it.key() << "found in cache";
m_nbRemainingIconsToDisplay--;
// Send it to the main process
emit this->emissionRecupHebergeursIcones(iconData, hosts_it.key());
if (m_nbRemainingIconsToDisplay == 0)
// No more icon to load
// This signal ends the thread RecupHebergeur
emit m_threadRecupIcones->finished();
} else {
// Récupération de l'icone via son URL
//qDebug() << hosts_it.key() << "not found in cache";
QUrl url(URL_RECUPERATION_ICONES + hosts_it.key() + ".png");
emit this->emissionUrlIcone(url, hosts_it.key());
}
++hosts_it;
}
// Permet l'émission du signal avec le paramètre 1 = réussite
// Voir finProcedure()
m_statutConnexion = Ok;
// Nombre maximal d'hébergeurs à sélectionner
int maxHosts = connexionObj["maxHosts"].toInt();
qDebug() << "RecupHebergeurs :: Nombre max d'hébergeurs autorisés: " << maxHosts;
emit this->emissionMaxSelectionHebergeurs(maxHosts);
}
// Echec certain
// m_statutConnexion reste à Bad
}
this->finProcedure();
}
void RecupHebergeurs::finProcedure()
{
//BAD,OK ERROR ?
switch (m_statutConnexion) {
case Bad: qDebug() << "RecupHebergeurs :: Echec d'analyse de la chaine";
emit this->emissionRecupHebergeursEtat(0);
emit this->finished();
break;
case Ok: //qDebug() << "RecupHebergeurs :: Ok";
emit this->emissionRecupHebergeursEtat(1);
break;
default: qDebug() << "RecupHebergeurs :: Erreur inconnue";
emit this->emissionRecupHebergeursEtat(2);
emit this->finished();
break;
}
}