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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
|
/*
SPDX-FileCopyrightText: 2006 Aaron Seigo <aseigo@kde.org>
SPDX-FileCopyrightText: 2022 Natalie Clarius <natalie_clarius@yahoo.de>
SPDX-License-Identifier: LGPL-2.0-only
*/
#include "sessionrunner.h"
#include <KGuiItem>
#include <KLocalizedString>
#include <KMessageBox>
#include <KSharedConfig>
K_PLUGIN_CLASS_WITH_JSON(SessionRunner, "plasma-runner-sessions.json")
SessionRunner::SessionRunner(QObject *parent, const KPluginMetaData &metaData, const QVariantList &args)
: Plasma::AbstractRunner(parent, metaData, args)
{
setObjectName(QStringLiteral("Sessions"));
setPriority(LowPriority);
m_logoutKeywords = i18nc("KRunner keywords (split by semicolons without whitespace) to log out of the session", "logout;log out")
.split(QLatin1Char(';'), Qt::SkipEmptyParts);
if (m_session.canLogout()) {
Plasma::RunnerSyntax logoutSyntax(m_logoutKeywords.first(), i18n("Logs out, exiting the current desktop session"));
for (QString keyword : m_logoutKeywords.mid(1)) {
logoutSyntax.addExampleQuery(keyword);
}
addSyntax(logoutSyntax);
}
m_shutdownKeywords = i18nc("KRunner keywords (split by semicolons without whitespace) to shut down the computer", "shutdown;shut down")
.split(QLatin1Char(';'), Qt::SkipEmptyParts);
if (m_session.canShutdown()) {
Plasma::RunnerSyntax shutdownSyntax(m_shutdownKeywords.first(), i18n("Turns off the computer"));
for (QString keyword : m_shutdownKeywords.mid(1)) {
shutdownSyntax.addExampleQuery(keyword);
}
addSyntax(shutdownSyntax);
}
m_restartKeywords = i18nc("KRunner keywords (split by semicolons without whitespace) to restart the computer", "restart;reboot")
.split(QLatin1Char(';'), Qt::SkipEmptyParts);
if (m_session.canReboot()) {
Plasma::RunnerSyntax restartSyntax(m_restartKeywords.first(), i18n("Reboots the computer"));
for (QString keyword : m_restartKeywords.mid(1)) {
restartSyntax.addExampleQuery(keyword);
}
addSyntax(restartSyntax);
}
m_lockKeywords =
i18nc("KRunner keywords (split by semicolons without whitespace) to lock the screen", "lock;lock screen").split(QLatin1Char(';'), Qt::SkipEmptyParts);
if (m_session.canLock()) {
Plasma::RunnerSyntax lockSyntax(m_lockKeywords.first(), i18n("Locks the current sessions and starts the screen saver"));
for (QString keyword : m_lockKeywords.mid(1)) {
lockSyntax.addExampleQuery(keyword);
}
addSyntax(lockSyntax);
}
m_saveKeywords = i18nc("KRunner keywords (split by semicolons without whitespace) to save the desktop session", "save;save session")
.split(QLatin1Char(';'), Qt::SkipEmptyParts);
if (m_session.canSaveSession()) {
Plasma::RunnerSyntax saveSyntax(m_saveKeywords.first(), i18n("Saves the current session for session restoration"));
for (QString keyword : m_saveKeywords.mid(1)) {
saveSyntax.addExampleQuery(keyword);
}
addSyntax(saveSyntax);
}
m_usersKeywords = i18nc("KRunner keywords (split by semicolons without whitespace) to switch user sessions", "switch user;new session")
.split(QLatin1Char(';'), Qt::SkipEmptyParts);
if (m_session.canSwitchUser()) {
Plasma::RunnerSyntax usersSyntax(m_usersKeywords.first(), i18n("Starts a new session as a different user"));
for (QString keyword : m_usersKeywords.mid(1)) {
usersSyntax.addExampleQuery(keyword);
}
addSyntax(usersSyntax);
}
m_sessionsKeyword = i18nc("KRunner keyword to list user sessions", "sessions");
Plasma::RunnerSyntax sessionsSyntax(m_sessionsKeyword, i18n("Lists all sessions"));
addSyntax(sessionsSyntax);
m_switchKeyword = i18nc("KRunner keyword to switch user sessions", "switch");
Plasma::RunnerSyntax switchSyntax(m_switchKeyword + QStringLiteral(" :q:"),
i18n("Switches to the active session for the user :q:, or lists all active sessions if :q: is not provided"));
addSyntax(switchSyntax);
setMinLetterCount(3);
}
SessionRunner::~SessionRunner()
{
}
static inline bool anyKeywordMatches(const QStringList &keywords, const QString &term)
{
return std::any_of(keywords.cbegin(), keywords.cend(), [&term](const QString &keyword) {
return term.compare(keyword, Qt::CaseInsensitive) == 0;
});
}
void SessionRunner::matchCommands(QList<Plasma::QueryMatch> &matches, const QString &term)
{
if (anyKeywordMatches(m_logoutKeywords, term)) {
if (m_session.canLogout()) {
Plasma::QueryMatch match(this);
match.setText(i18nc("log out command", "Log Out"));
match.setIconName(QStringLiteral("system-log-out"));
match.setData(LogoutAction);
match.setType(Plasma::QueryMatch::ExactMatch);
match.setRelevance(0.9);
matches << match;
}
} else if (anyKeywordMatches(m_shutdownKeywords, term)) {
if (m_session.canShutdown()) {
Plasma::QueryMatch match(this);
match.setText(i18nc("turn off computer command", "Shut Down"));
match.setIconName(QStringLiteral("system-shutdown"));
match.setData(ShutdownAction);
match.setType(Plasma::QueryMatch::ExactMatch);
match.setRelevance(0.9);
matches << match;
}
} else if (anyKeywordMatches(m_restartKeywords, term)) {
if (m_session.canReboot()) {
Plasma::QueryMatch match(this);
match.setText(i18nc("restart computer command", "Restart"));
match.setIconName(QStringLiteral("system-reboot"));
match.setData(RestartAction);
match.setType(Plasma::QueryMatch::ExactMatch);
match.setRelevance(0.9);
matches << match;
}
} else if (anyKeywordMatches(m_lockKeywords, term)) {
if (m_session.canLock()) {
Plasma::QueryMatch match(this);
match.setText(i18nc("lock screen command", "Lock"));
match.setIconName(QStringLiteral("system-lock-screen"));
match.setData(LockAction);
match.setType(Plasma::QueryMatch::ExactMatch);
match.setRelevance(0.9);
matches << match;
}
} else if (anyKeywordMatches(m_saveKeywords, term)) {
if (m_session.canSaveSession()) {
Plasma::QueryMatch match(this);
match.setText(i18n("Save Session"));
match.setIconName(QStringLiteral("system-save-session"));
match.setData(SaveAction);
match.setType(Plasma::QueryMatch::ExactMatch);
match.setRelevance(0.9);
matches << match;
}
}
}
void SessionRunner::match(Plasma::RunnerContext &context)
{
const QString term = context.query();
QString user;
bool matchUser = false;
QList<Plasma::QueryMatch> matches;
// first compare with "sessions" keyword
// "SESSIONS" must *NOT* be translated (i18n)
// as it is used as an internal command trigger (e.g. via d-bus),
// not as a user supplied query. and yes, "Ugh, magic strings"
bool listAll = anyKeywordMatches(QStringList({QStringLiteral("SESSIONS"), m_sessionsKeyword}), term);
if (!listAll) {
// no luck, try the "switch" user command
if (term.startsWith(m_switchKeyword, Qt::CaseInsensitive)) {
user = term.right(term.size() - m_switchKeyword.length()).trimmed();
listAll = user.isEmpty();
matchUser = !listAll;
} else {
// we know it's not "sessions" or "switch <something>", so let's
// try some other possibilities
matchCommands(matches, term);
}
}
bool switchUser = listAll || anyKeywordMatches(m_usersKeywords, term);
if (switchUser && m_session.canSwitchUser() && dm.isSwitchable() && dm.numReserve() >= 0) {
Plasma::QueryMatch match(this);
match.setType(Plasma::QueryMatch::ExactMatch);
match.setIconName(QStringLiteral("system-switch-user"));
match.setText(i18n("Switch User"));
matches << match;
}
// now add the active sessions
if (listAll || matchUser) {
SessList sessions;
dm.localSessions(sessions);
for (const SessEnt &session : qAsConst(sessions)) {
if (!session.vt || session.self) {
continue;
}
QString name = KDisplayManager::sess2Str(session);
Plasma::QueryMatch::Type type = Plasma::QueryMatch::NoMatch;
qreal relevance = 0.7;
if (listAll) {
type = Plasma::QueryMatch::ExactMatch;
relevance = 1;
} else if (matchUser) {
if (name.compare(user, Qt::CaseInsensitive) == 0) {
// we need an elif branch here because we don't
// want the last conditional to be checked if !listAll
type = Plasma::QueryMatch::ExactMatch;
relevance = 1;
} else if (name.contains(user, Qt::CaseInsensitive)) {
type = Plasma::QueryMatch::PossibleMatch;
}
}
if (type != Plasma::QueryMatch::NoMatch) {
Plasma::QueryMatch match(this);
match.setType(type);
match.setRelevance(relevance);
match.setIconName(QStringLiteral("user-identity"));
match.setText(name);
match.setData(QString::number(session.vt));
matches << match;
}
}
}
context.addMatches(matches);
}
void SessionRunner::run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &match)
{
Q_UNUSED(context);
if (match.data().type() == QVariant::Int) {
switch (match.data().toInt()) {
case LogoutAction:
m_session.requestLogout();
break;
case RestartAction:
m_session.requestReboot();
break;
case ShutdownAction:
m_session.requestShutdown();
break;
case LockAction:
m_session.lock();
break;
case SaveAction:
m_session.saveSession();
break;
}
return;
}
if (!match.data().toString().isEmpty()) {
dm.lockSwitchVT(match.data().toString().toInt());
return;
}
const auto config = KSharedConfig::openConfig(QStringLiteral("ksmserverrc"));
KMessageBox::setDontShowAgainConfig(config.data());
KGuiItem continueButton = KStandardGuiItem::cont();
continueButton.setText("Enter new session");
KGuiItem cancelButton = KStandardGuiItem::cancel();
cancelButton.setText("Stay in current session");
KMessageBox::ButtonCode confirmNewSession =
KMessageBox::warningContinueCancel(nullptr,
i18n("<p>You are about to enter a new desktop session.</p>"
"<p>A login screen will be displayed and the current session will be hidden.</p>"
"<p>You can switch between desktop sessions using:</p>"
"<ul>"
"<li>Ctrl+Alt+F{number of session}</li>"
"<li>Plasma search (type '%1')</li>"
"<li>Plasma widgets (such as the application launcher)</li>"
"</ul>",
m_switchKeyword),
i18n("New Desktop Session"),
continueButton,
cancelButton,
QStringLiteral("ConfirmNewSession"));
if (confirmNewSession == KMessageBox::Continue) {
m_session.lock();
dm.startReserve();
}
}
#include "sessionrunner.moc"
|