/* * Bittorrent Client using Qt and libtorrent. * Copyright (C) 2015-2025 Vladimir Golovnev * Copyright (C) 2024 Jonathan Ketchker * Copyright (C) 2010 Christophe Dumez * Copyright (C) 2010 Arnaud Demaiziere * * 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 #include #include #include #include #include #include #include #include "base/path.h" #include "rss_item.h" class AsyncFileStorage; namespace Net { class DownloadHandler; struct DownloadResult; } namespace RSS { class Article; class Session; namespace Private { class FeedSerializer; class Parser; struct ParsingResult; } class Feed final : public Item { Q_OBJECT Q_DISABLE_COPY_MOVE(Feed) friend class Session; Feed(Session *session, const QUuid &uid, const QString &url, const QString &path, std::chrono::seconds refreshInterval); ~Feed() override; public: QList
articles() const override; int unreadCount() const override; void markAsRead() override; void refresh() override; void updateFetchDelay() override; QUuid uid() const; QString url() const; QString title() const; QString lastBuildDate() const; bool hasError() const; bool isLoading() const; Article *articleByGUID(const QString &guid) const; Path iconPath() const; std::chrono::seconds refreshInterval() const; void setRefreshInterval(std::chrono::seconds refreshInterval); QJsonValue toJsonValue(bool withData = false) const override; signals: void iconLoaded(Feed *feed = nullptr); void titleChanged(Feed *feed = nullptr); void stateChanged(Feed *feed = nullptr); void urlChanged(const QString &oldURL); void refreshIntervalChanged(std::chrono::seconds oldRefreshInterval); private slots: void handleSessionProcessingEnabledChanged(bool enabled); void handleMaxArticlesPerFeedChanged(int n); void handleIconDownloadFinished(const Net::DownloadResult &result); void handleDownloadFinished(const Net::DownloadResult &result); void handleParsingFinished(const Private::ParsingResult &result); void handleArticleRead(Article *article); void handleArticleLoadFinished(QList articles); private: void timerEvent(QTimerEvent *event) override; void cleanup() override; void load(); void store(); void storeDeferred(); bool addArticle(const QVariantHash &articleData); void removeOldestArticle(); void increaseUnreadCount(); void decreaseUnreadCount(); void downloadIcon(); int updateArticles(const QList &loadedArticles); void setURL(const QString &url); Session *m_session = nullptr; Private::Parser *m_parser = nullptr; Private::FeedSerializer *m_serializer = nullptr; const QUuid m_uid; QString m_url; std::chrono::seconds m_refreshInterval; QString m_title; QString m_lastBuildDate; bool m_hasError = false; bool m_isLoading = false; bool m_isInitialized = false; bool m_pendingRefresh = false; QHash m_articles; QList
m_articlesByDate; int m_unreadCount = 0; Path m_iconPath; Path m_dataFileName; QBasicTimer m_savingTimer; bool m_dirty = false; Net::DownloadHandler *m_downloadHandler = nullptr; }; }