2006-09-30 16:02:39 +00:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
2007-07-14 14:31:59 +00:00
|
|
|
* Copyright (C) 2006 Christophe Dumez
|
2006-09-30 16:02:39 +00:00
|
|
|
*
|
2007-07-14 14:31:59 +00: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 16:02:39 +00: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 14:31:59 +00: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 17:00:55 +00: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 14:31:59 +00:00
|
|
|
* Contact : chris@qbittorrent.org
|
2006-09-30 16:02:39 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DOWNLOADTHREAD_H
|
|
|
|
#define DOWNLOADTHREAD_H
|
|
|
|
|
2009-11-04 15:04:11 +00:00
|
|
|
#include <QNetworkReply>
|
2012-05-20 16:03:10 +03:00
|
|
|
#include <QNetworkCookie>
|
2009-11-04 15:04:11 +00:00
|
|
|
#include <QObject>
|
2010-01-29 18:37:47 +00:00
|
|
|
#include <QHash>
|
2010-04-06 16:25:24 +00:00
|
|
|
#include <QSslError>
|
2013-03-01 23:25:38 +04:00
|
|
|
#include <zlib.h>
|
2007-11-21 22:30:33 +00:00
|
|
|
|
2011-02-27 15:41:05 +00:00
|
|
|
QT_BEGIN_NAMESPACE
|
2009-11-04 15:04:11 +00:00
|
|
|
class QNetworkAccessManager;
|
2011-02-27 15:41:05 +00:00
|
|
|
QT_END_NAMESPACE
|
2007-07-22 15:48:34 +00:00
|
|
|
|
2011-01-24 17:58:57 +00:00
|
|
|
class DownloadThread : public QObject {
|
2007-07-22 15:48:34 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
2010-12-02 17:27:01 +00:00
|
|
|
public:
|
2011-01-24 17:58:57 +00:00
|
|
|
DownloadThread(QObject* parent = 0);
|
2012-10-07 17:25:17 +03: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 17:27:01 +00:00
|
|
|
//void setProxy(QString IP, int port, QString username, QString password);
|
2007-07-22 15:48:34 +00:00
|
|
|
|
2009-11-04 15:04:11 +00:00
|
|
|
signals:
|
2011-01-24 17:27:26 +00: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 08:00:14 +00:00
|
|
|
|
2010-12-02 17:27:01 +00:00
|
|
|
private slots:
|
|
|
|
void processDlFinished(QNetworkReply* reply);
|
|
|
|
void checkDownloadSize(qint64 bytesReceived, qint64 bytesTotal);
|
|
|
|
#ifndef QT_NO_OPENSSL
|
2011-01-24 17:27:26 +00:00
|
|
|
void ignoreSslErrors(QNetworkReply*,const QList<QSslError>&);
|
2010-12-02 17:27:01 +00:00
|
|
|
#endif
|
2007-09-29 08:00:14 +00:00
|
|
|
|
2010-12-02 17:27:01 +00:00
|
|
|
private:
|
2013-03-01 23:25:38 +04:00
|
|
|
static QByteArray gUncompress(Bytef *inData, size_t len);
|
2009-11-04 15:04:11 +00:00
|
|
|
QString errorCodeToString(QNetworkReply::NetworkError status);
|
|
|
|
void applyProxySettings();
|
2007-07-22 15:48:34 +00:00
|
|
|
|
2010-12-02 17:27:01 +00:00
|
|
|
private:
|
|
|
|
QNetworkAccessManager m_networkManager;
|
|
|
|
QHash<QString, QString> m_redirectMapping;
|
2007-09-29 08:00:14 +00:00
|
|
|
|
2006-09-30 16:02:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|