1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
|
/*
SPDX-FileCopyrightText: 2017 Kai Uwe Broulik <kde@privat.broulik.de>
SPDX-FileCopyrightText: 2017 David Edmundson <davidedmundson@kde.org>
SPDX-License-Identifier: MIT
*/
#include "tabsrunnerplugin.h"
#include "connection.h"
#include <QDBusConnection>
#include <QGuiApplication>
#include <QHash>
#include <QIcon>
#include <QImage>
#include <QJsonArray>
#include <QJsonObject>
#include <QVariant>
#include <KApplicationTrader>
#include <KLocalizedString>
#include "settings.h"
static const auto s_actionIdMute = QLatin1String("MUTE");
static const auto s_actionIdUnmute = QLatin1String("UNMUTE");
TabsRunnerPlugin::TabsRunnerPlugin(QObject *parent)
: AbstractKRunnerPlugin(QStringLiteral("/TabsRunner"), QStringLiteral("tabsrunner"), 1, parent)
{
}
RemoteActions TabsRunnerPlugin::Actions()
{
RemoteAction muteAction{
s_actionIdMute,
i18n("Mute Tab"),
QStringLiteral("audio-volume-muted"),
};
RemoteAction unmuteAction{
s_actionIdUnmute,
i18n("Unmute Tab"),
QStringLiteral("audio-volume-high"),
};
return {muteAction, unmuteAction};
}
RemoteMatches TabsRunnerPlugin::Match(const QString &searchTerm)
{
if (searchTerm.length() < 1) {
sendErrorReply(QDBusError::InvalidArgs, QStringLiteral("Search term too short"));
return {};
}
if (!m_tabs.isEmpty()) {
return match(searchTerm);
}
setDelayedReply(true);
const bool runQuery = m_requests.isEmpty();
m_requests.insert(searchTerm, message());
if (runQuery) {
sendData(QStringLiteral("getTabs"));
}
return {};
}
void TabsRunnerPlugin::Run(const QString &id, const QString &actionId)
{
bool ok = false;
const int tabId = id.toInt(&ok);
if (!ok || tabId < 0) {
sendErrorReply(QDBusError::InvalidArgs, QStringLiteral("Invalid tab ID"));
return;
}
if (actionId.isEmpty()) {
sendData(QStringLiteral("activate"),
{
{QStringLiteral("tabId"), tabId},
});
return;
}
if (actionId == s_actionIdMute || actionId == s_actionIdUnmute) {
sendData(QStringLiteral("setMuted"),
{
{QStringLiteral("tabId"), tabId},
{QStringLiteral("muted"), actionId == s_actionIdMute},
});
return;
}
sendErrorReply(QDBusError::InvalidArgs, QStringLiteral("Unknown action ID"));
}
void TabsRunnerPlugin::Teardown()
{
m_tabs = QJsonArray();
}
void TabsRunnerPlugin::handleData(const QString &event, const QJsonObject &json)
{
if (event == QLatin1String("gotTabs")) {
m_tabs = json.value(QStringLiteral("tabs")).toArray();
for (auto it = m_requests.constBegin(), end = m_requests.constEnd(); it != end; ++it) {
const QString query = it.key();
const QDBusMessage request = it.value();
const auto matches = match(query);
QDBusConnection::sessionBus().send(request.createReply(QVariant::fromValue(matches)));
}
m_requests.clear();
}
}
RemoteMatches TabsRunnerPlugin::match(const QString &query) const
{
RemoteMatches matches;
for (const auto &tabValue : m_tabs) {
const QJsonObject tab = tabValue.toObject();
RemoteMatch match;
const int tabId = tab.value(QStringLiteral("id")).toInt();
const QString text = tab.value(QStringLiteral("title")).toString();
const QUrl url(tab.value(QStringLiteral("url")).toString());
QStringList actions;
qreal relevance = 0;
// someone was really busy here, typing the *exact* title or url :D
if (text.compare(query, Qt::CaseInsensitive) == 0 || url.toString().compare(query, Qt::CaseInsensitive) == 0) {
match.categoryRelevance = qToUnderlying(KRunner::QueryMatch::CategoryRelevance::Highest);
relevance = 1;
} else {
match.categoryRelevance = qToUnderlying(KRunner::QueryMatch::CategoryRelevance::High);
if (KApplicationTrader::isSubsequence(query, text, Qt::CaseInsensitive)) {
relevance = 0.85;
if (text.contains(query, Qt::CaseInsensitive)) {
relevance += 0.05;
if (text.startsWith(query, Qt::CaseInsensitive)) {
relevance += 0.05;
}
}
} else if (url.host().contains(query, Qt::CaseInsensitive)) {
relevance = 0.7;
if (url.host().startsWith(query, Qt::CaseInsensitive)) {
relevance += 0.1;
}
} else if (url.path().contains(query, Qt::CaseInsensitive)) {
relevance = 0.5;
if (url.path().startsWith(query, Qt::CaseInsensitive)) {
relevance += 0.1;
}
}
}
if (!relevance) {
continue;
}
match.id = QString::number(tabId);
match.text = text;
match.properties.insert(QStringLiteral("subtext"), url.toDisplayString());
match.relevance = relevance;
QUrl urlWithoutPassword = url;
urlWithoutPassword.setPassword({});
match.properties.insert(QStringLiteral("urls"), QUrl::toStringList(QList<QUrl>{urlWithoutPassword}));
const bool audible = tab.value(QStringLiteral("audible")).toBool();
const QJsonObject mutedInfo = tab.value(QStringLiteral("mutedInfo")).toObject();
const bool muted = mutedInfo.value(QStringLiteral("muted")).toBool();
if (audible) {
if (muted) {
match.iconName = QStringLiteral("audio-volume-muted");
actions.append(s_actionIdUnmute);
} else {
match.iconName = QStringLiteral("audio-volume-high");
actions.append(s_actionIdMute);
}
} else {
match.iconName = qApp->windowIcon().name();
const QImage favIcon = imageFromDataUrl(tab.value(QStringLiteral("favIconData")).toString());
if (!favIcon.isNull()) {
const RemoteImage remoteImage = serializeImage(favIcon);
match.properties.insert(QStringLiteral("icon-data"), QVariant::fromValue(remoteImage));
}
}
// Has to always be present so it knows we handle actions ourself
match.properties.insert(QStringLiteral("actions"), actions);
matches.append(match);
}
return matches;
}
#include "moc_tabsrunnerplugin.cpp"
|