2017-03-07 16:10:42 +03:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
|
|
* Copyright (C) 2017 Vladimir Golovnev <glassez@yandex.ru>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-11-23 10:25:43 +03:00
|
|
|
#include <stdexcept>
|
|
|
|
|
2017-03-07 16:10:42 +03:00
|
|
|
#include <QBasicTimer>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QList>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QPointer>
|
2018-01-27 16:40:00 +03:00
|
|
|
#include <QRegularExpression>
|
2017-03-07 16:10:42 +03:00
|
|
|
#include <QSharedPointer>
|
|
|
|
|
|
|
|
class QThread;
|
|
|
|
class QTimer;
|
2019-06-04 11:11:42 +03:00
|
|
|
|
2017-03-07 16:10:42 +03:00
|
|
|
class Application;
|
|
|
|
class AsyncFileStorage;
|
|
|
|
struct ProcessingJob;
|
|
|
|
|
|
|
|
namespace RSS
|
|
|
|
{
|
|
|
|
class Article;
|
|
|
|
class Feed;
|
|
|
|
class Item;
|
|
|
|
|
|
|
|
class AutoDownloadRule;
|
|
|
|
|
2017-11-23 10:25:43 +03:00
|
|
|
class ParsingError : public std::runtime_error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ParsingError(const QString &message);
|
|
|
|
QString message() const;
|
|
|
|
};
|
|
|
|
|
2018-04-14 22:53:45 +03:00
|
|
|
class AutoDownloader final : public QObject
|
2017-03-07 16:10:42 +03:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_DISABLE_COPY(AutoDownloader)
|
|
|
|
|
|
|
|
friend class ::Application;
|
|
|
|
|
|
|
|
AutoDownloader();
|
|
|
|
~AutoDownloader() override;
|
|
|
|
|
|
|
|
public:
|
2017-11-23 10:25:43 +03:00
|
|
|
enum class RulesFileFormat
|
|
|
|
{
|
|
|
|
Legacy,
|
|
|
|
JSON
|
|
|
|
};
|
|
|
|
|
2017-03-07 16:10:42 +03:00
|
|
|
static AutoDownloader *instance();
|
|
|
|
|
|
|
|
bool isProcessingEnabled() const;
|
|
|
|
void setProcessingEnabled(bool enabled);
|
|
|
|
|
2018-01-27 16:40:00 +03:00
|
|
|
QStringList smartEpisodeFilters() const;
|
|
|
|
void setSmartEpisodeFilters(const QStringList &filters);
|
|
|
|
QRegularExpression smartEpisodeRegex() const;
|
|
|
|
|
2018-09-23 22:31:01 +03:00
|
|
|
bool downloadRepacks() const;
|
|
|
|
void setDownloadRepacks(bool downloadRepacks);
|
|
|
|
|
2017-03-07 16:10:42 +03:00
|
|
|
bool hasRule(const QString &ruleName) const;
|
|
|
|
AutoDownloadRule ruleByName(const QString &ruleName) const;
|
|
|
|
QList<AutoDownloadRule> rules() const;
|
|
|
|
|
|
|
|
void insertRule(const AutoDownloadRule &rule);
|
|
|
|
bool renameRule(const QString &ruleName, const QString &newRuleName);
|
|
|
|
void removeRule(const QString &ruleName);
|
|
|
|
|
2017-11-23 10:25:43 +03:00
|
|
|
QByteArray exportRules(RulesFileFormat format = RulesFileFormat::JSON) const;
|
|
|
|
void importRules(const QByteArray &data, RulesFileFormat format = RulesFileFormat::JSON);
|
2017-11-22 20:25:12 +03:00
|
|
|
|
2017-03-07 16:10:42 +03:00
|
|
|
signals:
|
|
|
|
void processingStateChanged(bool enabled);
|
|
|
|
void ruleAdded(const QString &ruleName);
|
|
|
|
void ruleChanged(const QString &ruleName);
|
|
|
|
void ruleRenamed(const QString &ruleName, const QString &oldRuleName);
|
|
|
|
void ruleAboutToBeRemoved(const QString &ruleName);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void process();
|
|
|
|
void handleTorrentDownloadFinished(const QString &url);
|
|
|
|
void handleTorrentDownloadFailed(const QString &url);
|
2019-02-22 05:24:22 +03:00
|
|
|
void handleNewArticle(const Article *article);
|
2017-03-07 16:10:42 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
void timerEvent(QTimerEvent *event) override;
|
|
|
|
void setRule_impl(const AutoDownloadRule &rule);
|
|
|
|
void resetProcessingQueue();
|
|
|
|
void startProcessing();
|
2019-02-22 05:24:22 +03:00
|
|
|
void addJobForArticle(const Article *article);
|
2017-03-07 16:10:42 +03:00
|
|
|
void processJob(const QSharedPointer<ProcessingJob> &job);
|
|
|
|
void load();
|
|
|
|
void loadRules(const QByteArray &data);
|
|
|
|
void loadRulesLegacy();
|
|
|
|
void store();
|
|
|
|
void storeDeferred();
|
2017-11-23 10:25:43 +03:00
|
|
|
QByteArray exportRulesToJSONFormat() const;
|
|
|
|
void importRulesFromJSONFormat(const QByteArray &data);
|
|
|
|
QByteArray exportRulesToLegacyFormat() const;
|
|
|
|
void importRulesFromLegacyFormat(const QByteArray &data);
|
2017-03-07 16:10:42 +03:00
|
|
|
|
|
|
|
static QPointer<AutoDownloader> m_instance;
|
|
|
|
|
|
|
|
bool m_processingEnabled;
|
|
|
|
QTimer *m_processingTimer;
|
|
|
|
QThread *m_ioThread;
|
|
|
|
AsyncFileStorage *m_fileStorage;
|
|
|
|
QHash<QString, AutoDownloadRule> m_rules;
|
|
|
|
QList<QSharedPointer<ProcessingJob>> m_processingQueue;
|
|
|
|
QHash<QString, QSharedPointer<ProcessingJob>> m_waitingJobs;
|
|
|
|
bool m_dirty = false;
|
|
|
|
QBasicTimer m_savingTimer;
|
2018-01-27 16:40:00 +03:00
|
|
|
QRegularExpression m_smartEpisodeRegex;
|
2017-03-07 16:10:42 +03:00
|
|
|
};
|
|
|
|
}
|