rssguard/src/services/standard/standardserviceroot.cpp

357 lines
13 KiB
C++
Raw Normal View History

// This file is part of RSS Guard.
//
2017-03-25 10:11:18 +01:00
// Copyright (C) 2011-2017 by Martin Rotter <rotter.martinos@gmail.com>
//
// RSS Guard 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 3 of the License, or
// (at your option) any later version.
//
// RSS Guard 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 RSS Guard. If not, see <http://www.gnu.org/licenses/>.
#include "services/standard/standardserviceroot.h"
#include "definitions/definitions.h"
#include "miscellaneous/application.h"
#include "miscellaneous/settings.h"
#include "miscellaneous/iconfactory.h"
2016-04-12 13:30:31 +02:00
#include "miscellaneous/databasequeries.h"
#include "miscellaneous/mutex.h"
#include "core/feedsmodel.h"
2015-11-10 08:59:10 +01:00
#include "gui/messagebox.h"
#include "exceptions/applicationexception.h"
2016-01-20 10:16:19 +01:00
#include "services/abstract/recyclebin.h"
#include "services/standard/standardserviceentrypoint.h"
#include "services/standard/standardfeed.h"
#include "services/standard/standardcategory.h"
#include "services/standard/standardfeedsimportexportmodel.h"
#include "services/standard/gui/formstandardcategorydetails.h"
#include "services/standard/gui/formstandardfeeddetails.h"
#include "services/standard/gui/formstandardimportexport.h"
#include <QStack>
2015-11-08 19:48:29 +01:00
#include <QAction>
#include <QSqlTableModel>
2015-12-18 14:09:14 +01:00
#include <QClipboard>
StandardServiceRoot::StandardServiceRoot(RootItem *parent)
2016-01-20 10:16:19 +01:00
: ServiceRoot(parent), m_recycleBin(new RecycleBin(this)),
2016-06-20 07:58:29 +02:00
m_actionExportFeeds(nullptr), m_actionImportFeeds(nullptr), m_serviceMenu(QList<QAction*>()),
m_feedContextMenu(QList<QAction*>()), m_actionFeedFetchMetadata(nullptr) {
2015-11-17 07:41:23 +01:00
2016-06-22 20:35:05 +02:00
setTitle(qApp->system()->getUsername() + QL1S("@") + QL1S(APP_LOW_NAME));
2015-11-09 09:40:26 +01:00
setIcon(StandardServiceEntryPoint().icon());
setDescription(tr("This is obligatory service account for standard RSS/RDF/ATOM feeds."));
}
StandardServiceRoot::~StandardServiceRoot() {
qDeleteAll(m_serviceMenu);
2015-11-08 19:48:29 +01:00
qDeleteAll(m_feedContextMenu);
}
2016-01-04 06:30:53 +01:00
void StandardServiceRoot::start(bool freshly_activated) {
loadFromDatabase();
2016-01-04 06:30:53 +01:00
if (freshly_activated) {
2016-01-03 09:54:42 +01:00
// In other words, if there are no feeds or categories added.
2016-08-13 14:02:06 +02:00
if (MessageBox::show(qApp->mainFormWidget(), QMessageBox::Question, QObject::tr("Load initial set of feeds"),
2016-01-04 07:35:19 +01:00
tr("This new account does not include any feeds. You can now add default set of feeds."),
2015-11-17 07:41:23 +01:00
tr("Do you want to load initial set of feeds?"),
2015-11-10 08:59:10 +01:00
QString(), QMessageBox::Yes | QMessageBox::No) == QMessageBox::Yes) {
QString target_opml_file = APP_INITIAL_FEEDS_PATH + QDir::separator() + FEED_INITIAL_OPML_PATTERN;
QString current_locale = qApp->localization()->loadedLanguage();
QString file_to_load;
if (QFile::exists(target_opml_file.arg(current_locale))) {
file_to_load = target_opml_file.arg(current_locale);
}
else if (QFile::exists(target_opml_file.arg(DEFAULT_LOCALE))) {
file_to_load = target_opml_file.arg(DEFAULT_LOCALE);
}
FeedsImportExportModel model;
QString output_msg;
try {
model.importAsOPML20(IOFactory::readTextFile(file_to_load), false);
2015-11-10 08:59:10 +01:00
model.checkAllItems();
2016-01-16 19:02:27 +01:00
if (mergeImportExportModel(&model, this, output_msg)) {
requestItemExpand(getSubTree(), true);
}
2015-11-10 08:59:10 +01:00
}
catch (ApplicationException &ex) {
2016-08-13 14:02:06 +02:00
MessageBox::show(qApp->mainFormWidget(), QMessageBox::Critical, tr("Error when loading initial feeds"), ex.message());
2015-11-10 08:59:10 +01:00
}
}
}
2015-12-18 14:09:14 +01:00
checkArgumentsForFeedAdding();
2015-11-10 08:59:10 +01:00
}
void StandardServiceRoot::stop() {
2015-11-17 07:41:23 +01:00
qDebug("Stopping StandardServiceRoot instance.");
2015-11-10 08:59:10 +01:00
}
2016-01-11 13:00:37 +01:00
QString StandardServiceRoot::code() const {
return StandardServiceEntryPoint().code();
2015-11-30 10:50:37 +01:00
}
2016-01-15 09:39:06 +01:00
bool StandardServiceRoot::canBeEdited() const {
return false;
}
2016-01-15 09:39:06 +01:00
bool StandardServiceRoot::canBeDeleted() const {
2015-11-29 20:27:52 +01:00
return true;
}
bool StandardServiceRoot::deleteViaGui() {
2015-12-07 09:42:46 +01:00
return ServiceRoot::deleteViaGui();
}
2016-01-07 07:39:52 +01:00
bool StandardServiceRoot::supportsFeedAdding() const {
return true;
}
2016-01-07 07:39:52 +01:00
bool StandardServiceRoot::supportsCategoryAdding() const {
return true;
}
void StandardServiceRoot::addNewFeed(const QString &url) {
2016-01-26 07:28:32 +01:00
if (!qApp->feedUpdateLock()->tryLock()) {
// Lock was not obtained because
// it is used probably by feed updater or application
// is quitting.
qApp->showGuiMessage(tr("Cannot add item"),
tr("Cannot add feed because another critical operation is ongoing."),
2016-08-13 14:02:06 +02:00
QSystemTrayIcon::Warning, qApp->mainFormWidget(), true);
2016-01-26 07:28:32 +01:00
// Thus, cannot delete and quit the method.
return;
}
2016-08-13 14:02:06 +02:00
QScopedPointer<FormStandardFeedDetails> form_pointer(new FormStandardFeedDetails(this, qApp->mainFormWidget()));
2016-06-20 07:58:29 +02:00
form_pointer.data()->exec(nullptr, nullptr, url);
2016-01-26 07:28:32 +01:00
qApp->feedUpdateLock()->unlock();
}
QVariant StandardServiceRoot::data(int column, int role) const {
switch (role) {
case Qt::ToolTipRole:
if (column == FDS_MODEL_TITLE_INDEX) {
2015-12-03 07:42:00 +01:00
return tr("This is service account for standard RSS/RDF/ATOM feeds.\n\nAccount ID: %1").arg(accountId());
}
else {
2015-12-03 13:03:29 +01:00
return ServiceRoot::data(column, role);
}
default:
2015-11-09 09:40:26 +01:00
return ServiceRoot::data(column, role);
}
}
2015-11-25 09:37:40 +01:00
Qt::ItemFlags StandardServiceRoot::additionalFlags() const {
return Qt::ItemIsDropEnabled;
}
2016-01-11 13:00:37 +01:00
RecycleBin *StandardServiceRoot::recycleBin() const {
return m_recycleBin;
}
void StandardServiceRoot::loadFromDatabase(){
QSqlDatabase database = qApp->database()->connection(metaObject()->className(), DatabaseFactory::FromSettings);
2016-04-12 13:30:31 +02:00
Assignment categories = DatabaseQueries::getCategories(database, accountId());
Assignment feeds = DatabaseQueries::getFeeds(database, accountId());
// All data are now obtained, lets create the hierarchy.
assembleCategories(categories);
assembleFeeds(feeds);
// As the last item, add recycle bin, which is needed.
appendChild(m_recycleBin);
2016-04-14 08:39:30 +02:00
updateCounts(true);
}
2015-12-18 14:09:14 +01:00
void StandardServiceRoot::checkArgumentsForFeedAdding() {
foreach (QString arg, qApp->arguments().mid(1)) {
checkArgumentForFeedAdding(arg);
}
}
2016-05-24 08:58:35 +02:00
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)
}
2016-02-15 06:55:52 +01:00
QString StandardServiceRoot::processFeedUrl(const QString &feed_url) {
if (feed_url.startsWith(QL1S(URI_SCHEME_FEED_SHORT))) {
QString without_feed_prefix = feed_url.mid(5);
if (without_feed_prefix.startsWith(QL1S("https:")) || without_feed_prefix.startsWith(QL1S("http:"))) {
return without_feed_prefix;
}
else {
return feed_url;
}
}
else {
return feed_url;
}
}
2015-12-18 14:09:14 +01:00
void StandardServiceRoot::checkArgumentForFeedAdding(const QString &argument) {
2016-02-15 06:55:52 +01:00
if (argument.startsWith(QL1S(URI_SCHEME_FEED_SHORT))) {
addNewFeed(processFeedUrl(argument));
2015-12-18 14:09:14 +01:00
}
}
QList<QAction*> StandardServiceRoot::getContextMenuForFeed(StandardFeed *feed) {
2015-11-08 19:48:29 +01:00
if (m_feedContextMenu.isEmpty()) {
// Initialize.
2016-06-20 07:58:29 +02:00
m_actionFeedFetchMetadata = new QAction(qApp->icons()->fromTheme(QSL("emblem-downloads")), tr("Fetch metadata"), nullptr);
2015-11-08 19:48:29 +01:00
m_feedContextMenu.append(m_actionFeedFetchMetadata);
}
2015-11-08 19:48:29 +01:00
// Make connections.
2017-03-07 08:49:55 +01:00
disconnect(m_actionFeedFetchMetadata, &QAction::triggered, 0, 0);
connect(m_actionFeedFetchMetadata, &QAction::triggered, feed, &StandardFeed::fetchMetadataForItself);
2015-11-08 19:48:29 +01:00
return m_feedContextMenu;
}
2016-01-16 19:02:27 +01:00
bool StandardServiceRoot::mergeImportExportModel(FeedsImportExportModel *model, RootItem *target_root_node, QString &output_message) {
QStack<RootItem*> original_parents; original_parents.push(target_root_node);
QStack<RootItem*> new_parents; new_parents.push(model->rootItem());
bool some_feed_category_error = false;
// Iterate all new items we would like to merge into current model.
while (!new_parents.isEmpty()) {
RootItem *target_parent = original_parents.pop();
RootItem *source_parent = new_parents.pop();
foreach (RootItem *source_item, source_parent->childItems()) {
if (!model->isItemChecked(source_item)) {
// We can skip this item, because it is not checked and should not be imported.
// NOTE: All descendants are thus skipped too.
continue;
}
if (source_item->kind() == RootItemKind::Category) {
StandardCategory *source_category = static_cast<StandardCategory*>(source_item);
StandardCategory *new_category = new StandardCategory(*source_category);
QString new_category_title = new_category->title();
// Add category to model.
new_category->clearChildren();
if (new_category->addItself(target_parent)) {
requestItemReassignment(new_category, target_parent);
// Process all children of this category.
original_parents.push(new_category);
new_parents.push(source_category);
}
else {
delete new_category;
// Add category failed, but this can mean that the same category (with same title)
// already exists. If such a category exists in current parent, then find it and
// add descendants to it.
2016-06-20 07:58:29 +02:00
RootItem *existing_category = nullptr;
foreach (RootItem *child, target_parent->childItems()) {
if (child->kind() == RootItemKind::Category && child->title() == new_category_title) {
existing_category = child;
}
}
2016-06-20 07:58:29 +02:00
if (existing_category != nullptr) {
original_parents.push(existing_category);
new_parents.push(source_category);
}
else {
some_feed_category_error = true;
}
}
}
else if (source_item->kind() == RootItemKind::Feed) {
StandardFeed *source_feed = static_cast<StandardFeed*>(source_item);
StandardFeed *new_feed = new StandardFeed(*source_feed);
// Append this feed and end this iteration.
if (new_feed->addItself(target_parent)) {
requestItemReassignment(new_feed, target_parent);
}
else {
delete new_feed;
some_feed_category_error = true;
}
}
}
}
if (some_feed_category_error) {
2016-06-27 11:17:21 +02:00
output_message = tr("Import successful, but some feeds/categories were not imported due to error.");
}
else {
2016-06-27 11:17:21 +02:00
output_message = tr("Import was completely successful.");
}
return !some_feed_category_error;
}
void StandardServiceRoot::addNewCategory() {
2016-01-26 07:28:32 +01:00
if (!qApp->feedUpdateLock()->tryLock()) {
// Lock was not obtained because
// it is used probably by feed updater or application
// is quitting.
qApp->showGuiMessage(tr("Cannot add category"),
tr("Cannot add category because another critical operation is ongoing."),
2016-08-13 14:02:06 +02:00
QSystemTrayIcon::Warning, qApp->mainFormWidget(), true);
2016-01-26 07:28:32 +01:00
// Thus, cannot delete and quit the method.
return;
}
2016-08-13 14:02:06 +02:00
QScopedPointer<FormStandardCategoryDetails> form_pointer(new FormStandardCategoryDetails(this, qApp->mainFormWidget()));
2016-06-20 07:58:29 +02:00
form_pointer.data()->exec(nullptr, nullptr);
2016-01-26 07:28:32 +01:00
qApp->feedUpdateLock()->unlock();
}
void StandardServiceRoot::importFeeds() {
2016-08-13 14:02:06 +02:00
QScopedPointer<FormStandardImportExport> form(new FormStandardImportExport(this, qApp->mainFormWidget()));
form.data()->setMode(FeedsImportExportModel::Import);
form.data()->exec();
}
void StandardServiceRoot::exportFeeds() {
2016-08-13 14:02:06 +02:00
QScopedPointer<FormStandardImportExport> form(new FormStandardImportExport(this, qApp->mainFormWidget()));
form.data()->setMode(FeedsImportExportModel::Export);
form.data()->exec();
}
QList<QAction*> StandardServiceRoot::serviceMenu() {
if (m_serviceMenu.isEmpty()) {
m_actionExportFeeds = new QAction(qApp->icons()->fromTheme("document-export"), tr("Export feeds"), this);
m_actionImportFeeds = new QAction(qApp->icons()->fromTheme("document-import"), tr("Import feeds"), this);
2017-03-07 08:49:55 +01:00
connect(m_actionExportFeeds, &QAction::triggered, this, &StandardServiceRoot::exportFeeds);
connect(m_actionImportFeeds, &QAction::triggered, this, &StandardServiceRoot::importFeeds);
m_serviceMenu.append(m_actionExportFeeds);
m_serviceMenu.append(m_actionImportFeeds);
}
return m_serviceMenu;
}