2006-09-30 20:02:39 +04:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
2007-07-14 18:31:59 +04:00
|
|
|
* Copyright (C) 2006 Christophe Dumez
|
2006-09-30 20:02:39 +04:00
|
|
|
*
|
2007-07-14 18:31:59 +04:00
|
|
|
* 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.
|
2006-09-30 20:02:39 +04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-14 18:31:59 +04:00
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
2009-04-05 21:00:55 +04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
* exception statement from your version.
|
|
|
|
*
|
2007-07-14 18:31:59 +04:00
|
|
|
* Contact : chris@qbittorrent.org
|
2006-09-30 20:02:39 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DOWNLOADTHREAD_H
|
|
|
|
#define DOWNLOADTHREAD_H
|
|
|
|
|
2009-11-04 18:04:11 +03:00
|
|
|
#include <QNetworkReply>
|
2012-05-20 17:03:10 +04:00
|
|
|
#include <QNetworkCookie>
|
2009-11-04 18:04:11 +03:00
|
|
|
#include <QObject>
|
2010-01-29 21:37:47 +03:00
|
|
|
#include <QHash>
|
2010-04-06 20:25:24 +04:00
|
|
|
#include <QSslError>
|
2013-03-01 23:25:38 +04:00
|
|
|
#include <zlib.h>
|
2007-11-22 01:30:33 +03:00
|
|
|
|
2011-02-27 18:41:05 +03:00
|
|
|
QT_BEGIN_NAMESPACE
|
2009-11-04 18:04:11 +03:00
|
|
|
class QNetworkAccessManager;
|
2011-02-27 18:41:05 +03:00
|
|
|
QT_END_NAMESPACE
|
2007-07-22 19:48:34 +04:00
|
|
|
|
2011-01-24 20:58:57 +03:00
|
|
|
class DownloadThread : public QObject {
|
2007-07-22 19:48:34 +04:00
|
|
|
Q_OBJECT
|
|
|
|
|
2010-12-02 20:27:01 +03:00
|
|
|
public:
|
2011-01-24 20:58:57 +03:00
|
|
|
DownloadThread(QObject* parent = 0);
|
2012-10-07 18:25:17 +04:00
|
|
|
QNetworkReply* downloadUrl(const QString &url, const QList<QNetworkCookie>& cookies = QList<QNetworkCookie>());
|
|
|
|
void downloadTorrentUrl(const QString &url, const QList<QNetworkCookie>& cookies = QList<QNetworkCookie>());
|
2010-12-02 20:27:01 +03:00
|
|
|
//void setProxy(QString IP, int port, QString username, QString password);
|
2007-07-22 19:48:34 +04:00
|
|
|
|
2009-11-04 18:04:11 +03:00
|
|
|
signals:
|
2011-01-24 20:27:26 +03:00
|
|
|
void downloadFinished(const QString &url, const QString &file_path);
|
|
|
|
void downloadFailure(const QString &url, const QString &reason);
|
2014-09-16 00:35:46 +04:00
|
|
|
void magnetRedirect(const QString &url_new, const QString &url_old);
|
2007-09-29 12:00:14 +04:00
|
|
|
|
2010-12-02 20:27:01 +03:00
|
|
|
private slots:
|
|
|
|
void processDlFinished(QNetworkReply* reply);
|
|
|
|
void checkDownloadSize(qint64 bytesReceived, qint64 bytesTotal);
|
|
|
|
#ifndef QT_NO_OPENSSL
|
2011-01-24 20:27:26 +03:00
|
|
|
void ignoreSslErrors(QNetworkReply*,const QList<QSslError>&);
|
2010-12-02 20:27:01 +03:00
|
|
|
#endif
|
2007-09-29 12:00:14 +04:00
|
|
|
|
2010-12-02 20:27:01 +03:00
|
|
|
private:
|
2013-03-01 23:25:38 +04:00
|
|
|
static QByteArray gUncompress(Bytef *inData, size_t len);
|
2009-11-04 18:04:11 +03:00
|
|
|
QString errorCodeToString(QNetworkReply::NetworkError status);
|
|
|
|
void applyProxySettings();
|
2007-07-22 19:48:34 +04:00
|
|
|
|
2010-12-02 20:27:01 +03:00
|
|
|
private:
|
|
|
|
QNetworkAccessManager m_networkManager;
|
|
|
|
QHash<QString, QString> m_redirectMapping;
|
2007-09-29 12:00:14 +04:00
|
|
|
|
2006-09-30 20:02:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|