rssguard/src/services/standard/standardserviceroot.cpp

470 lines
16 KiB
C++
Raw Normal View History

// This file is part of RSS Guard.
//
2016-01-13 09:57:05 +01:00
// Copyright (C) 2011-2016 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"
#include "miscellaneous/mutex.h"
#include "core/feedsmodel.h"
2015-11-10 08:59:10 +01:00
#include "gui/messagebox.h"
#include "gui/dialogs/formmain.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 <QSqlQuery>
#include <QSqlError>
#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)),
m_actionExportFeeds(NULL), m_actionImportFeeds(NULL), m_serviceMenu(QList<QAction*>()),
2016-01-07 07:39:52 +01:00
m_feedContextMenu(QList<QAction*>()), m_actionFeedFetchMetadata(NULL) {
2015-11-17 07:41:23 +01:00
2015-11-09 09:40:26 +01:00
setTitle(qApp->system()->getUsername() + QL1S("@") + QL1S(APP_LOW_NAME));
setIcon(StandardServiceEntryPoint().icon());
setDescription(tr("This is obligatory service account for standard RSS/RDF/ATOM feeds."));
setCreationDate(QDateTime::currentDateTime());
}
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.
2015-11-17 07:41:23 +01:00
if (MessageBox::show(qApp->mainForm(), 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) {
MessageBox::show(qApp->mainForm(), QMessageBox::Critical, tr("Error when loading initial feeds"), ex.message());
}
}
}
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 {
2015-11-30 10:50:37 +01:00
return SERVICE_CODE_STD_RSS;
}
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();
}
bool StandardServiceRoot::markAsReadUnread(RootItem::ReadStatus status) {
return ServiceRoot::markAsReadUnread(status);
}
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."),
QSystemTrayIcon::Warning, qApp->mainForm(), true);
// Thus, cannot delete and quit the method.
return;
}
QScopedPointer<FormStandardFeedDetails> form_pointer(new FormStandardFeedDetails(this, qApp->mainForm()));
2016-01-03 11:19:23 +01:00
form_pointer.data()->exec(NULL, NULL, 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;
}
bool StandardServiceRoot::markFeedsReadUnread(QList<Feed*> items, ReadStatus read) {
QSqlDatabase db_handle = qApp->database()->connection(metaObject()->className(), DatabaseFactory::FromSettings);
QSqlQuery query_read_msg(db_handle);
query_read_msg.setForwardOnly(true);
2015-12-20 19:02:29 +01:00
query_read_msg.prepare(QString("UPDATE Messages SET is_read = :read "
"WHERE feed IN (%1) AND is_deleted = 0 AND is_pdeleted = 0;").arg(textualFeedIds(items).join(QSL(", "))));
query_read_msg.bindValue(QSL(":read"), read == RootItem::Read ? 1 : 0);
2015-12-21 07:06:00 +01:00
if (query_read_msg.exec()) {
// Messages are switched, now inform model about need to reload data.
QList<RootItem*> itemss;
foreach (Feed *feed, items) {
feed->updateCounts(false);
itemss.append(feed);
}
itemChanged(itemss);
requestReloadMessageList(read == RootItem::Read);
return true;
}
else {
2015-12-21 07:06:00 +01:00
return false;
}
}
bool StandardServiceRoot::cleanFeeds(QList<Feed*> items, bool clean_read_only) {
QSqlDatabase db_handle = qApp->database()->connection(metaObject()->className(), DatabaseFactory::FromSettings);
QSqlQuery query_delete_msg(db_handle);
2016-01-18 08:04:41 +01:00
int account_id = accountId();
query_delete_msg.setForwardOnly(true);
if (clean_read_only) {
2015-12-21 07:06:00 +01:00
query_delete_msg.prepare(QString("UPDATE Messages SET is_deleted = :deleted "
2016-01-18 08:04:41 +01:00
"WHERE feed IN (%1) AND is_deleted = 0 AND is_pdeleted = 0 AND is_read = 1 AND account_id = :account_id;")
.arg(textualFeedIds(items).join(QSL(", "))));
}
else {
2015-12-21 07:06:00 +01:00
query_delete_msg.prepare(QString("UPDATE Messages SET is_deleted = :deleted "
2016-01-18 08:04:41 +01:00
"WHERE feed IN (%1) AND is_deleted = 0 AND is_pdeleted = 0 AND account_id = :account_id;")
.arg(textualFeedIds(items).join(QSL(", "))));
}
query_delete_msg.bindValue(QSL(":deleted"), 1);
2016-01-18 08:04:41 +01:00
query_delete_msg.bindValue(QSL(":account_id"), account_id);
2015-12-21 07:06:00 +01:00
if (query_delete_msg.exec()) {
// Messages are cleared, now inform model about need to reload data.
QList<RootItem*> itemss;
foreach (Feed *feed, items) {
feed->updateCounts(true);
itemss.append(feed);
}
m_recycleBin->updateCounts(true);
itemss.append(m_recycleBin);
itemChanged(itemss);
requestReloadMessageList(true);
return true;
}
2015-12-21 07:06:00 +01:00
else {
2016-01-18 08:04:41 +01:00
qDebug("Cleaning of feeds failed: '%s'.", qPrintable(query_delete_msg.lastError().text()));
2015-12-21 07:06:00 +01:00
return false;
}
}
void StandardServiceRoot::loadFromDatabase(){
QSqlDatabase database = qApp->database()->connection(metaObject()->className(), DatabaseFactory::FromSettings);
Assignment categories;
Assignment feeds;
// Obtain data for categories from the database.
QSqlQuery query_categories(database);
query_categories.setForwardOnly(true);
2015-12-21 07:06:00 +01:00
query_categories.prepare(QSL("SELECT * FROM Categories WHERE account_id = :account_id;"));
query_categories.bindValue(QSL(":account_id"), accountId());
2015-12-21 07:06:00 +01:00
if (!query_categories.exec()) {
qFatal("Query for obtaining categories failed. Error message: '%s'.",
qPrintable(query_categories.lastError().text()));
}
while (query_categories.next()) {
AssignmentItem pair;
pair.first = query_categories.value(CAT_DB_PARENT_ID_INDEX).toInt();
pair.second = new StandardCategory(query_categories.record());
categories << pair;
}
// All categories are now loaded.
QSqlQuery query_feeds(database);
query_feeds.setForwardOnly(true);
2015-12-21 07:06:00 +01:00
query_feeds.prepare(QSL("SELECT * FROM Feeds WHERE account_id = :account_id;"));
query_feeds.bindValue(QSL(":account_id"), accountId());
2015-12-21 07:06:00 +01:00
if (!query_feeds.exec()) {
qFatal("Query for obtaining feeds failed. Error message: '%s'.",
qPrintable(query_feeds.lastError().text()));
}
while (query_feeds.next()) {
// Process this feed.
StandardFeed::Type type = static_cast<StandardFeed::Type>(query_feeds.value(FDS_DB_TYPE_INDEX).toInt());
switch (type) {
case StandardFeed::Atom10:
case StandardFeed::Rdf:
case StandardFeed::Rss0X:
case StandardFeed::Rss2X: {
AssignmentItem pair;
pair.first = query_feeds.value(FDS_DB_CATEGORY_INDEX).toInt();
pair.second = new StandardFeed(query_feeds.record());
qobject_cast<StandardFeed*>(pair.second)->setType(type);
feeds << pair;
break;
}
default:
break;
}
}
// 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);
m_recycleBin->updateCounts(true);
}
2015-12-18 14:09:14 +01:00
void StandardServiceRoot::checkArgumentsForFeedAdding() {
foreach (QString arg, qApp->arguments().mid(1)) {
checkArgumentForFeedAdding(arg);
}
}
void StandardServiceRoot::checkArgumentForFeedAdding(const QString &argument) {
if (argument.startsWith(QL1S("feed:"))) {
2016-01-07 07:39:52 +01:00
addNewFeed(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.
m_actionFeedFetchMetadata = new QAction(qApp->icons()->fromTheme(QSL("download-manager")), tr("Fetch metadata"), NULL);
m_feedContextMenu.append(m_actionFeedFetchMetadata);
}
2015-11-08 19:48:29 +01:00
// Make connections.
disconnect(m_actionFeedFetchMetadata, SIGNAL(triggered()), 0, 0);
connect(m_actionFeedFetchMetadata, SIGNAL(triggered()), feed, SLOT(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.
RootItem *existing_category = NULL;
foreach (RootItem *child, target_parent->childItems()) {
if (child->kind() == RootItemKind::Category && child->title() == new_category_title) {
existing_category = child;
}
}
if (existing_category != NULL) {
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) {
output_message = tr("Import successfull, but some feeds/categories were not imported due to error.");
}
else {
output_message = tr("Import was completely successfull.");
}
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."),
QSystemTrayIcon::Warning, qApp->mainForm(), true);
// Thus, cannot delete and quit the method.
return;
}
QScopedPointer<FormStandardCategoryDetails> form_pointer(new FormStandardCategoryDetails(this, qApp->mainForm()));
form_pointer.data()->exec(NULL, NULL);
2016-01-26 07:28:32 +01:00
qApp->feedUpdateLock()->unlock();
}
void StandardServiceRoot::importFeeds() {
2016-01-26 07:28:32 +01:00
QScopedPointer<FormStandardImportExport> form(new FormStandardImportExport(this, qApp->mainForm()));
form.data()->setMode(FeedsImportExportModel::Import);
form.data()->exec();
}
void StandardServiceRoot::exportFeeds() {
2016-01-26 07:28:32 +01:00
QScopedPointer<FormStandardImportExport> form(new FormStandardImportExport(this, qApp->mainForm()));
form.data()->setMode(FeedsImportExportModel::Export);
form.data()->exec();
}
2015-11-08 19:48:29 +01:00
QList<QAction*> StandardServiceRoot::addItemMenu() {
2016-01-07 07:39:52 +01:00
return QList<QAction*>();
}
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);
connect(m_actionExportFeeds, SIGNAL(triggered()), this, SLOT(exportFeeds()));
connect(m_actionImportFeeds, SIGNAL(triggered()), this, SLOT(importFeeds()));
m_serviceMenu.append(m_actionExportFeeds);
m_serviceMenu.append(m_actionImportFeeds);
}
return m_serviceMenu;
}
2015-12-07 09:42:46 +01:00
QList<QAction*> StandardServiceRoot::contextMenu() {
return serviceMenu();
}