mirror of https://github.com/KDE/kasts.git
76 lines
2.7 KiB
C++
76 lines
2.7 KiB
C++
/**
|
|
* SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
|
|
* SPDX-FileCopyrightText: 2021 Bart De Vries <bart@mogwai.be>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkReply>
|
|
#include <QObject>
|
|
#include <QUrl>
|
|
#include <Syndication/Syndication>
|
|
|
|
class Fetcher : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(int updateProgress MEMBER m_updateProgress NOTIFY updateProgressChanged)
|
|
Q_PROPERTY(int updateTotal MEMBER m_updateTotal NOTIFY updateTotalChanged)
|
|
Q_PROPERTY(bool updating MEMBER m_updating NOTIFY updatingChanged)
|
|
|
|
public:
|
|
static Fetcher &instance()
|
|
{
|
|
static Fetcher _instance;
|
|
return _instance;
|
|
}
|
|
|
|
Q_INVOKABLE void fetch(const QString &url);
|
|
Q_INVOKABLE void fetch(const QStringList &urls);
|
|
Q_INVOKABLE void fetchAll();
|
|
Q_INVOKABLE QString image(const QString &url) const;
|
|
void removeImage(const QString &url);
|
|
Q_INVOKABLE QNetworkReply *download(const QString &url, const QString &fileName) const;
|
|
QNetworkReply *get(QNetworkRequest &request) const;
|
|
QString imagePath(const QString &url) const;
|
|
QString enclosurePath(const QString &url) const;
|
|
|
|
Q_SIGNALS:
|
|
void startedFetchingFeed(const QString &url);
|
|
void feedUpdated(const QString &url);
|
|
void feedDetailsUpdated(const QString &url,
|
|
const QString &name,
|
|
const QString &image,
|
|
const QString &link,
|
|
const QString &description,
|
|
const QDateTime &lastUpdated);
|
|
void feedUpdateFinished(const QString &url);
|
|
void error(const QString &url, const QString &id, const int errorId, const QString &errorString);
|
|
void entryAdded(const QString &feedurl, const QString &id);
|
|
void downloadFinished(QString url) const;
|
|
|
|
void updateProgressChanged(int progress);
|
|
void updateTotalChanged(int nrOfFeeds);
|
|
void updatingChanged(bool state);
|
|
|
|
private Q_SLOTS:
|
|
void updateMonitor(int progress);
|
|
|
|
private:
|
|
Fetcher();
|
|
|
|
void retrieveFeed(const QString &url);
|
|
void processFeed(Syndication::FeedPtr feed, const QString &url);
|
|
bool processEntry(Syndication::ItemPtr entry, const QString &url, bool isNewFeed); // returns true if this is a new entry; false if it already existed
|
|
void processAuthor(const QString &url, const QString &entryId, const QString &authorName, const QString &authorUri, const QString &authorEmail);
|
|
void processEnclosure(Syndication::EnclosurePtr enclosure, Syndication::ItemPtr entry, const QString &feedUrl);
|
|
|
|
QNetworkAccessManager *manager;
|
|
int m_updateProgress;
|
|
int m_updateTotal;
|
|
bool m_updating;
|
|
};
|