/* SPDX-FileCopyrightText: 2012 Aurélien Gâteau SPDX-FileCopyrightText: 2014-2015 Eike Hein SPDX-License-Identifier: GPL-2.0-or-later */ #include "runnermatchesmodel.h" #include "actionlist.h" #include "runnermodel.h" #include #include #include #include #include #include #include RunnerMatchesModel::RunnerMatchesModel(const QString &runnerId, const QString &name, Plasma::RunnerManager *manager, QObject *parent) : AbstractModel(parent) , m_runnerId(runnerId) , m_name(name) , m_runnerManager(manager) { } QString RunnerMatchesModel::description() const { return m_name; } QVariant RunnerMatchesModel::data(const QModelIndex &index, int role) const { if (!index.isValid() || index.row() >= m_matches.count()) { return QVariant(); } Plasma::QueryMatch match = m_matches.at(index.row()); if (role == Qt::DisplayRole) { return match.text(); } else if (role == Qt::DecorationRole) { if (!match.iconName().isEmpty()) { return match.iconName(); } return match.icon(); } else if (role == Kicker::DescriptionRole) { return match.subtext(); } else if (role == Kicker::FavoriteIdRole) { if (match.runner()->id() == QLatin1String("services")) { return match.data().toString(); } } else if (role == Kicker::UrlRole) { const QString &runnerId = match.runner()->id(); if (runnerId == QLatin1String("baloosearch") || runnerId == QLatin1String("bookmarks")) { return QUrl(match.data().toString()); } else if (runnerId == QLatin1String("recentdocuments") || runnerId == QLatin1String("services")) { KService::Ptr service = KService::serviceByStorageId(match.data().toString()); if (service) { return QUrl::fromLocalFile(Kicker::resolvedServiceEntryPath(service)); } } } else if (role == Kicker::HasActionListRole) { return match.runner()->id() == QLatin1String("services") || !match.runner()->findChildren().isEmpty(); } else if (role == Kicker::IsMultilineTextRole) { return match.isMultiLine(); } else if (role == Kicker::ActionListRole) { QVariantList actionList; const QList actions = m_runnerManager->actionsForMatch(match); for (QAction *action : actions) { QVariantMap item = Kicker::createActionItem(action->text(), // action->icon().name(), QStringLiteral("runnerAction"), QVariant::fromValue(action)); actionList << item; } // Only try to get a KService for matches from the services and systemsettings runner. Assuming // that any other runner returns something we want to turn into a KService is // unsafe, e.g. files from the Baloo runner might match a storageId just by // accident, creating a dangerous false positive. if (match.runner()->id() != QLatin1String("services") && match.runner()->id() != QLatin1String("krunner_systemsettings")) { return actionList; } QUrl dataUrl(match.data().toUrl()); if (dataUrl.isEmpty() && !match.urls().isEmpty()) { // needed for systemsettigs runner dataUrl = match.urls().constFirst(); } if (dataUrl.scheme() != QLatin1String("applications")) { return actionList; } // Don't offer jump list actions on a jump list action. const QString actionName = QUrlQuery(dataUrl).queryItemValue(QStringLiteral("action")); if (!actionName.isEmpty()) { return actionList; } const KService::Ptr service = KService::serviceByStorageId(dataUrl.path()); if (service) { if (!actionList.isEmpty()) { actionList << Kicker::createSeparatorActionItem(); } const QVariantList &jumpListActions = Kicker::jumpListActions(service); if (!jumpListActions.isEmpty()) { actionList << jumpListActions << Kicker::createSeparatorActionItem(); } QObject *appletInterface = static_cast(parent())->appletInterface(); bool systemImmutable = false; if (appletInterface) { systemImmutable = (appletInterface->property("immutability").toInt() == Plasma::Types::SystemImmutable); } const QVariantList &addLauncherActions = Kicker::createAddLauncherActionList(appletInterface, service); if (!systemImmutable && !addLauncherActions.isEmpty()) { actionList << addLauncherActions << Kicker::createSeparatorActionItem(); } const QVariantList &recentDocuments = Kicker::recentDocumentActions(service); if (!recentDocuments.isEmpty()) { actionList << recentDocuments << Kicker::createSeparatorActionItem(); } // Don't allow adding launchers, editing, hiding, or uninstalling applications // when system is immutable. if (systemImmutable) { return actionList; } if (service->isApplication()) { actionList << Kicker::editApplicationAction(service); actionList << Kicker::appstreamActions(service); } } return actionList; } return QVariant(); } int RunnerMatchesModel::rowCount(const QModelIndex &parent) const { return parent.isValid() ? 0 : m_matches.count(); } bool RunnerMatchesModel::trigger(int row, const QString &actionId, const QVariant &argument) { if (row < 0 || row >= m_matches.count()) { return false; } Plasma::QueryMatch match = m_matches.at(row); if (!match.isEnabled()) { return false; } QObject *appletInterface = static_cast(parent())->appletInterface(); KService::Ptr service = KService::serviceByStorageId(match.data().toUrl().toString(QUrl::RemoveScheme)); if (!service && !match.urls().isEmpty()) { // needed for systemsettigs runner service = KService::serviceByStorageId(match.urls().constFirst().toString(QUrl::RemoveScheme)); } if (Kicker::handleAddLauncherAction(actionId, appletInterface, service)) { return false; // We don't want to close Kicker, BUG: 390585 } else if (Kicker::handleEditApplicationAction(actionId, service)) { return true; } else if (Kicker::handleAppstreamActions(actionId, argument)) { return true; } else if (actionId == QLatin1String("_kicker_jumpListAction")) { auto job = new KIO::CommandLauncherJob(argument.toString()); job->setDesktopName(service->entryPath()); job->setIcon(service->icon()); return job->exec(); } else if (actionId == QLatin1String("_kicker_recentDocument") || actionId == QLatin1String("_kicker_forgetRecentDocuments")) { return Kicker::handleRecentDocumentAction(service, actionId, argument); } if (!actionId.isEmpty()) { QObject *obj = argument.value(); if (!obj) { return false; } QAction *action = qobject_cast(obj); if (!action) { return false; } match.setSelectedAction(action); } m_runnerManager->run(match); return true; } void RunnerMatchesModel::setMatches(const QList &matches) { int oldCount = m_matches.count(); int newCount = matches.count(); bool emitCountChange = (oldCount != newCount); int ceiling = qMin(oldCount, newCount); bool emitDataChange = false; for (int row = 0; row < ceiling; ++row) { if (!(m_matches.at(row) == matches.at(row))) { emitDataChange = true; m_matches[row] = matches.at(row); } } if (emitDataChange) { Q_EMIT dataChanged(index(0, 0), index(ceiling - 1, 0)); } if (newCount > oldCount) { beginInsertRows(QModelIndex(), oldCount, newCount - 1); m_matches = matches; endInsertRows(); } else if (newCount < oldCount) { beginRemoveRows(QModelIndex(), newCount, oldCount - 1); m_matches = matches; endRemoveRows(); } if (emitCountChange) { Q_EMIT countChanged(); } } AbstractModel *RunnerMatchesModel::favoritesModel() { return static_cast(parent())->favoritesModel(); }