// For license of this file, see /LICENSE.md. #include "services/abstract/serviceroot.h" #include "3rd-party/boolinq/boolinq.h" #include "core/feedsmodel.h" #include "core/messagesmodel.h" #include "database/databasequeries.h" #include "exceptions/applicationexception.h" #include "miscellaneous/application.h" #include "miscellaneous/iconfactory.h" #include "miscellaneous/textfactory.h" #include "services/abstract/cacheforserviceroot.h" #include "services/abstract/category.h" #include "services/abstract/feed.h" #include "services/abstract/gui/custommessagepreviewer.h" #include "services/abstract/importantnode.h" #include "services/abstract/labelsnode.h" #include "services/abstract/recyclebin.h" #include "services/abstract/unreadnode.h" #include ServiceRoot::ServiceRoot(RootItem* parent) : RootItem(parent), m_recycleBin(new RecycleBin(this)), m_importantNode(new ImportantNode(this)), m_labelsNode(new LabelsNode(this)), m_unreadNode(new UnreadNode(this)), m_accountId(NO_PARENT_CATEGORY), m_networkProxy(QNetworkProxy()) { setKind(RootItem::Kind::ServiceRoot); appendCommonNodes(); } ServiceRoot::~ServiceRoot() = default; bool ServiceRoot::deleteViaGui() { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); if (DatabaseQueries::deleteAccount(database, this)) { stop(); requestItemRemoval(this); return true; } else { return false; } } bool ServiceRoot::markAsReadUnread(RootItem::ReadStatus status) { auto* cache = dynamic_cast(this); if (cache != nullptr) { cache->addMessageStatesToCache(customIDSOfMessagesForItem(this), status); } QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); if (DatabaseQueries::markAccountReadUnread(database, accountId(), status)) { updateCounts(false); itemChanged(getSubTree()); requestReloadMessageList(status == RootItem::ReadStatus::Read); return true; } else { return false; } } QList ServiceRoot::addItemMenu() { return QList(); } RecycleBin* ServiceRoot::recycleBin() const { return m_recycleBin; } QList ServiceRoot::contextMenuFeedsList() { auto specific = serviceMenu(); auto base = RootItem::contextMenuFeedsList(); if (!specific.isEmpty()) { auto* act_sep = new QAction(this); act_sep->setSeparator(true); base.append(act_sep); base.append(specific); } return base; } QList ServiceRoot::contextMenuMessagesList(const QList& messages) { Q_UNUSED(messages) return {}; } QList ServiceRoot::serviceMenu() { if (m_serviceMenu.isEmpty()) { if (isSyncable()) { auto* act_sync_tree = new QAction(qApp->icons()->fromTheme(QSL("view-refresh")), tr("Synchronize folders && other items"), this); connect(act_sync_tree, &QAction::triggered, this, &ServiceRoot::syncIn); m_serviceMenu.append(act_sync_tree); auto* cache = toCache(); if (cache != nullptr) { auto* act_sync_cache = new QAction(qApp->icons()->fromTheme(QSL("view-refresh")), tr("Synchronize article cache"), this); connect(act_sync_cache, &QAction::triggered, this, [cache]() { cache->saveAllCachedData(false); }); m_serviceMenu.append(act_sync_cache); } } } return m_serviceMenu; } bool ServiceRoot::isSyncable() const { return false; } void ServiceRoot::start(bool freshly_activated) { Q_UNUSED(freshly_activated) } void ServiceRoot::stop() {} CustomMessagePreviewer* ServiceRoot::customMessagePreviewer() { return nullptr; } void ServiceRoot::updateCounts(bool including_total_count) { QList feeds; auto str = getSubTree(); for (RootItem* child : qAsConst(str)) { if (child->kind() == RootItem::Kind::Feed) { feeds.append(child->toFeed()); } else if (child->kind() != RootItem::Kind::Labels && child->kind() != RootItem::Kind::Category && child->kind() != RootItem::Kind::ServiceRoot) { child->updateCounts(including_total_count); } } if (feeds.isEmpty()) { return; } QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); bool ok; QMap> counts = DatabaseQueries::getMessageCountsForAccount(database, accountId(), including_total_count, &ok); if (ok) { for (Feed* feed : feeds) { if (counts.contains(feed->customId())) { feed->setCountOfUnreadMessages(counts.value(feed->customId()).first); if (including_total_count) { feed->setCountOfAllMessages(counts.value(feed->customId()).second); } } else { feed->setCountOfUnreadMessages(0); if (including_total_count) { feed->setCountOfAllMessages(0); } } } } } bool ServiceRoot::canBeDeleted() const { return true; } void ServiceRoot::completelyRemoveAllData() { // Purge old data from SQL and clean all model items. cleanAllItemsFromModel(true); removeOldAccountFromDatabase(true, true); updateCounts(true); itemChanged({ this }); requestReloadMessageList(true); } QIcon ServiceRoot::feedIconForMessage(const QString& feed_custom_id) const { QString low_id = feed_custom_id.toLower(); RootItem* found_item = getItemFromSubTree([low_id](const RootItem* it) { return it->kind() == RootItem::Kind::Feed && it->customId().toLower() == low_id; }); if (found_item != nullptr) { return found_item->icon(); } else { return QIcon(); } } void ServiceRoot::removeOldAccountFromDatabase(bool delete_messages_too, bool delete_labels_too) { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); DatabaseQueries::deleteAccountData(database, accountId(), delete_messages_too, delete_labels_too); } void ServiceRoot::cleanAllItemsFromModel(bool clean_labels_too) { auto chi = childItems(); for (RootItem* top_level_item : qAsConst(chi)) { if (top_level_item->kind() != RootItem::Kind::Bin && top_level_item->kind() != RootItem::Kind::Important && top_level_item->kind() != RootItem::Kind::Unread && top_level_item->kind() != RootItem::Kind::Labels) { requestItemRemoval(top_level_item); } } if (labelsNode() != nullptr && clean_labels_too) { auto lbl_chi = labelsNode()->childItems(); for (RootItem* lbl : qAsConst(lbl_chi)) { requestItemRemoval(lbl); } } } void ServiceRoot::appendCommonNodes() { if (recycleBin() != nullptr && !childItems().contains(recycleBin())) { appendChild(recycleBin()); } if (importantNode() != nullptr && !childItems().contains(importantNode())) { appendChild(importantNode()); } if (unreadNode() != nullptr && !childItems().contains(unreadNode())) { appendChild(unreadNode()); } if (labelsNode() != nullptr && !childItems().contains(labelsNode())) { appendChild(labelsNode()); } } bool ServiceRoot::cleanFeeds(const QList& items, bool clean_read_only) { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); if (DatabaseQueries::cleanFeeds(database, textualFeedIds(items), clean_read_only, accountId())) { getParentServiceRoot()->updateCounts(true); getParentServiceRoot()->itemChanged(getParentServiceRoot()->getSubTree()); getParentServiceRoot()->requestReloadMessageList(true); return true; } else { return false; } } void ServiceRoot::storeNewFeedTree(RootItem* root) { try { DatabaseQueries::storeAccountTree(qApp->database()->driver()->connection(metaObject()->className()), root, accountId()); } catch (const ApplicationException& ex) { qFatal("Cannot store account tree: '%s'.", qPrintable(ex.message())); } } void ServiceRoot::removeLeftOverMessages() { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); DatabaseQueries::purgeLeftoverMessages(database, accountId()); } void ServiceRoot::removeLeftOverMessageFilterAssignments() { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); DatabaseQueries::purgeLeftoverMessageFilterAssignments(database, accountId()); } void ServiceRoot::removeLeftOverMessageLabelAssignments() { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); DatabaseQueries::purgeLeftoverLabelAssignments(database, accountId()); } QList ServiceRoot::undeletedMessages() const { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); return DatabaseQueries::getUndeletedMessagesForAccount(database, accountId()); } bool ServiceRoot::supportsFeedAdding() const { return false; } bool ServiceRoot::supportsCategoryAdding() const { return false; } ServiceRoot::LabelOperation ServiceRoot::supportedLabelOperations() const { return LabelOperation::Adding | LabelOperation::Editing | LabelOperation::Deleting; } void ServiceRoot::saveAccountDataToDatabase() { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); try { DatabaseQueries::createOverwriteAccount(database, this); } catch (const ApplicationException& ex) { qFatal("Account was not saved into database: '%s'.", qPrintable(ex.message())); } } QVariantHash ServiceRoot::customDatabaseData() const { return {}; } void ServiceRoot::setCustomDatabaseData(const QVariantHash& data) { Q_UNUSED(data) } bool ServiceRoot::wantsBaggedIdsOfExistingMessages() const { return false; } void ServiceRoot::aboutToBeginFeedFetching(const QList& feeds, const QHash>& stated_messages, const QHash& tagged_messages) { Q_UNUSED(feeds) Q_UNUSED(stated_messages) Q_UNUSED(tagged_messages) } void ServiceRoot::itemChanged(const QList& items) { emit dataChanged(items); } void ServiceRoot::requestReloadMessageList(bool mark_selected_messages_read) { emit reloadMessageListRequested(mark_selected_messages_read); } void ServiceRoot::requestItemExpand(const QList& items, bool expand) { emit itemExpandRequested(items, expand); } void ServiceRoot::requestItemExpandStateSave(RootItem* subtree_root) { emit itemExpandStateSaveRequested(subtree_root); } void ServiceRoot::requestItemReassignment(RootItem* item, RootItem* new_parent) { emit itemReassignmentRequested(item, new_parent); } void ServiceRoot::requestItemRemoval(RootItem* item) { emit itemRemovalRequested(item); } void ServiceRoot::addNewFeed(RootItem* selected_item, const QString& url) { Q_UNUSED(selected_item) Q_UNUSED(url) } void ServiceRoot::addNewCategory(RootItem* selected_item) { Q_UNUSED(selected_item) } QMap ServiceRoot::storeCustomFeedsData() { QMap custom_data; auto str = getSubTreeFeeds(); for (const Feed* feed : qAsConst(str)) { QVariantMap feed_custom_data; // TODO: This could potentially call Feed::customDatabaseData() and append it // to this map and also subsequently restore. feed_custom_data.insert(QSL("auto_update_interval"), feed->autoUpdateInitialInterval()); feed_custom_data.insert(QSL("auto_update_type"), int(feed->autoUpdateType())); feed_custom_data.insert(QSL("msg_filters"), QVariant::fromValue(feed->messageFilters())); feed_custom_data.insert(QSL("is_off"), feed->isSwitchedOff()); feed_custom_data.insert(QSL("open_articles_directly"), feed->openArticlesDirectly()); custom_data.insert(feed->customId(), feed_custom_data); } return custom_data; } void ServiceRoot::restoreCustomFeedsData(const QMap& data, const QHash& feeds) { QMapIterator i(data); while (i.hasNext()) { i.next(); const QString custom_id = i.key(); if (feeds.contains(custom_id)) { Feed* feed = feeds.value(custom_id); QVariantMap feed_custom_data = i.value(); feed->setAutoUpdateInitialInterval(feed_custom_data.value(QSL("auto_update_interval")).toInt()); feed->setAutoUpdateType(static_cast(feed_custom_data.value(QSL("auto_update_type")).toInt())); feed->setMessageFilters(feed_custom_data.value(QSL("msg_filters")).value>>()); feed->setIsSwitchedOff(feed_custom_data.value(QSL("is_off")).toBool()); feed->setOpenArticlesDirectly(feed_custom_data.value(QSL("open_articles_directly")).toBool()); } } } QNetworkProxy ServiceRoot::networkProxy() const { return m_networkProxy; } void ServiceRoot::setNetworkProxy(const QNetworkProxy& network_proxy) { m_networkProxy = network_proxy; emit proxyChanged(network_proxy); } ImportantNode* ServiceRoot::importantNode() const { return m_importantNode; } LabelsNode* ServiceRoot::labelsNode() const { return m_labelsNode; } UnreadNode* ServiceRoot::unreadNode() const { return m_unreadNode; } void ServiceRoot::syncIn() { QIcon original_icon = icon(); setIcon(qApp->icons()->fromTheme(QSL("view-refresh"))); itemChanged(QList() << this); RootItem* new_tree = obtainNewTreeForSyncIn(); if (new_tree != nullptr) { auto feed_custom_data = storeCustomFeedsData(); // Remove from feeds model, then from SQL but leave messages intact. bool uses_remote_labels = (supportedLabelOperations() & LabelOperation::Synchronised) == LabelOperation::Synchronised; // Remove stuff. cleanAllItemsFromModel(uses_remote_labels); removeOldAccountFromDatabase(false, uses_remote_labels); // Restore some local settings to feeds etc. restoreCustomFeedsData(feed_custom_data, new_tree->getHashedSubTreeFeeds()); // Model is clean, now store new tree into DB and // set primary IDs of the items. storeNewFeedTree(new_tree); // We have new feed, some feeds were maybe removed, // so remove left over messages and filter assignments. removeLeftOverMessages(); removeLeftOverMessageFilterAssignments(); removeLeftOverMessageLabelAssignments(); auto chi = new_tree->childItems(); for (RootItem* top_level_item : qAsConst(chi)) { if (top_level_item->kind() != Kind::Labels) { top_level_item->setParent(nullptr); requestItemReassignment(top_level_item, this); } else { // It seems that some labels got synced-in. if (labelsNode() != nullptr) { auto lbl_chi = top_level_item->childItems(); for (RootItem* new_lbl : qAsConst(lbl_chi)) { new_lbl->setParent(nullptr); requestItemReassignment(new_lbl, labelsNode()); } } } } new_tree->clearChildren(); new_tree->deleteLater(); updateCounts(true); requestReloadMessageList(true); } setIcon(original_icon); itemChanged(getSubTree()); requestItemExpand(getSubTree(), true); } void ServiceRoot::performInitialAssembly(const Assignment& categories, const Assignment& feeds, const QList& labels) { assembleCategories(categories); assembleFeeds(feeds); labelsNode()->loadLabels(labels); updateCounts(true); } RootItem* ServiceRoot::obtainNewTreeForSyncIn() const { return nullptr; } QStringList ServiceRoot::customIDSOfMessagesForItem(RootItem* item) { if (item->getParentServiceRoot() != this) { // Not item from this account. return QStringList(); } else { QStringList list; switch (item->kind()) { case RootItem::Kind::Labels: case RootItem::Kind::Category: { auto chi = item->childItems(); for (RootItem* child : qAsConst(chi)) { list.append(customIDSOfMessagesForItem(child)); } return list; } case RootItem::Kind::Label: { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); list = DatabaseQueries::customIdsOfMessagesFromLabel(database, item->toLabel()); break; } case RootItem::Kind::ServiceRoot: { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); list = DatabaseQueries::customIdsOfMessagesFromAccount(database, accountId()); break; } case RootItem::Kind::Bin: { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); list = DatabaseQueries::customIdsOfMessagesFromBin(database, accountId()); break; } case RootItem::Kind::Feed: { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); list = DatabaseQueries::customIdsOfMessagesFromFeed(database, item->customId(), accountId()); break; } case RootItem::Kind::Important: { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); list = DatabaseQueries::customIdsOfImportantMessages(database, accountId()); break; } case RootItem::Kind::Unread: { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); list = DatabaseQueries::customIdsOfUnreadMessages(database, accountId()); break; } default: break; } qDebug() << "Custom IDs of messages for some operation are:" << list; return list; } } bool ServiceRoot::markFeedsReadUnread(const QList& items, RootItem::ReadStatus read) { QSqlDatabase database = qApp->database()->driver()->connection(metaObject()->className()); if (DatabaseQueries::markFeedsReadUnread(database, textualFeedIds(items), accountId(), read)) { getParentServiceRoot()->updateCounts(false); getParentServiceRoot()->itemChanged(getParentServiceRoot()->getSubTree()); getParentServiceRoot()->requestReloadMessageList(read == RootItem::ReadStatus::Read); return true; } else { return false; } } QStringList ServiceRoot::textualFeedUrls(const QList& feeds) const { QStringList stringy_urls; stringy_urls.reserve(feeds.size()); for (const Feed* feed : feeds) { stringy_urls.append(!feed->source().isEmpty() ? feed->source() : QSL("no-url")); } return stringy_urls; } QStringList ServiceRoot::textualFeedIds(const QList& feeds) const { QStringList stringy_ids; stringy_ids.reserve(feeds.size()); for (const Feed* feed : feeds) { stringy_ids.append(QSL("'%1'").arg(feed->customId())); } return stringy_ids; } QStringList ServiceRoot::customIDsOfMessages(const QList& changes) { QStringList list; list.reserve(changes.size()); for (const auto& change : changes) { list.append(change.first.m_customId); } return list; } QStringList ServiceRoot::customIDsOfMessages(const QList& messages) { QStringList list; list.reserve(messages.size()); for (const Message& message : messages) { list.append(message.m_customId); } return list; } int ServiceRoot::accountId() const { return m_accountId; } void ServiceRoot::setAccountId(int account_id) { m_accountId = account_id; auto* cache = dynamic_cast(this); if (cache != nullptr) { cache->setUniqueId(account_id); } } bool ServiceRoot::loadMessagesForItem(RootItem* item, MessagesModel* model) { if (item->kind() == RootItem::Kind::Bin) { model->setFilter(QSL("Messages.is_deleted = 1 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1") .arg(QString::number(accountId()))); } else if (item->kind() == RootItem::Kind::Important) { model->setFilter(QSL("Messages.is_important = 1 AND Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1") .arg(QString::number(accountId()))); } else if (item->kind() == RootItem::Kind::Unread) { model->setFilter(QSL("Messages.is_read = 0 AND Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1") .arg(QString::number(accountId()))); } else if (item->kind() == RootItem::Kind::Label) { // Show messages with particular label. model->setFilter(QSL("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1 AND " "(SELECT COUNT(*) FROM LabelsInMessages WHERE account_id = %1 AND message = Messages.custom_id AND label = '%2') > 0") .arg(QString::number(accountId()), item->customId())); } else if (item->kind() == RootItem::Kind::Labels) { // Show messages with any label. model->setFilter(QSL("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1 AND " "(SELECT COUNT(*) FROM LabelsInMessages WHERE account_id = %1 AND message = Messages.custom_id) > 0") .arg(QString::number(accountId()))); } else if (item->kind() == RootItem::Kind::ServiceRoot) { model->setFilter( QSL("Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %1").arg( QString::number(accountId()))); qDebugNN << "Displaying messages from account:" << QUOTE_W_SPACE_DOT(accountId()); } else { QList children = item->getSubTreeFeeds(); QString filter_clause = textualFeedIds(children).join(QSL(", ")); if (filter_clause.isEmpty()) { filter_clause = QSL("null"); } model->setFilter( QSL("Feeds.custom_id IN (%1) AND Messages.is_deleted = 0 AND Messages.is_pdeleted = 0 AND Messages.account_id = %2").arg( filter_clause, QString:: number(accountId()))); QString urls = textualFeedUrls(children).join(QSL(", ")); qDebugNN << "Displaying messages from feeds IDs:" << QUOTE_W_SPACE(filter_clause) << "and URLs:" << QUOTE_W_SPACE_DOT(urls); } return true; } bool ServiceRoot::onBeforeSetMessagesRead(RootItem* selected_item, const QList& messages, RootItem::ReadStatus read) { Q_UNUSED(selected_item) auto cache = dynamic_cast(this); if (cache != nullptr) { cache->addMessageStatesToCache(customIDsOfMessages(messages), read); } return true; } bool ServiceRoot::onAfterSetMessagesRead(RootItem* selected_item, const QList& messages, RootItem::ReadStatus read) { Q_UNUSED(selected_item) Q_UNUSED(messages) Q_UNUSED(read) updateCounts(true); itemChanged(getSubTree()); return true; } bool ServiceRoot::onBeforeSwitchMessageImportance(RootItem* selected_item, const QList& changes) { Q_UNUSED(selected_item) auto cache = dynamic_cast(this); if (cache != nullptr) { // Now, we need to separate the changes because of Nextcloud API limitations. QList mark_starred_msgs; QList mark_unstarred_msgs; for (const ImportanceChange& pair : changes) { if (pair.second == RootItem::Importance::Important) { mark_starred_msgs.append(pair.first); } else { mark_unstarred_msgs.append(pair.first); } } if (!mark_starred_msgs.isEmpty()) { cache->addMessageStatesToCache(mark_starred_msgs, RootItem::Importance::Important); } if (!mark_unstarred_msgs.isEmpty()) { cache->addMessageStatesToCache(mark_unstarred_msgs, RootItem::Importance::NotImportant); } } return true; } bool ServiceRoot::onAfterSwitchMessageImportance(RootItem* selected_item, const QList& changes) { Q_UNUSED(selected_item) Q_UNUSED(changes) updateCounts(true); itemChanged(getSubTree()); return true; } bool ServiceRoot::onBeforeMessagesDelete(RootItem* selected_item, const QList& messages) { Q_UNUSED(selected_item) Q_UNUSED(messages) return true; } bool ServiceRoot::onAfterMessagesDelete(RootItem* selected_item, const QList& messages) { Q_UNUSED(selected_item) Q_UNUSED(messages) updateCounts(true); itemChanged(getSubTree()); return true; } bool ServiceRoot::onBeforeLabelMessageAssignmentChanged(const QList& labels, const QList& messages, bool assign) { auto cache = dynamic_cast(this); if (cache != nullptr) { boolinq::from(labels).for_each([cache, messages, assign](Label* lbl) { cache->addLabelsAssignmentsToCache(messages, lbl, assign); }); } return true; } bool ServiceRoot::onAfterLabelMessageAssignmentChanged(const QList& labels, const QList& messages, bool assign) { Q_UNUSED(messages) Q_UNUSED(assign) boolinq::from(labels).for_each([](Label* lbl) { lbl->updateCounts(true); }); auto list = boolinq::from(labels).select([](Label* lbl) { return static_cast(lbl); }).toStdList(); getParentServiceRoot()->itemChanged(FROM_STD_LIST(QList, list)); return true; } bool ServiceRoot::onBeforeMessagesRestoredFromBin(RootItem* selected_item, const QList& messages) { Q_UNUSED(selected_item) Q_UNUSED(messages) return true; } bool ServiceRoot::onAfterMessagesRestoredFromBin(RootItem* selected_item, const QList& messages) { Q_UNUSED(selected_item) Q_UNUSED(messages) updateCounts(true); itemChanged(getSubTree()); return true; } CacheForServiceRoot* ServiceRoot::toCache() const { return dynamic_cast(const_cast(this)); } void ServiceRoot::assembleFeeds(const Assignment& feeds) { QHash categories = getHashedSubTreeCategories(); for (const AssignmentItem& feed : feeds) { if (feed.first == NO_PARENT_CATEGORY) { // This is top-level feed, add it to the root item. appendChild(feed.second); } else if (categories.contains(feed.first)) { // This feed belongs to this category. categories.value(feed.first)->appendChild(feed.second); } else { qWarningNN << LOGSEC_CORE << "Feed" << QUOTE_W_SPACE(feed.second->title()) << "is loose, skipping it."; } } } void ServiceRoot::assembleCategories(const Assignment& categories) { Assignment editable_categories = categories; QHash assignments; assignments.insert(NO_PARENT_CATEGORY, this); // Add top-level categories. while (!editable_categories.isEmpty()) { for (int i = 0; i < editable_categories.size(); i++) { if (assignments.contains(editable_categories.at(i).first)) { // Parent category of this category is already added. assignments.value(editable_categories.at(i).first)->appendChild(editable_categories.at(i).second); // Now, added category can be parent for another categories, add it. assignments.insert(editable_categories.at(i).second->id(), editable_categories.at(i).second); // Remove the category from the list, because it was // added to the final collection. editable_categories.removeAt(i); i--; } } } } ServiceRoot::LabelOperation operator|(ServiceRoot::LabelOperation lhs, ServiceRoot::LabelOperation rhs) { return static_cast(static_cast(lhs) | static_cast(rhs)); } ServiceRoot::LabelOperation operator&(ServiceRoot::LabelOperation lhs, ServiceRoot::LabelOperation rhs) { return static_cast(static_cast(lhs) & static_cast(rhs)); } QPair ServiceRoot::updateMessages(QList& messages, Feed* feed, bool force_update) { QPair updated_messages = { 0, 0 }; if (messages.isEmpty()) { qDebugNN << "No messages to be updated/added in DB for feed" << QUOTE_W_SPACE_DOT(feed->customId()); return updated_messages; } QList items_to_update; bool is_main_thread = QThread::currentThread() == qApp->thread(); qDebugNN << LOGSEC_CORE << "Updating messages in DB. Main thread:" << QUOTE_W_SPACE_DOT(is_main_thread); bool ok = false; QSqlDatabase database = is_main_thread ? qApp->database()->driver()->connection(metaObject()->className()) : qApp->database()->driver()->connection(QSL("feed_upd")); updated_messages = DatabaseQueries::updateMessages(database, messages, feed, force_update, &ok); if (updated_messages.first > 0 || updated_messages.second > 0) { // Something was added or updated in the DB, update numbers. feed->updateCounts(true); if (recycleBin() != nullptr) { recycleBin()->updateCounts(true); items_to_update.append(recycleBin()); } if (importantNode() != nullptr) { importantNode()->updateCounts(true); items_to_update.append(importantNode()); } if (unreadNode() != nullptr) { unreadNode()->updateCounts(true); items_to_update.append(unreadNode()); } if (labelsNode() != nullptr) { labelsNode()->updateCounts(true); items_to_update.append(labelsNode()); } } // Some messages were really added to DB, reload feed in model. items_to_update.append(feed); getParentServiceRoot()->itemChanged(items_to_update); return updated_messages; }