mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 02:05:54 +00:00
234 lines
9.3 KiB
C++
234 lines
9.3 KiB
C++
/*
|
|
SPDX-FileCopyrightText: 2006 Aaron Seigo <aseigo@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.0-only
|
|
*/
|
|
|
|
#include "sessionrunner.h"
|
|
|
|
#include <KAuthorized>
|
|
#include <KLocalizedString>
|
|
#include <QDebug>
|
|
#include <QMessageBox>
|
|
|
|
#include "kworkspace.h"
|
|
|
|
#include "screensaver_interface.h"
|
|
|
|
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_canLogout = KAuthorized::authorizeAction(QStringLiteral("logout")) && KAuthorized::authorize(QStringLiteral("logout"));
|
|
if (m_canLogout) {
|
|
addSyntax(Plasma::RunnerSyntax(i18nc("log out command", "logout"), i18n("Logs out, exiting the current desktop session")));
|
|
addSyntax(Plasma::RunnerSyntax(i18nc("shut down computer command", "shut down"), i18n("Turns off the computer")));
|
|
}
|
|
|
|
if (KAuthorized::authorizeAction(QStringLiteral("lock_screen")) && m_canLogout) {
|
|
addSyntax(Plasma::RunnerSyntax(i18nc("lock screen command", "lock"), i18n("Locks the current sessions and starts the screen saver")));
|
|
}
|
|
|
|
Plasma::RunnerSyntax rebootSyntax(i18nc("restart computer command", "restart"), i18n("Reboots the computer"));
|
|
rebootSyntax.addExampleQuery(i18nc("restart computer command", "reboot"));
|
|
addSyntax(rebootSyntax);
|
|
|
|
m_triggerWord = i18nc("switch user command", "switch");
|
|
addSyntax(Plasma::RunnerSyntax(i18nc("switch user command", "switch :q:"),
|
|
i18n("Switches to the active session for the user :q:, "
|
|
"or lists all active sessions if :q: is not provided")));
|
|
|
|
Plasma::RunnerSyntax fastUserSwitchSyntax(i18n("switch user"), i18n("Starts a new session as a different user"));
|
|
fastUserSwitchSyntax.addExampleQuery(i18n("new session"));
|
|
addSyntax(fastUserSwitchSyntax);
|
|
|
|
//"SESSIONS" should not be translated; it's used programmaticaly
|
|
addSyntax(Plasma::RunnerSyntax(QStringLiteral("SESSIONS"), i18n("Lists all sessions")));
|
|
setMinLetterCount(3);
|
|
}
|
|
|
|
SessionRunner::~SessionRunner()
|
|
{
|
|
}
|
|
|
|
void SessionRunner::matchCommands(QList<Plasma::QueryMatch> &matches, const QString &term)
|
|
{
|
|
if (!m_canLogout) {
|
|
return;
|
|
}
|
|
|
|
if (term.compare(i18nc("log out command", "logout"), Qt::CaseInsensitive) == 0 || term.compare(i18n("log out"), Qt::CaseInsensitive) == 0) {
|
|
Plasma::QueryMatch match(this);
|
|
match.setText(i18nc("log out command", "Logout"));
|
|
match.setIconName(QStringLiteral("system-log-out"));
|
|
match.setData(LogoutAction);
|
|
match.setType(Plasma::QueryMatch::ExactMatch);
|
|
match.setRelevance(0.9);
|
|
matches << match;
|
|
} else if (term.compare(i18nc("restart computer command", "restart"), Qt::CaseInsensitive) == 0
|
|
|| term.compare(i18nc("restart computer command", "reboot"), Qt::CaseInsensitive) == 0) {
|
|
Plasma::QueryMatch match(this);
|
|
match.setText(i18n("Restart the computer"));
|
|
match.setIconName(QStringLiteral("system-reboot"));
|
|
match.setData(RestartAction);
|
|
match.setType(Plasma::QueryMatch::ExactMatch);
|
|
match.setRelevance(0.9);
|
|
matches << match;
|
|
} else if (term.compare(i18nc("shut down computer command", "shut down"), Qt::CaseInsensitive) == 0
|
|
|| term.compare(i18nc("shut down computer command", "shutdown"), Qt::CaseInsensitive) == 0) {
|
|
Plasma::QueryMatch match(this);
|
|
match.setText(i18n("Shut down the computer"));
|
|
match.setIconName(QStringLiteral("system-shutdown"));
|
|
match.setData(ShutdownAction);
|
|
match.setType(Plasma::QueryMatch::ExactMatch);
|
|
match.setRelevance(0.9);
|
|
matches << match;
|
|
} else if (term.compare(i18nc("lock screen command", "lock"), Qt::CaseInsensitive) == 0) {
|
|
if (KAuthorized::authorizeAction(QStringLiteral("lock_screen"))) {
|
|
Plasma::QueryMatch match(this);
|
|
match.setText(i18n("Lock the screen"));
|
|
match.setIconName(QStringLiteral("system-lock-screen"));
|
|
match.setData(LockAction);
|
|
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. this 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 =
|
|
term.compare(QLatin1String("SESSIONS"), Qt::CaseInsensitive) == 0 || term.compare(i18nc("User sessions", "sessions"), Qt::CaseInsensitive) == 0;
|
|
|
|
if (!listAll) {
|
|
// no luck, try the "switch" user command
|
|
if (term.startsWith(m_triggerWord, Qt::CaseInsensitive)) {
|
|
user = term.right(term.size() - m_triggerWord.length()).trimmed();
|
|
listAll = user.isEmpty();
|
|
matchUser = !listAll;
|
|
} else {
|
|
// we know it's not SESSION or "switch <something>", so let's
|
|
// try some other possibilities
|
|
matchCommands(matches, term);
|
|
}
|
|
}
|
|
|
|
bool switchUser = listAll || term.compare(i18n("switch user"), Qt::CaseInsensitive) == 0 || term.compare(i18n("new session"), Qt::CaseInsensitive) == 0;
|
|
|
|
if (switchUser && KAuthorized::authorizeAction(QStringLiteral("start_new_session")) && 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;
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (!match.data().toString().isEmpty()) {
|
|
dm.lockSwitchVT(match.data().toString().toInt());
|
|
return;
|
|
}
|
|
|
|
// TODO: this message is too verbose and too technical.
|
|
int result = QMessageBox::warning(nullptr,
|
|
i18n("Warning - New Session"),
|
|
i18n("<p>You have chosen to open another desktop session.<br />"
|
|
"The current session will be hidden "
|
|
"and a new login screen will be displayed.<br />"
|
|
"An F-key is assigned to each session; "
|
|
"F%1 is usually assigned to the first session, "
|
|
"F%2 to the second session and so on. "
|
|
"You can switch between sessions by pressing "
|
|
"Ctrl, Alt and the appropriate F-key at the same time. "
|
|
"Additionally, the Plasma Panel and Desktop menus have "
|
|
"actions for switching between sessions.</p>",
|
|
7,
|
|
8));
|
|
|
|
if (result == QMessageBox::Cancel) {
|
|
return;
|
|
}
|
|
m_session.lock();
|
|
|
|
dm.startReserve();
|
|
}
|
|
|
|
#include "sessionrunner.moc"
|