Some common code moved.
This commit is contained in:
parent
e194a3ef08
commit
de548750e2
@ -1480,6 +1480,49 @@ Assignment DatabaseQueries::getCategories(QSqlDatabase db, int account_id, bool*
|
|||||||
return categories;
|
return categories;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool DatabaseQueries::overwriteInoreaderAccount(QSqlDatabase db, const QString& username, const QString& access_token,
|
||||||
|
const QString& refresh_token, int batch_size, int account_id) {
|
||||||
|
QSqlQuery query(db);
|
||||||
|
|
||||||
|
query.prepare("UPDATE InoreaderAccounts "
|
||||||
|
"SET username = :username, access_token = :access_token, refresh_token = :refresh_token , msg_limit = :msg_limit "
|
||||||
|
"WHERE id = :id;");
|
||||||
|
query.bindValue(QSL(":username"), username);
|
||||||
|
query.bindValue(QSL(":access_token"), access_token);
|
||||||
|
query.bindValue(QSL(":refresh_token"), refresh_token);
|
||||||
|
query.bindValue(QSL(":id"), account_id);
|
||||||
|
query.bindValue(QSL(":msg_limit"), batch_size);
|
||||||
|
|
||||||
|
if (query.exec()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
qWarning("Inoreader: Updating account failed: '%s'.", qPrintable(query.lastError().text()));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool DatabaseQueries::createInoreaderAccount(QSqlDatabase db, int id_to_assign, const QString& username,
|
||||||
|
const QString& access_token, const QString& refresh_token, int batch_size) {
|
||||||
|
QSqlQuery q(db);
|
||||||
|
|
||||||
|
q.prepare("INSERT INTO InoreaderAccounts (id, username, access_token, refresh_token, msg_limit) "
|
||||||
|
"VALUES (:id, :username, :access_token, :refresh_token, :msg_limit);");
|
||||||
|
q.bindValue(QSL(":id"), id_to_assign);
|
||||||
|
q.bindValue(QSL(":username"), username);
|
||||||
|
q.bindValue(QSL(":access_token"), access_token);
|
||||||
|
q.bindValue(QSL(":refresh_token"), refresh_token);
|
||||||
|
q.bindValue(QSL(":msg_limit"), batch_size);
|
||||||
|
|
||||||
|
if (q.exec()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
qWarning("Inoreader: Inserting of new account failed: '%s'.", qPrintable(q.lastError().text()));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Assignment DatabaseQueries::getTtRssFeeds(QSqlDatabase db, int account_id, bool* ok) {
|
Assignment DatabaseQueries::getTtRssFeeds(QSqlDatabase db, int account_id, bool* ok) {
|
||||||
Assignment feeds;
|
Assignment feeds;
|
||||||
|
|
||||||
|
@ -78,6 +78,12 @@ class DatabaseQueries {
|
|||||||
int auto_update_interval);
|
int auto_update_interval);
|
||||||
static Assignment getCategories(QSqlDatabase db, int account_id, bool* ok = nullptr);
|
static Assignment getCategories(QSqlDatabase db, int account_id, bool* ok = nullptr);
|
||||||
|
|
||||||
|
// Inoreader account.
|
||||||
|
static bool overwriteInoreaderAccount(QSqlDatabase db, const QString& username, const QString& access_token,
|
||||||
|
const QString& refresh_token, int batch_size, int account_id);
|
||||||
|
static bool createInoreaderAccount(QSqlDatabase db, int id_to_assign, const QString& username,
|
||||||
|
const QString& access_token, const QString& refresh_token, int batch_size);
|
||||||
|
|
||||||
// ownCloud account.
|
// ownCloud account.
|
||||||
static QList<ServiceRoot*> getOwnCloudAccounts(QSqlDatabase db, bool* ok = nullptr);
|
static QList<ServiceRoot*> getOwnCloudAccounts(QSqlDatabase db, bool* ok = nullptr);
|
||||||
static bool deleteOwnCloudAccount(QSqlDatabase db, int account_id);
|
static bool deleteOwnCloudAccount(QSqlDatabase db, int account_id);
|
||||||
|
@ -229,6 +229,37 @@ void ServiceRoot::requestItemRemoval(RootItem* item) {
|
|||||||
emit itemRemovalRequested(item);
|
emit itemRemovalRequested(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QMap<int, QVariant> ServiceRoot::storeCustomFeedsData() {
|
||||||
|
QMap<int, QVariant> custom_data;
|
||||||
|
|
||||||
|
foreach (const Feed* feed, getSubTreeFeeds()) {
|
||||||
|
QVariantMap feed_custom_data;
|
||||||
|
|
||||||
|
feed_custom_data.insert(QSL("auto_update_interval"), feed->autoUpdateInitialInterval());
|
||||||
|
feed_custom_data.insert(QSL("auto_update_type"), feed->autoUpdateType());
|
||||||
|
custom_data.insert(feed->customId(), feed_custom_data);
|
||||||
|
}
|
||||||
|
|
||||||
|
return custom_data;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ServiceRoot::restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds) {
|
||||||
|
QMapIterator<int, QVariant> i(data);
|
||||||
|
|
||||||
|
while (i.hasNext()) {
|
||||||
|
i.next();
|
||||||
|
const int custom_id = i.key();
|
||||||
|
|
||||||
|
if (feeds.contains(custom_id)) {
|
||||||
|
Feed* feed = feeds.value(custom_id);
|
||||||
|
QVariantMap feed_custom_data = i.value().toMap();
|
||||||
|
|
||||||
|
feed->setAutoUpdateInitialInterval(feed_custom_data.value(QSL("auto_update_interval")).toInt());
|
||||||
|
feed->setAutoUpdateType(static_cast<Feed::AutoUpdateType>(feed_custom_data.value(QSL("auto_update_type")).toInt()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ServiceRoot::syncIn() {
|
void ServiceRoot::syncIn() {
|
||||||
QIcon original_icon = icon();
|
QIcon original_icon = icon();
|
||||||
|
|
||||||
|
@ -203,8 +203,8 @@ class ServiceRoot : public RootItem {
|
|||||||
void itemRemovalRequested(RootItem* item);
|
void itemRemovalRequested(RootItem* item);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
virtual QMap<int, QVariant> storeCustomFeedsData() = 0;
|
virtual QMap<int, QVariant> storeCustomFeedsData();
|
||||||
virtual void restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds) = 0;
|
virtual void restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
RecycleBin* m_recycleBin;
|
RecycleBin* m_recycleBin;
|
||||||
|
@ -19,13 +19,15 @@
|
|||||||
#ifndef INOREADER_DEFINITIONS_H
|
#ifndef INOREADER_DEFINITIONS_H
|
||||||
#define INOREADER_DEFINITIONS_H
|
#define INOREADER_DEFINITIONS_H
|
||||||
|
|
||||||
#define INOREADER_OAUTH_PORT 12885
|
#define INOREADER_OAUTH_PORT 12885
|
||||||
#define INOREADER_OAUTH_SCOPE "read write"
|
#define INOREADER_OAUTH_SCOPE "read write"
|
||||||
#define INOREADER_OAUTH_TOKEN_URL "https://www.inoreader.com/oauth2/token"
|
#define INOREADER_OAUTH_TOKEN_URL "https://www.inoreader.com/oauth2/token"
|
||||||
#define INOREADER_OAUTH_AUTH_URL "https://www.inoreader.com/oauth2/auth"
|
#define INOREADER_OAUTH_AUTH_URL "https://www.inoreader.com/oauth2/auth"
|
||||||
#define INOREADER_OAUTH_CLI_ID "1000000604"
|
#define INOREADER_OAUTH_CLI_ID "1000000604"
|
||||||
#define INOREADER_OAUTH_CLI_KEY "gsStoZ3aAoQJCgQxoFSuXkWI7Sly87yK"
|
#define INOREADER_OAUTH_CLI_KEY "gsStoZ3aAoQJCgQxoFSuXkWI7Sly87yK"
|
||||||
#define INOREADER_REFRESH_TOKEN_KEY "refresh_token"
|
#define INOREADER_REFRESH_TOKEN_KEY "refresh_token"
|
||||||
#define INOREADER_ACCESS_TOKEN_KEY "access_token"
|
#define INOREADER_ACCESS_TOKEN_KEY "access_token"
|
||||||
|
#define INOREADER_DEFAULT_BATCH_SIZE 900
|
||||||
|
#define INOREADER_MAX_BATCH_SIZE 999
|
||||||
|
|
||||||
#endif // INOREADER_DEFINITIONS_H
|
#endif // INOREADER_DEFINITIONS_H
|
||||||
|
@ -21,23 +21,35 @@
|
|||||||
#include "gui/guiutilities.h"
|
#include "gui/guiutilities.h"
|
||||||
#include "miscellaneous/application.h"
|
#include "miscellaneous/application.h"
|
||||||
#include "miscellaneous/iconfactory.h"
|
#include "miscellaneous/iconfactory.h"
|
||||||
|
#include "services/inoreader/definitions.h"
|
||||||
#include "services/inoreader/inoreaderserviceroot.h"
|
#include "services/inoreader/inoreaderserviceroot.h"
|
||||||
|
|
||||||
FormEditInoreaderAccount::FormEditInoreaderAccount(QWidget* parent) : QDialog(parent), m_editableRoot(nullptr) {
|
FormEditInoreaderAccount::FormEditInoreaderAccount(QWidget* parent) : QDialog(parent),
|
||||||
|
m_network(new InoreaderNetworkFactory(this)), m_editableRoot(nullptr) {
|
||||||
m_ui.setupUi(this);
|
m_ui.setupUi(this);
|
||||||
GuiUtilities::applyDialogProperties(*this, qApp->icons()->miscIcon(QSL("inoreader")));
|
GuiUtilities::applyDialogProperties(*this, qApp->icons()->miscIcon(QSL("inoreader")));
|
||||||
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Information,
|
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Information,
|
||||||
tr("Not tested yet."),
|
tr("Not tested yet."),
|
||||||
tr("Not tested yet."));
|
tr("Not tested yet."));
|
||||||
m_ui.m_lblTestResult->label()->setWordWrap(true);
|
m_ui.m_lblTestResult->label()->setWordWrap(true);
|
||||||
|
m_ui.m_spinLimitMessages->setValue(INOREADER_DEFAULT_BATCH_SIZE);
|
||||||
|
m_ui.m_spinLimitMessages->setMinimum(1);
|
||||||
|
m_ui.m_spinLimitMessages->setMaximum(INOREADER_MAX_BATCH_SIZE);
|
||||||
|
|
||||||
connect(m_ui.m_btnTestSetup, &QPushButton::clicked, this, &FormEditInoreaderAccount::testSetup);
|
connect(m_ui.m_btnTestSetup, &QPushButton::clicked, this, &FormEditInoreaderAccount::testSetup);
|
||||||
connect(&m_network, &InoreaderNetworkFactory::accessGranted, [this]() {
|
connect(m_ui.m_buttonBox, &QDialogButtonBox::accepted, this, &FormEditInoreaderAccount::onClickedOk);
|
||||||
|
connect(m_ui.m_buttonBox, &QDialogButtonBox::rejected, this, &FormEditInoreaderAccount::onClickedCancel);
|
||||||
|
connect(m_network, &InoreaderNetworkFactory::accessGranted, [this]() {
|
||||||
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Ok,
|
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Ok,
|
||||||
tr("Tested successfully. You may be prompted to login once more."),
|
tr("Tested successfully. You may be prompted to login once more."),
|
||||||
tr("Your access was approved."));
|
tr("Your access was approved."));
|
||||||
});
|
});
|
||||||
connect(&m_network, &InoreaderNetworkFactory::error, [this](const QString& err) {
|
connect(m_network, &InoreaderNetworkFactory::tokensRefreshed, [this]() {
|
||||||
|
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Ok,
|
||||||
|
tr("Access tokens refreshed, it seems okay."),
|
||||||
|
tr("Your access was approved."));
|
||||||
|
});
|
||||||
|
connect(m_network, &InoreaderNetworkFactory::error, [this](const QString& err) {
|
||||||
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Error,
|
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Error,
|
||||||
tr("There is error. %1").arg(err),
|
tr("There is error. %1").arg(err),
|
||||||
tr("There was error during testing."));
|
tr("There was error during testing."));
|
||||||
@ -47,19 +59,43 @@ FormEditInoreaderAccount::FormEditInoreaderAccount(QWidget* parent) : QDialog(pa
|
|||||||
FormEditInoreaderAccount::~FormEditInoreaderAccount() {}
|
FormEditInoreaderAccount::~FormEditInoreaderAccount() {}
|
||||||
|
|
||||||
void FormEditInoreaderAccount::testSetup() {
|
void FormEditInoreaderAccount::testSetup() {
|
||||||
if (m_network.isLoggedIn()) {
|
if (m_network->isLoggedIn()) {
|
||||||
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Information,
|
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Information,
|
||||||
tr("Access granted successfully."),
|
tr("Access granted successfully."),
|
||||||
tr("Access granted successfully."));
|
tr("Access granted successfully."));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_network.logIn();
|
m_network->logIn();
|
||||||
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Progress,
|
m_ui.m_lblTestResult->setStatus(WidgetWithStatus::StatusType::Progress,
|
||||||
tr("Requested access approval. Respond to it, please."),
|
tr("Requested access approval. Respond to it, please."),
|
||||||
tr("Access approval was requested via OAuth 2.0 protocol."));
|
tr("Access approval was requested via OAuth 2.0 protocol."));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void FormEditInoreaderAccount::onClickedOk() {
|
||||||
|
bool editing_account = true;
|
||||||
|
|
||||||
|
if (m_editableRoot == nullptr) {
|
||||||
|
// We want to confirm newly created account.
|
||||||
|
// So save new account into DB, setup its properties.
|
||||||
|
m_editableRoot = new InoreaderServiceRoot();
|
||||||
|
editing_account = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
m_editableRoot->network()->setBatchSize(m_ui.m_spinLimitMessages->value());
|
||||||
|
m_editableRoot->saveAccountDataToDatabase();
|
||||||
|
accept();
|
||||||
|
|
||||||
|
if (editing_account) {
|
||||||
|
m_editableRoot->completelyRemoveAllData();
|
||||||
|
m_editableRoot->syncIn();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void FormEditInoreaderAccount::onClickedCancel() {
|
||||||
|
reject();
|
||||||
|
}
|
||||||
|
|
||||||
InoreaderServiceRoot* FormEditInoreaderAccount::execForCreate() {
|
InoreaderServiceRoot* FormEditInoreaderAccount::execForCreate() {
|
||||||
setWindowTitle(tr("Add new Inoreader account"));
|
setWindowTitle(tr("Add new Inoreader account"));
|
||||||
exec();
|
exec();
|
||||||
|
@ -42,10 +42,12 @@ class FormEditInoreaderAccount : public QDialog {
|
|||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void testSetup();
|
void testSetup();
|
||||||
|
void onClickedOk();
|
||||||
|
void onClickedCancel();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Ui::FormEditInoreaderAccount m_ui;
|
Ui::FormEditInoreaderAccount m_ui;
|
||||||
InoreaderNetworkFactory m_network;
|
InoreaderNetworkFactory* m_network;
|
||||||
InoreaderServiceRoot* m_editableRoot;
|
InoreaderServiceRoot* m_editableRoot;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -29,9 +29,6 @@
|
|||||||
<height>16777215</height>
|
<height>16777215</height>
|
||||||
</size>
|
</size>
|
||||||
</property>
|
</property>
|
||||||
<property name="suffix">
|
|
||||||
<string> = unlimited</string>
|
|
||||||
</property>
|
|
||||||
<property name="minimum">
|
<property name="minimum">
|
||||||
<number>-1</number>
|
<number>-1</number>
|
||||||
</property>
|
</property>
|
||||||
|
@ -19,6 +19,62 @@
|
|||||||
|
|
||||||
#include "services/inoreader/inoreaderserviceroot.h"
|
#include "services/inoreader/inoreaderserviceroot.h"
|
||||||
|
|
||||||
|
#include "miscellaneous/application.h"
|
||||||
|
#include "miscellaneous/databasequeries.h"
|
||||||
|
#include "services/inoreader/inoreaderentrypoint.h"
|
||||||
|
#include "services/inoreader/network/inoreadernetworkfactory.h"
|
||||||
|
|
||||||
InoreaderServiceRoot::InoreaderServiceRoot(RootItem* parent) : ServiceRoot(parent) {}
|
InoreaderServiceRoot::InoreaderServiceRoot(RootItem* parent) : ServiceRoot(parent) {}
|
||||||
|
|
||||||
InoreaderServiceRoot::~InoreaderServiceRoot() {}
|
InoreaderServiceRoot::~InoreaderServiceRoot() {}
|
||||||
|
|
||||||
|
void InoreaderServiceRoot::updateTitle() {
|
||||||
|
setTitle(m_network->username() + QSL(" (Inoreader)"));
|
||||||
|
}
|
||||||
|
|
||||||
|
void InoreaderServiceRoot::saveAccountDataToDatabase() {
|
||||||
|
QSqlDatabase database = qApp->database()->connection(metaObject()->className(), DatabaseFactory::FromSettings);
|
||||||
|
|
||||||
|
if (accountId() != NO_PARENT_CATEGORY) {
|
||||||
|
if (DatabaseQueries::overwriteInoreaderAccount(database, m_network->username(), m_network->accessToken(),
|
||||||
|
m_network->refreshToken(), m_network->batchSize(),
|
||||||
|
accountId())) {
|
||||||
|
updateTitle();
|
||||||
|
itemChanged(QList<RootItem*>() << this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
bool saved;
|
||||||
|
int id_to_assign = DatabaseQueries::createAccount(database, code(), &saved);
|
||||||
|
|
||||||
|
if (saved) {
|
||||||
|
if (DatabaseQueries::createInoreaderAccount(database, id_to_assign,
|
||||||
|
m_network->username(), m_network->accessToken(),
|
||||||
|
m_network->refreshToken(), m_network->batchSize())) {
|
||||||
|
setId(id_to_assign);
|
||||||
|
setAccountId(id_to_assign);
|
||||||
|
updateTitle();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InoreaderServiceRoot::supportsFeedAdding() const {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InoreaderServiceRoot::supportsCategoryAdding() const {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void InoreaderServiceRoot::start(bool freshly_activated) {}
|
||||||
|
|
||||||
|
void InoreaderServiceRoot::stop() {}
|
||||||
|
|
||||||
|
QString InoreaderServiceRoot::code() const {
|
||||||
|
return InoreaderEntryPoint().code();
|
||||||
|
}
|
||||||
|
|
||||||
|
void InoreaderServiceRoot::addNewFeed(const QString& url) {}
|
||||||
|
|
||||||
|
void InoreaderServiceRoot::addNewCategory() {}
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#include "services/abstract/serviceroot.h"
|
#include "services/abstract/serviceroot.h"
|
||||||
|
|
||||||
#include "services/inoreader/network/inoreadernetworkfactory.h"
|
class InoreaderNetworkFactory;
|
||||||
|
|
||||||
class InoreaderServiceRoot : public ServiceRoot {
|
class InoreaderServiceRoot : public ServiceRoot {
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
@ -31,8 +31,34 @@ class InoreaderServiceRoot : public ServiceRoot {
|
|||||||
explicit InoreaderServiceRoot(RootItem* parent = nullptr);
|
explicit InoreaderServiceRoot(RootItem* parent = nullptr);
|
||||||
virtual ~InoreaderServiceRoot();
|
virtual ~InoreaderServiceRoot();
|
||||||
|
|
||||||
|
void saveAccountDataToDatabase();
|
||||||
|
|
||||||
|
void setNetwork(InoreaderNetworkFactory* network);
|
||||||
|
InoreaderNetworkFactory* network() const;
|
||||||
|
|
||||||
|
bool supportsFeedAdding() const;
|
||||||
|
bool supportsCategoryAdding() const;
|
||||||
|
void start(bool freshly_activated);
|
||||||
|
void stop();
|
||||||
|
QString code() const;
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
void addNewFeed(const QString& url);
|
||||||
|
void addNewCategory();
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void updateTitle();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
InoreaderNetworkFactory m_network;
|
InoreaderNetworkFactory* m_network;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
inline void InoreaderServiceRoot::setNetwork(InoreaderNetworkFactory* network) {
|
||||||
|
m_network = network;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline InoreaderNetworkFactory* InoreaderServiceRoot::network() const {
|
||||||
|
return m_network;
|
||||||
|
}
|
||||||
|
|
||||||
#endif // INOREADERSERVICEROOT_H
|
#endif // INOREADERSERVICEROOT_H
|
||||||
|
@ -29,21 +29,34 @@
|
|||||||
#include <QOAuthHttpServerReplyHandler>
|
#include <QOAuthHttpServerReplyHandler>
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
|
||||||
InoreaderNetworkFactory::InoreaderNetworkFactory(QObject* parent) : QObject(parent) {
|
InoreaderNetworkFactory::InoreaderNetworkFactory(QObject* parent) : QObject(parent),
|
||||||
|
m_batchSize(INOREADER_DEFAULT_BATCH_SIZE), m_oauth2(new QOAuth2AuthorizationCodeFlow(this)) {
|
||||||
initializeOauth();
|
initializeOauth();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool InoreaderNetworkFactory::isLoggedIn() const {
|
bool InoreaderNetworkFactory::isLoggedIn() const {
|
||||||
return m_oauth2.expirationAt() > QDateTime::currentDateTime() && m_oauth2.status() == QAbstractOAuth::Status::Granted;
|
return m_oauth2->expirationAt() > QDateTime::currentDateTime() && m_oauth2->status() == QAbstractOAuth::Status::Granted;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString InoreaderNetworkFactory::username() const {
|
||||||
|
return m_username;
|
||||||
|
}
|
||||||
|
|
||||||
|
int InoreaderNetworkFactory::batchSize() const {
|
||||||
|
return m_batchSize;
|
||||||
|
}
|
||||||
|
|
||||||
|
void InoreaderNetworkFactory::setBatchSize(int batch_size) {
|
||||||
|
m_batchSize = batch_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
void InoreaderNetworkFactory::logIn() {
|
void InoreaderNetworkFactory::logIn() {
|
||||||
if (!m_oauth2.expirationAt().isNull() && m_oauth2.expirationAt() <= QDateTime::currentDateTime() && !m_refreshToken.isEmpty()) {
|
if (!m_oauth2->expirationAt().isNull() && m_oauth2->expirationAt() <= QDateTime::currentDateTime() && !m_refreshToken.isEmpty()) {
|
||||||
// We have some refresh token which expired.
|
// We have some refresh token which expired.
|
||||||
m_oauth2.refreshAccessToken();
|
m_oauth2->refreshAccessToken();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
m_oauth2.grant();
|
m_oauth2->grant();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -53,48 +66,50 @@ void InoreaderNetworkFactory::logInIfNeeded() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void InoreaderNetworkFactory::tokensReceived(QVariantMap tokens) {
|
||||||
|
qDebug() << "Inoreader: Tokens received:" << tokens;
|
||||||
|
|
||||||
|
if (tokens.contains(INOREADER_ACCESS_TOKEN_KEY)) {
|
||||||
|
m_accessToken = tokens.value(INOREADER_ACCESS_TOKEN_KEY).toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tokens.contains(INOREADER_REFRESH_TOKEN_KEY)) {
|
||||||
|
m_refreshToken = tokens.value(INOREADER_REFRESH_TOKEN_KEY).toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
emit tokensRefreshed();
|
||||||
|
}
|
||||||
|
|
||||||
void InoreaderNetworkFactory::initializeOauth() {
|
void InoreaderNetworkFactory::initializeOauth() {
|
||||||
auto oauth_reply_handler = new QOAuthHttpServerReplyHandler(INOREADER_OAUTH_PORT, this);
|
auto oauth_reply_handler = new QOAuthHttpServerReplyHandler(INOREADER_OAUTH_PORT, this);
|
||||||
|
|
||||||
// Full redirect URL is thus "http://localhost.8080/".
|
// Full redirect URL is thus "http://localhost:INOREADER_OAUTH_PORT/".
|
||||||
oauth_reply_handler->setCallbackPath(QSL(""));
|
oauth_reply_handler->setCallbackPath(QSL(""));
|
||||||
oauth_reply_handler->setCallbackText(tr("Access to your Inoreader session was granted, you "
|
oauth_reply_handler->setCallbackText(tr("Access to your Inoreader session was granted, you "
|
||||||
"can now <b>close this window and go back to RSS Guard</b>."));
|
"can now <b>close this window and go back to RSS Guard</b>."));
|
||||||
|
|
||||||
m_oauth2.setAccessTokenUrl(QUrl(INOREADER_OAUTH_TOKEN_URL));
|
m_oauth2->setAccessTokenUrl(QUrl(INOREADER_OAUTH_TOKEN_URL));
|
||||||
m_oauth2.setAuthorizationUrl(QUrl(INOREADER_OAUTH_AUTH_URL));
|
m_oauth2->setAuthorizationUrl(QUrl(INOREADER_OAUTH_AUTH_URL));
|
||||||
m_oauth2.setClientIdentifier(INOREADER_OAUTH_CLI_ID);
|
m_oauth2->setClientIdentifier(INOREADER_OAUTH_CLI_ID);
|
||||||
m_oauth2.setClientIdentifierSharedKey(INOREADER_OAUTH_CLI_KEY);
|
m_oauth2->setClientIdentifierSharedKey(INOREADER_OAUTH_CLI_KEY);
|
||||||
m_oauth2.setContentType(QAbstractOAuth::ContentType::Json);
|
m_oauth2->setContentType(QAbstractOAuth::ContentType::Json);
|
||||||
m_oauth2.setNetworkAccessManager(SilentNetworkAccessManager::instance());
|
m_oauth2->setNetworkAccessManager(SilentNetworkAccessManager::instance());
|
||||||
m_oauth2.setReplyHandler(oauth_reply_handler);
|
m_oauth2->setReplyHandler(oauth_reply_handler);
|
||||||
m_oauth2.setUserAgent(APP_USERAGENT);
|
m_oauth2->setUserAgent(APP_USERAGENT);
|
||||||
m_oauth2.setScope(INOREADER_OAUTH_SCOPE);
|
m_oauth2->setScope(INOREADER_OAUTH_SCOPE);
|
||||||
|
|
||||||
connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::statusChanged, [=](QAbstractOAuth::Status status) {
|
connect(m_oauth2, &QOAuth2AuthorizationCodeFlow::statusChanged, [=](QAbstractOAuth::Status status) {
|
||||||
qDebug("Inoreader: Status changed to '%d'.", (int)status);
|
qDebug("Inoreader: Status changed to '%d'.", (int)status);
|
||||||
});
|
});
|
||||||
connect(oauth_reply_handler, &QOAuthHttpServerReplyHandler::tokensReceived, [this](QVariantMap tokens) {
|
connect(oauth_reply_handler, &QOAuthHttpServerReplyHandler::tokensReceived, this, &InoreaderNetworkFactory::tokensReceived);
|
||||||
qDebug() << "Inoreader: Tokens received:" << tokens;
|
m_oauth2->setModifyParametersFunction([&](QAbstractOAuth::Stage stage, QVariantMap* parameters) {
|
||||||
|
|
||||||
if (tokens.contains(QSL(INOREADER_REFRESH_TOKEN_KEY))) {
|
|
||||||
m_refreshToken = tokens.value(QSL(INOREADER_REFRESH_TOKEN_KEY)).toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (tokens.contains(QSL(INOREADER_ACCESS_TOKEN_KEY))) {
|
|
||||||
m_accessToken = tokens.value(QSL(INOREADER_ACCESS_TOKEN_KEY)).toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
emit tokensRefreshed();
|
|
||||||
});
|
|
||||||
m_oauth2.setModifyParametersFunction([&](QAbstractOAuth::Stage stage, QVariantMap* parameters) {
|
|
||||||
qDebug() << "Inoreader: Set modify parameters for stage" << (int)stage << "called: \n" << parameters;
|
qDebug() << "Inoreader: Set modify parameters for stage" << (int)stage << "called: \n" << parameters;
|
||||||
});
|
});
|
||||||
connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::granted, [=]() {
|
connect(m_oauth2, &QOAuth2AuthorizationCodeFlow::granted, [=]() {
|
||||||
qDebug("Inoreader: Oauth2 granted.");
|
qDebug("Inoreader: Oauth2 granted.");
|
||||||
emit accessGranted();
|
emit accessGranted();
|
||||||
});
|
});
|
||||||
connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::error, [=](QString err, QString error_description, QUrl uri) {
|
connect(m_oauth2, &QOAuth2AuthorizationCodeFlow::error, [=](QString err, QString error_description, QUrl uri) {
|
||||||
Q_UNUSED(err)
|
Q_UNUSED(err)
|
||||||
Q_UNUSED(uri)
|
Q_UNUSED(uri)
|
||||||
|
|
||||||
@ -102,7 +117,15 @@ void InoreaderNetworkFactory::initializeOauth() {
|
|||||||
m_accessToken = m_refreshToken = QString();
|
m_accessToken = m_refreshToken = QString();
|
||||||
emit error(error_description);
|
emit error(error_description);
|
||||||
});
|
});
|
||||||
connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::authorizeWithBrowser, [](const QUrl& url) {
|
connect(m_oauth2, &QOAuth2AuthorizationCodeFlow::authorizeWithBrowser, [](const QUrl& url) {
|
||||||
qApp->web()->openUrlInExternalBrowser(url.toString());
|
qApp->web()->openUrlInExternalBrowser(url.toString());
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QString InoreaderNetworkFactory::refreshToken() const {
|
||||||
|
return m_refreshToken;
|
||||||
|
}
|
||||||
|
|
||||||
|
QString InoreaderNetworkFactory::accessToken() const {
|
||||||
|
return m_accessToken;
|
||||||
|
}
|
||||||
|
@ -31,6 +31,15 @@ class InoreaderNetworkFactory : public QObject {
|
|||||||
|
|
||||||
bool isLoggedIn() const;
|
bool isLoggedIn() const;
|
||||||
|
|
||||||
|
QString username() const;
|
||||||
|
|
||||||
|
// Gets/sets the amount of messages to obtain during single feed update.
|
||||||
|
int batchSize() const;
|
||||||
|
void setBatchSize(int batch_size);
|
||||||
|
|
||||||
|
QString accessToken() const;
|
||||||
|
QString refreshToken() const;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void logIn();
|
void logIn();
|
||||||
void logInIfNeeded();
|
void logInIfNeeded();
|
||||||
@ -40,13 +49,18 @@ class InoreaderNetworkFactory : public QObject {
|
|||||||
void tokensRefreshed();
|
void tokensRefreshed();
|
||||||
void error(QString& description);
|
void error(QString& description);
|
||||||
|
|
||||||
|
private slots:
|
||||||
|
void tokensReceived(QVariantMap tokens);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void initializeOauth();
|
void initializeOauth();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QOAuth2AuthorizationCodeFlow m_oauth2;
|
int m_batchSize;
|
||||||
|
QString m_username;
|
||||||
QString m_accessToken;
|
QString m_accessToken;
|
||||||
QString m_refreshToken;
|
QString m_refreshToken;
|
||||||
|
QOAuth2AuthorizationCodeFlow* m_oauth2;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // INOREADERNETWORKFACTORY_H
|
#endif // INOREADERNETWORKFACTORY_H
|
||||||
|
@ -238,37 +238,6 @@ void OwnCloudServiceRoot::addNewFeed(const QString& url) {
|
|||||||
|
|
||||||
void OwnCloudServiceRoot::addNewCategory() {}
|
void OwnCloudServiceRoot::addNewCategory() {}
|
||||||
|
|
||||||
QMap<int, QVariant> OwnCloudServiceRoot::storeCustomFeedsData() {
|
|
||||||
QMap<int, QVariant> custom_data;
|
|
||||||
|
|
||||||
foreach (const Feed* feed, getSubTreeFeeds()) {
|
|
||||||
QVariantMap feed_custom_data;
|
|
||||||
|
|
||||||
feed_custom_data.insert(QSL("auto_update_interval"), feed->autoUpdateInitialInterval());
|
|
||||||
feed_custom_data.insert(QSL("auto_update_type"), feed->autoUpdateType());
|
|
||||||
custom_data.insert(feed->customId(), feed_custom_data);
|
|
||||||
}
|
|
||||||
|
|
||||||
return custom_data;
|
|
||||||
}
|
|
||||||
|
|
||||||
void OwnCloudServiceRoot::restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds) {
|
|
||||||
QMapIterator<int, QVariant> i(data);
|
|
||||||
|
|
||||||
while (i.hasNext()) {
|
|
||||||
i.next();
|
|
||||||
const int custom_id = i.key();
|
|
||||||
|
|
||||||
if (feeds.contains(custom_id)) {
|
|
||||||
Feed* feed = feeds.value(custom_id);
|
|
||||||
QVariantMap feed_custom_data = i.value().toMap();
|
|
||||||
|
|
||||||
feed->setAutoUpdateInitialInterval(feed_custom_data.value(QSL("auto_update_interval")).toInt());
|
|
||||||
feed->setAutoUpdateType(static_cast<Feed::AutoUpdateType>(feed_custom_data.value(QSL("auto_update_type")).toInt()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
RootItem* OwnCloudServiceRoot::obtainNewTreeForSyncIn() const {
|
RootItem* OwnCloudServiceRoot::obtainNewTreeForSyncIn() const {
|
||||||
OwnCloudGetFeedsCategoriesResponse feed_cats_response = m_network->feedsCategories();
|
OwnCloudGetFeedsCategoriesResponse feed_cats_response = m_network->feedsCategories();
|
||||||
|
|
||||||
|
@ -60,8 +60,6 @@ class OwnCloudServiceRoot : public ServiceRoot, public CacheForServiceRoot {
|
|||||||
void addNewCategory();
|
void addNewCategory();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QMap<int, QVariant> storeCustomFeedsData();
|
|
||||||
void restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds);
|
|
||||||
RootItem* obtainNewTreeForSyncIn() const;
|
RootItem* obtainNewTreeForSyncIn() const;
|
||||||
|
|
||||||
void loadFromDatabase();
|
void loadFromDatabase();
|
||||||
|
@ -183,15 +183,6 @@ void StandardServiceRoot::checkArgumentsForFeedAdding() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QMap<int, QVariant> StandardServiceRoot::storeCustomFeedsData() {
|
|
||||||
return QMap<int, QVariant>();
|
|
||||||
}
|
|
||||||
|
|
||||||
void StandardServiceRoot::restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds) {
|
|
||||||
Q_UNUSED(feeds)
|
|
||||||
Q_UNUSED(data)
|
|
||||||
}
|
|
||||||
|
|
||||||
QString StandardServiceRoot::processFeedUrl(const QString& feed_url) {
|
QString StandardServiceRoot::processFeedUrl(const QString& feed_url) {
|
||||||
if (feed_url.startsWith(QL1S(URI_SCHEME_FEED_SHORT))) {
|
if (feed_url.startsWith(QL1S(URI_SCHEME_FEED_SHORT))) {
|
||||||
QString without_feed_prefix = feed_url.mid(5);
|
QString without_feed_prefix = feed_url.mid(5);
|
||||||
|
@ -81,9 +81,6 @@ class StandardServiceRoot : public ServiceRoot {
|
|||||||
QList<QAction*> m_serviceMenu;
|
QList<QAction*> m_serviceMenu;
|
||||||
QList<QAction*> m_feedContextMenu;
|
QList<QAction*> m_feedContextMenu;
|
||||||
QAction* m_actionFeedFetchMetadata;
|
QAction* m_actionFeedFetchMetadata;
|
||||||
|
|
||||||
QMap<int, QVariant> storeCustomFeedsData();
|
|
||||||
void restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // STANDARDSERVICEROOT_H
|
#endif // STANDARDSERVICEROOT_H
|
||||||
|
@ -294,34 +294,3 @@ RootItem* TtRssServiceRoot::obtainNewTreeForSyncIn() const {
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QMap<int, QVariant> TtRssServiceRoot::storeCustomFeedsData() {
|
|
||||||
QMap<int, QVariant> custom_data;
|
|
||||||
|
|
||||||
foreach (const Feed* feed, getSubTreeFeeds()) {
|
|
||||||
QVariantMap feed_custom_data;
|
|
||||||
|
|
||||||
feed_custom_data.insert(QSL("auto_update_interval"), feed->autoUpdateInitialInterval());
|
|
||||||
feed_custom_data.insert(QSL("auto_update_type"), feed->autoUpdateType());
|
|
||||||
custom_data.insert(feed->customId(), feed_custom_data);
|
|
||||||
}
|
|
||||||
|
|
||||||
return custom_data;
|
|
||||||
}
|
|
||||||
|
|
||||||
void TtRssServiceRoot::restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds) {
|
|
||||||
QMapIterator<int, QVariant> i(data);
|
|
||||||
|
|
||||||
while (i.hasNext()) {
|
|
||||||
i.next();
|
|
||||||
const int custom_id = i.key();
|
|
||||||
|
|
||||||
if (feeds.contains(custom_id)) {
|
|
||||||
Feed* feed = feeds.value(custom_id);
|
|
||||||
QVariantMap feed_custom_data = i.value().toMap();
|
|
||||||
|
|
||||||
feed->setAutoUpdateInitialInterval(feed_custom_data.value(QSL("auto_update_interval")).toInt());
|
|
||||||
feed->setAutoUpdateType(static_cast<Feed::AutoUpdateType>(feed_custom_data.value(QSL("auto_update_type")).toInt()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
@ -65,9 +65,6 @@ class TtRssServiceRoot : public ServiceRoot, public CacheForServiceRoot {
|
|||||||
private:
|
private:
|
||||||
RootItem* obtainNewTreeForSyncIn() const;
|
RootItem* obtainNewTreeForSyncIn() const;
|
||||||
|
|
||||||
QMap<int, QVariant> storeCustomFeedsData();
|
|
||||||
void restoreCustomFeedsData(const QMap<int, QVariant>& data, const QHash<int, Feed*>& feeds);
|
|
||||||
|
|
||||||
void loadFromDatabase();
|
void loadFromDatabase();
|
||||||
|
|
||||||
QAction* m_actionSyncIn;
|
QAction* m_actionSyncIn;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user