diff --git a/resources/binaries b/resources/binaries index d44aacc99..e9833a2e4 160000 --- a/resources/binaries +++ b/resources/binaries @@ -1 +1 @@ -Subproject commit d44aacc99fdc997648c924f0d5444566164f142e +Subproject commit e9833a2e45d8d3241f662d3a03ed19d3446386ce diff --git a/src/gui/dialogs/formaddaccount.cpp b/src/gui/dialogs/formaddaccount.cpp index 54ee2cfc2..bac7de1cc 100755 --- a/src/gui/dialogs/formaddaccount.cpp +++ b/src/gui/dialogs/formaddaccount.cpp @@ -19,6 +19,7 @@ #include "gui/dialogs/formaddaccount.h" #include "core/feedsmodel.h" +#include "gui/guiutilities.h" #include "miscellaneous/application.h" #include "miscellaneous/iconfactory.h" #include "services/standard/standardserviceentrypoint.h" @@ -31,11 +32,11 @@ FormAddAccount::FormAddAccount(const QList& entry_points, Fe m_ui->setupUi(this); // Set flags and attributes. - setWindowFlags(Qt::MSWindowsFixedSizeDialogHint | Qt::Dialog | Qt::WindowSystemMenuHint); - setWindowIcon(qApp->icons()->fromTheme(QSL("document-new"))); + GuiUtilities::applyDialogProperties(*this, qApp->icons()->fromTheme(QSL("document-new"))); + connect(m_ui->m_listEntryPoints, &QListWidget::itemDoubleClicked, this, &FormAddAccount::addSelectedAccount); connect(m_ui->m_buttonBox, &QDialogButtonBox::accepted, this, &FormAddAccount::addSelectedAccount); - connect(m_ui->m_listEntryPoints, &QListWidget::itemSelectionChanged, this, &FormAddAccount::displayActiveEntryPointDetails); + loadEntryPoints(); } @@ -56,15 +57,6 @@ void FormAddAccount::addSelectedAccount() { } } -void FormAddAccount::displayActiveEntryPointDetails() { - const ServiceEntryPoint* point = selectedEntryPoint(); - - m_ui->m_txtAuthor->setText(point->author()); - m_ui->m_txtDescription->setText(point->description()); - m_ui->m_txtName->setText(point->name()); - m_ui->m_txtVersion->setText(point->version()); -} - ServiceEntryPoint* FormAddAccount::selectedEntryPoint() const { return m_entryPoints.at(m_ui->m_listEntryPoints->currentRow()); } @@ -78,6 +70,9 @@ void FormAddAccount::loadEntryPoints() { item->setFlags(Qt::NoItemFlags); item->setToolTip(tr("This account can be added only once.")); } + else { + item->setToolTip(entry_point->description()); + } } m_ui->m_listEntryPoints->setCurrentRow(m_entryPoints.size() - 1); diff --git a/src/gui/dialogs/formaddaccount.h b/src/gui/dialogs/formaddaccount.h index 746856a9d..86df23d8b 100755 --- a/src/gui/dialogs/formaddaccount.h +++ b/src/gui/dialogs/formaddaccount.h @@ -35,7 +35,6 @@ class FormAddAccount : public QDialog { private slots: void addSelectedAccount(); - void displayActiveEntryPointDetails(); private: ServiceEntryPoint* selectedEntryPoint() const; diff --git a/src/gui/dialogs/formaddaccount.ui b/src/gui/dialogs/formaddaccount.ui index 03ae852dc..1ca5c8140 100755 --- a/src/gui/dialogs/formaddaccount.ui +++ b/src/gui/dialogs/formaddaccount.ui @@ -6,15 +6,25 @@ 0 0 - 685 + 338 300 Add new account - - + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + @@ -33,95 +43,11 @@ - - - - - 0 - 1 - - - - Details - - - - - - Name - - - - - - - true - - - - - - - Version - - - - - - - true - - - - - - - Author - - - - - - - true - - - - - - - Description - - - - - - - - 0 - 1 - - - - true - - - - - - - - - - Qt::Horizontal - - - QDialogButtonBox::Cancel|QDialogButtonBox::Ok - - - + + m_listEntryPoints + diff --git a/src/services/abstract/serviceentrypoint.h b/src/services/abstract/serviceentrypoint.h index fb088712f..c211c99bf 100755 --- a/src/services/abstract/serviceentrypoint.h +++ b/src/services/abstract/serviceentrypoint.h @@ -29,14 +29,8 @@ class FeedsModel; // TOP LEVEL class which provides basic information about the "service" class ServiceEntryPoint { public: - - // Constructors. virtual ~ServiceEntryPoint(); - ///////////////////////////////////////// - // /* Members to override. - ///////////////////////////////////////// - // Creates new service root item, which is ready to be added // into the model. This method can for example display // some kind of first-time configuration dialog inside itself @@ -65,18 +59,11 @@ class ServiceEntryPoint { // Human readable service description, for example "Services which offers TT-RSS integration.". virtual QString description() const = 0; - // Version of the service, using of semantic versioning is recommended. - virtual QString version() const = 0; - // Author of the service. virtual QString author() const = 0; // Icon of the service. virtual QIcon icon() const = 0; - - ///////////////////////////////////////// - // Members to override. */ - ///////////////////////////////////////// }; #endif // SERVICE_H diff --git a/src/services/inoreader/inoreaderentrypoint.cpp b/src/services/inoreader/inoreaderentrypoint.cpp index c422523f8..c2e15e2d8 100755 --- a/src/services/inoreader/inoreaderentrypoint.cpp +++ b/src/services/inoreader/inoreaderentrypoint.cpp @@ -23,6 +23,7 @@ #include "miscellaneous/databasequeries.h" #include "miscellaneous/iconfactory.h" #include "services/inoreader/definitions.h" +#include "services/inoreader/network/inoreadernetworkfactory.h" InoreaderEntryPoint::InoreaderEntryPoint() {} @@ -37,7 +38,7 @@ QList InoreaderEntryPoint::initializeSubtree() const { } bool InoreaderEntryPoint::isSingleInstanceService() const { - return false; + return true; } QString InoreaderEntryPoint::name() const { @@ -52,10 +53,6 @@ QString InoreaderEntryPoint::description() const { return QObject::tr("This is integration of Inoreader."); } -QString InoreaderEntryPoint::version() const { - return APP_VERSION; -} - QString InoreaderEntryPoint::author() const { return APP_AUTHOR; } diff --git a/src/services/inoreader/inoreaderentrypoint.h b/src/services/inoreader/inoreaderentrypoint.h index e0ab2738e..0d2391c30 100755 --- a/src/services/inoreader/inoreaderentrypoint.h +++ b/src/services/inoreader/inoreaderentrypoint.h @@ -33,7 +33,6 @@ class InoreaderEntryPoint : public ServiceEntryPoint { QString name() const; QString code() const; QString description() const; - QString version() const; QString author() const; QIcon icon() const; }; diff --git a/src/services/inoreader/network/inoreadernetworkfactory.cpp b/src/services/inoreader/network/inoreadernetworkfactory.cpp index f39a7c37d..1fa38780e 100755 --- a/src/services/inoreader/network/inoreadernetworkfactory.cpp +++ b/src/services/inoreader/network/inoreadernetworkfactory.cpp @@ -38,7 +38,18 @@ bool InoreaderNetworkFactory::isLoggedIn() const { } void InoreaderNetworkFactory::logIn() { - m_oauth2.grant(); + if (!m_oauth2.expirationAt().isNull() && m_oauth2.expirationAt() <= QDateTime::currentDateTime()) { + m_oauth2.refreshAccessToken(); + } + else { + m_oauth2.grant(); + } +} + +void InoreaderNetworkFactory::logInIfNeeded() { + if (!isLoggedIn()) { + logIn(); + } } void InoreaderNetworkFactory::initializeOauth() { @@ -52,63 +63,27 @@ void InoreaderNetworkFactory::initializeOauth() { m_oauth2.setClientIdentifier(INOREADER_OAUTH_CLI_ID); m_oauth2.setClientIdentifierSharedKey(INOREADER_OAUTH_CLI_KEY); m_oauth2.setContentType(QAbstractOAuth::ContentType::Json); - m_oauth2.setNetworkAccessManager(new SilentNetworkAccessManager(this)); + m_oauth2.setNetworkAccessManager(SilentNetworkAccessManager::instance()); m_oauth2.setReplyHandler(oauth_reply_handler); m_oauth2.setUserAgent(APP_USERAGENT); m_oauth2.setScope(INOREADER_OAUTH_SCOPE); - connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::statusChanged, [=](QAbstractOAuth::Status status) {}); - m_oauth2.setModifyParametersFunction([&](QAbstractOAuth::Stage stage, QVariantMap* parameters) {}); - connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::granted, [=]() { - int a = 5; - + connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::statusChanged, [=](QAbstractOAuth::Status status) { + qDebug("Inoreader: Status changed to '%d'.", (int)status); + }); + m_oauth2.setModifyParametersFunction([&](QAbstractOAuth::Stage stage, QVariantMap* parameters) { + qDebug() << "Inoreader: Set modify parameters for stage" << (int)stage << "called: \n" << parameters; + }); + connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::granted, [=]() { + qDebug("Inoreader: Oauth2 granted."); + }); + connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::error, [](const QString& error, const QString& error_description, const QUrl& uri) { + Q_UNUSED(error) + Q_UNUSED(uri) + + qCritical("Inoreader: We have error: '%s'.", qPrintable(error_description)); }); - connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::error, [](const QString& error, const QString& errorDescription, const QUrl& uri) {}); connect(&m_oauth2, &QOAuth2AuthorizationCodeFlow::authorizeWithBrowser, [](const QUrl& url) { qApp->web()->openUrlInExternalBrowser(url.toString()); }); } - -/* - QOAuth2AuthorizationCodeFlow* oauth2 = new QOAuth2AuthorizationCodeFlow("1000000604", - QUrl("https://www.inoreader.com/oauth2/auth"), - QUrl("https://www.inoreader.com/oauth2/token"), - new SilentNetworkAccessManager(), - this); - auto replyHandler = new QOAuthHttpServerReplyHandler(8080, this); - - replyHandler->setCallbackPath(""); - - oauth2->setReplyHandler(replyHandler); - oauth2->setClientIdentifierSharedKey("gsStoZ3aAoQJCgQxoFSuXkWI7Sly87yK"); - oauth2->setContentType(QAbstractOAuth::ContentType::Json); - oauth2->setScope("read write"); - - connect(oauth2, &QOAuth2AuthorizationCodeFlow::statusChanged, [=]( - QAbstractOAuth::Status status) { - if (status == QAbstractOAuth::Status::Granted) { - int a = 5; - } - }); - - oauth2->setModifyParametersFunction([&](QAbstractOAuth::Stage stage, QVariantMap* parameters) { - if (stage == QAbstractOAuth::Stage::RequestingAuthorization) { - int b = 6; - } - }); - connect(oauth2, &QOAuth2AuthorizationCodeFlow::granted, [ = ] { - int c = 45; - - auto* reply = oauth2->get(QUrl("https://www.inoreader.com/reader/api/0/subscription/list")); - - connect(reply, &QNetworkReply::finished, [=]() { - const auto json = reply->readAll(); - const auto document = QJsonDocument::fromJson(json); - }); - }); - connect(oauth2, &QOAuth2AuthorizationCodeFlow::error, [](const QString& error, const QString& errorDescription, const QUrl& uri) { - int d = 5; - }); - connect(oauth2, &QOAuth2AuthorizationCodeFlow::authorizeWithBrowser, &QDesktopServices::openUrl); - oauth2->grant(); - */ diff --git a/src/services/inoreader/network/inoreadernetworkfactory.h b/src/services/inoreader/network/inoreadernetworkfactory.h index 874ccc160..c3297abf7 100755 --- a/src/services/inoreader/network/inoreadernetworkfactory.h +++ b/src/services/inoreader/network/inoreadernetworkfactory.h @@ -33,6 +33,7 @@ class InoreaderNetworkFactory : public QObject { public slots: void logIn(); + void logInIfNeeded(); private: void initializeOauth(); diff --git a/src/services/owncloud/owncloudserviceentrypoint.cpp b/src/services/owncloud/owncloudserviceentrypoint.cpp index cc5b6b734..2eb79b239 100755 --- a/src/services/owncloud/owncloudserviceentrypoint.cpp +++ b/src/services/owncloud/owncloudserviceentrypoint.cpp @@ -59,10 +59,6 @@ QString OwnCloudServiceEntryPoint::description() const { .arg(API_VERSION); } -QString OwnCloudServiceEntryPoint::version() const { - return APP_VERSION; -} - QString OwnCloudServiceEntryPoint::author() const { return APP_AUTHOR; } diff --git a/src/services/owncloud/owncloudserviceentrypoint.h b/src/services/owncloud/owncloudserviceentrypoint.h index 99a59448d..3f483577a 100755 --- a/src/services/owncloud/owncloudserviceentrypoint.h +++ b/src/services/owncloud/owncloudserviceentrypoint.h @@ -33,7 +33,6 @@ class OwnCloudServiceEntryPoint : public ServiceEntryPoint { QString name() const; QString code() const; QString description() const; - QString version() const; QString author() const; QIcon icon() const; }; diff --git a/src/services/standard/standardserviceentrypoint.cpp b/src/services/standard/standardserviceentrypoint.cpp index 7fc047439..e74088a36 100755 --- a/src/services/standard/standardserviceentrypoint.cpp +++ b/src/services/standard/standardserviceentrypoint.cpp @@ -39,10 +39,6 @@ QString StandardServiceEntryPoint::description() const { return QObject::tr("This service offers integration with standard online RSS/RDF/ATOM feeds and podcasts."); } -QString StandardServiceEntryPoint::version() const { - return APP_VERSION; -} - QString StandardServiceEntryPoint::author() const { return APP_AUTHOR; } diff --git a/src/services/standard/standardserviceentrypoint.h b/src/services/standard/standardserviceentrypoint.h index dfcceb6ed..923c0fe4e 100755 --- a/src/services/standard/standardserviceentrypoint.h +++ b/src/services/standard/standardserviceentrypoint.h @@ -29,7 +29,6 @@ class StandardServiceEntryPoint : public ServiceEntryPoint { bool isSingleInstanceService() const; QString name() const; QString description() const; - QString version() const; QString author() const; QIcon icon() const; QString code() const; diff --git a/src/services/tt-rss/ttrssserviceentrypoint.cpp b/src/services/tt-rss/ttrssserviceentrypoint.cpp index 3b677480a..7cc7e41b6 100755 --- a/src/services/tt-rss/ttrssserviceentrypoint.cpp +++ b/src/services/tt-rss/ttrssserviceentrypoint.cpp @@ -46,10 +46,6 @@ QString TtRssServiceEntryPoint::description() const { "desktop application as possible.\n\nAt least API level %1 is required.").arg(MINIMAL_API_LEVEL); } -QString TtRssServiceEntryPoint::version() const { - return APP_VERSION; -} - QString TtRssServiceEntryPoint::author() const { return APP_AUTHOR; } diff --git a/src/services/tt-rss/ttrssserviceentrypoint.h b/src/services/tt-rss/ttrssserviceentrypoint.h index 2ec6801b3..cdc1c7f51 100755 --- a/src/services/tt-rss/ttrssserviceentrypoint.h +++ b/src/services/tt-rss/ttrssserviceentrypoint.h @@ -29,7 +29,6 @@ class TtRssServiceEntryPoint : public ServiceEntryPoint { bool isSingleInstanceService() const; QString name() const; QString description() const; - QString version() const; QString author() const; QIcon icon() const; QString code() const;