kasts/src/fetcher.cpp

91 lines
4.1 KiB
C++
Raw Normal View History

2020-02-28 23:25:08 +01:00
/**
* Copyright 2020 Tobias Fella <fella@posteo.de>
*
* 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) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* 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, see <https://www.gnu.org/licenses/>.
*/
#include <QNetworkAccessManager>
#include <QNetworkReply>
2020-02-29 15:34:12 +01:00
#include <Syndication/Syndication>
2020-02-28 23:25:08 +01:00
#include "fetcher.h"
2020-03-16 22:37:04 +01:00
#include "database.h"
2020-02-28 23:25:08 +01:00
Fetcher::Fetcher() {
}
void Fetcher::fetch(QUrl url)
{
2020-04-18 21:07:49 +02:00
qDebug() << "Starting to fetch" << url.toString();
2020-02-28 23:25:08 +01:00
QNetworkAccessManager *manager = new QNetworkAccessManager(this);
manager->setRedirectPolicy(QNetworkRequest::NoLessSafeRedirectPolicy);
manager->setStrictTransportSecurityEnabled(true);
manager->enableStrictTransportSecurityStore(true);
2020-03-31 23:52:03 +02:00
2020-02-28 23:25:08 +01:00
QNetworkRequest request = QNetworkRequest(QUrl(url));
QNetworkReply *reply = manager->get(request);
connect(reply, &QNetworkReply::finished, this, [this, url, reply]() {
QByteArray data = reply->readAll();
Syndication::DocumentSource *document = new Syndication::DocumentSource(data, url.toString());
Syndication::FeedPtr feed = Syndication::parserCollection()->parse(*document, QStringLiteral("Atom"));
2020-03-31 23:52:03 +02:00
if(feed.isNull()) return;
QSqlQuery query;
2020-02-28 23:25:08 +01:00
2020-04-18 21:07:49 +02:00
query.prepare(QStringLiteral("UPDATE Feeds SET name=:name, image=:image WHERE url=:url;"));
query.bindValue(QStringLiteral(":name"), feed->title());
query.bindValue(QStringLiteral(":url"), url.toString());
query.bindValue(QStringLiteral(":image"), feed->image()->url());
Database::instance().execute(query);
qDebug() << "Updated feed title:" << feed->title();
2020-02-28 23:25:08 +01:00
for (const auto &entry : feed->items()) {
2020-04-18 21:07:49 +02:00
qDebug() << "Processing" << entry->title();
query.prepare(QStringLiteral("SELECT COUNT (id) FROM Entries WHERE id=:id;"));
query.bindValue(QStringLiteral(":id"), entry->id());
Database::instance().execute(query);
query.next();
if(query.value(0).toInt() != 0) continue;
query.prepare(QStringLiteral("INSERT INTO Entries VALUES (:feed, :id, :title, :content, :created, :updated);"));
2020-02-28 23:25:08 +01:00
query.bindValue(QStringLiteral(":feed"), url.toString());
query.bindValue(QStringLiteral(":id"), entry->id());
query.bindValue(QStringLiteral(":title"), entry->title());
query.bindValue(QStringLiteral(":created"), static_cast<int>(entry->datePublished()));
query.bindValue(QStringLiteral(":updated"), static_cast<int>(entry->dateUpdated()));
2020-03-04 14:00:27 +01:00
if(!entry->content().isEmpty())
query.bindValue(QStringLiteral(":content"), entry->content());
else
query.bindValue(QStringLiteral(":content"), entry->description());
2020-03-16 22:37:04 +01:00
Database::instance().execute(query);
2020-02-28 23:25:08 +01:00
for (const auto &author : entry->authors()) {
2020-04-20 02:06:21 +02:00
query.prepare(QStringLiteral("INSERT INTO Authors VALUES(:feed, :id, :name, :uri, :email);"));
query.bindValue(QStringLiteral(":feed"), url.toString());
2020-02-28 23:25:08 +01:00
query.bindValue(QStringLiteral(":id"), entry->id());
query.bindValue(QStringLiteral(":name"), author->name());
query.bindValue(QStringLiteral(":uri"), author->uri());
query.bindValue(QStringLiteral(":email"), author->email());
2020-03-16 22:37:04 +01:00
Database::instance().execute(query);
2020-02-28 23:25:08 +01:00
}
}
2020-04-18 21:07:49 +02:00
emit updated();
2020-02-29 00:51:26 +01:00
delete reply;
2020-02-28 23:25:08 +01:00
});
}