2018-04-25 18:19:05 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Camila Ayres <hello@camila.codes>
|
|
|
|
*
|
|
|
|
* This program 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 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "iconjob.h"
|
|
|
|
|
|
|
|
namespace OCC {
|
|
|
|
|
|
|
|
IconJob::IconJob(const QUrl &url, QObject *parent) :
|
|
|
|
QObject(parent)
|
|
|
|
{
|
|
|
|
connect(&_accessManager, &QNetworkAccessManager::finished,
|
|
|
|
this, &IconJob::finished);
|
|
|
|
|
|
|
|
QNetworkRequest request(url);
|
2020-01-19 12:01:04 +03:00
|
|
|
#if (QT_VERSION >= 0x050600)
|
2020-01-16 16:01:54 +03:00
|
|
|
request.setAttribute(QNetworkRequest::FollowRedirectsAttribute, true);
|
2020-01-19 12:01:04 +03:00
|
|
|
#endif
|
2018-04-25 18:19:05 +03:00
|
|
|
_accessManager.get(request);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IconJob::finished(QNetworkReply *reply)
|
|
|
|
{
|
2018-07-06 12:14:41 +03:00
|
|
|
if (reply->error() != QNetworkReply::NoError)
|
2018-04-25 18:19:05 +03:00
|
|
|
return;
|
|
|
|
|
|
|
|
reply->deleteLater();
|
|
|
|
emit jobFinished(reply->readAll());
|
|
|
|
}
|
|
|
|
}
|