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 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
*
* Copyright (C) 2006 Vincent Untz
* Copyright (C) 2008 Red Hat, Inc.
* Copyright (C) 2012-2021 MATE Developers
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301, USA.
*
* Authors:
* Vincent Untz <vuntz@gnome.org>
*/
#include <config.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include "gsm-logout-dialog.h"
#ifdef HAVE_SYSTEMD
#include "gsm-systemd.h"
#endif
#include "gsm-consolekit.h"
#include "mdm.h"
#include "gsm-util.h"
#define GSM_ICON_LOGOUT "system-log-out"
#define GSM_ICON_SHUTDOWN "system-shutdown"
#define SESSION_SCHEMA "org.mate.session"
#define KEY_LOGOUT_TIMEOUT "logout-timeout"
#define LOCKDOWN_SCHEMA "org.mate.lockdown"
#define KEY_USER_SWITCHING_DISABLE "disable-user-switching"
typedef enum {
GSM_DIALOG_LOGOUT_TYPE_LOGOUT,
GSM_DIALOG_LOGOUT_TYPE_SHUTDOWN
} GsmDialogLogoutType;
struct _GsmLogoutDialog
{
GtkMessageDialog parent;
GsmDialogLogoutType type;
#ifdef HAVE_SYSTEMD
GsmSystemd *systemd;
#endif
GsmConsolekit *consolekit;
GtkWidget *progressbar;
int timeout;
unsigned int timeout_id;
unsigned int default_response;
};
static GsmLogoutDialog *current_dialog = NULL;
static void gsm_logout_dialog_set_timeout (GsmLogoutDialog *logout_dialog);
static void gsm_logout_dialog_destroy (GsmLogoutDialog *logout_dialog,
gpointer data);
static void gsm_logout_dialog_show (GsmLogoutDialog *logout_dialog,
gpointer data);
enum {
PROP_0,
PROP_MESSAGE_TYPE
};
G_DEFINE_TYPE (GsmLogoutDialog, gsm_logout_dialog, GTK_TYPE_MESSAGE_DIALOG);
static void
gsm_logout_dialog_set_property (GObject *object,
guint prop_id,
const GValue *value,
GParamSpec *pspec)
{
switch (prop_id) {
case PROP_MESSAGE_TYPE:
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gsm_logout_dialog_get_property (GObject *object,
guint prop_id,
GValue *value,
GParamSpec *pspec)
{
switch (prop_id) {
case PROP_MESSAGE_TYPE:
g_value_set_enum (value, GTK_MESSAGE_WARNING);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
gsm_logout_dialog_class_init (GsmLogoutDialogClass *klass)
{
GObjectClass *gobject_class;
gobject_class = G_OBJECT_CLASS (klass);
/* This is a workaround to avoid a stupid crash: libmateui
* listens for the "show" signal on all GtkMessageDialog and
* gets the "message-type" of the dialogs. We will crash when
* it accesses this property if we don't override it since we
* didn't define it. */
gobject_class->set_property = gsm_logout_dialog_set_property;
gobject_class->get_property = gsm_logout_dialog_get_property;
g_object_class_override_property (gobject_class,
PROP_MESSAGE_TYPE,
"message-type");
}
static void
gsm_logout_dialog_init (GsmLogoutDialog *logout_dialog)
{
logout_dialog->timeout_id = 0;
logout_dialog->timeout = 0;
logout_dialog->default_response = GTK_RESPONSE_CANCEL;
GtkStyleContext *context;
context = gtk_widget_get_style_context (GTK_WIDGET (logout_dialog));
gtk_style_context_add_class (context, "logout-dialog");
gtk_window_set_skip_taskbar_hint (GTK_WINDOW (logout_dialog), TRUE);
gtk_window_set_keep_above (GTK_WINDOW (logout_dialog), TRUE);
gtk_window_stick (GTK_WINDOW (logout_dialog));
#ifdef HAVE_SYSTEMD
if (LOGIND_RUNNING())
logout_dialog->systemd = gsm_get_systemd ();
else
#endif
logout_dialog->consolekit = gsm_get_consolekit ();
g_signal_connect (logout_dialog,
"destroy",
G_CALLBACK (gsm_logout_dialog_destroy),
NULL);
g_signal_connect (logout_dialog,
"show",
G_CALLBACK (gsm_logout_dialog_show),
NULL);
}
static void
gsm_logout_dialog_destroy (GsmLogoutDialog *logout_dialog,
gpointer data)
{
if (logout_dialog->timeout_id != 0) {
g_source_remove (logout_dialog->timeout_id);
logout_dialog->timeout_id = 0;
}
#ifdef HAVE_SYSTEMD
if (logout_dialog->systemd) {
g_object_unref (logout_dialog->systemd);
logout_dialog->systemd = NULL;
}
#endif
if (logout_dialog->consolekit) {
g_object_unref (logout_dialog->consolekit);
logout_dialog->consolekit = NULL;
}
current_dialog = NULL;
}
static gboolean
gsm_logout_supports_system_suspend (GsmLogoutDialog *logout_dialog)
{
gboolean ret;
ret = FALSE;
#ifdef HAVE_SYSTEMD
if (LOGIND_RUNNING())
ret = gsm_systemd_can_suspend (logout_dialog->systemd);
else
#endif
ret = gsm_consolekit_can_suspend (logout_dialog->consolekit);
return ret;
}
static gboolean
gsm_logout_supports_system_hibernate (GsmLogoutDialog *logout_dialog)
{
gboolean ret;
ret = FALSE;
#ifdef HAVE_SYSTEMD
if (LOGIND_RUNNING())
ret = gsm_systemd_can_hibernate (logout_dialog->systemd);
else
#endif
ret = gsm_consolekit_can_hibernate (logout_dialog->consolekit);
return ret;
}
static gboolean
gsm_logout_supports_switch_user (GsmLogoutDialog *logout_dialog)
{
GSettings *settings;
gboolean ret = FALSE;
gboolean locked;
settings = g_settings_new (LOCKDOWN_SCHEMA);
locked = g_settings_get_boolean (settings, KEY_USER_SWITCHING_DISABLE);
g_object_unref (settings);
if (!locked) {
#ifdef HAVE_SYSTEMD
if (LOGIND_RUNNING())
ret = gsm_systemd_can_switch_user (logout_dialog->systemd);
else
#endif
ret = gsm_consolekit_can_switch_user (logout_dialog->consolekit);
}
return ret;
}
static gboolean
gsm_logout_supports_reboot (GsmLogoutDialog *logout_dialog)
{
gboolean ret;
#ifdef HAVE_SYSTEMD
if (LOGIND_RUNNING())
ret = gsm_systemd_can_restart (logout_dialog->systemd);
else
#endif
ret = gsm_consolekit_can_restart (logout_dialog->consolekit);
if (!ret) {
ret = mdm_supports_logout_action (MDM_LOGOUT_ACTION_REBOOT);
}
return ret;
}
static gboolean
gsm_logout_supports_shutdown (GsmLogoutDialog *logout_dialog)
{
gboolean ret;
#ifdef HAVE_SYSTEMD
if (LOGIND_RUNNING())
ret = gsm_systemd_can_stop (logout_dialog->systemd);
else
#endif
ret = gsm_consolekit_can_stop (logout_dialog->consolekit);
if (!ret) {
ret = mdm_supports_logout_action (MDM_LOGOUT_ACTION_SHUTDOWN);
}
return ret;
}
static void
gsm_logout_dialog_show (GsmLogoutDialog *logout_dialog, gpointer user_data)
{
gsm_logout_dialog_set_timeout (logout_dialog);
}
static gboolean
gsm_logout_dialog_timeout (gpointer data)
{
GsmLogoutDialog *logout_dialog;
char *seconds_warning;
char *secondary_text;
static char *session_type = NULL;
static gboolean is_not_login;
logout_dialog = (GsmLogoutDialog *) data;
if (!logout_dialog->timeout) {
gtk_dialog_response (GTK_DIALOG (logout_dialog),
logout_dialog->default_response);
return FALSE;
}
switch (logout_dialog->type) {
case GSM_DIALOG_LOGOUT_TYPE_LOGOUT:
seconds_warning = ngettext ("You will be automatically logged "
"out in %d second",
"You will be automatically logged "
"out in %d seconds",
logout_dialog->timeout);
break;
case GSM_DIALOG_LOGOUT_TYPE_SHUTDOWN:
seconds_warning = ngettext ("This system will be automatically "
"shut down in %d second",
"This system will be automatically "
"shut down in %d seconds",
logout_dialog->timeout);
break;
default:
g_assert_not_reached ();
}
seconds_warning = g_strdup_printf (seconds_warning, logout_dialog->timeout);
if (session_type == NULL) {
#ifdef HAVE_SYSTEMD
if (LOGIND_RUNNING()) {
GsmSystemd *systemd;
systemd = gsm_get_systemd ();
session_type = gsm_systemd_get_current_session_type (systemd);
g_object_unref (systemd);
is_not_login = (g_strcmp0 (session_type, GSM_SYSTEMD_SESSION_TYPE_LOGIN_WINDOW) != 0);
}
else {
#endif
GsmConsolekit *consolekit;
consolekit = gsm_get_consolekit ();
session_type = gsm_consolekit_get_current_session_type (consolekit);
g_object_unref (consolekit);
is_not_login = (g_strcmp0 (session_type, GSM_CONSOLEKIT_SESSION_TYPE_LOGIN_WINDOW) != 0);
#ifdef HAVE_SYSTEMD
}
#endif
}
if (is_not_login) {
char *name;
name = g_locale_to_utf8 (g_get_real_name (), -1, NULL, NULL, NULL);
if (!name || name[0] == '\0' || strcmp (name, "Unknown") == 0) {
name = g_locale_to_utf8 (g_get_user_name (), -1 , NULL, NULL, NULL);
}
if (!name) {
name = g_strdup (g_get_user_name ());
}
secondary_text = g_strdup_printf (_("You are currently logged in as \"%s\"."), name);
g_free (name);
} else {
secondary_text = g_strdup (seconds_warning);
}
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (logout_dialog->progressbar),
logout_dialog->timeout / 60.0);
gtk_progress_bar_set_text (GTK_PROGRESS_BAR (logout_dialog->progressbar),
seconds_warning);
gtk_message_dialog_format_secondary_text (GTK_MESSAGE_DIALOG (logout_dialog),
secondary_text,
NULL);
logout_dialog->timeout--;
g_free (secondary_text);
g_free (seconds_warning);
return TRUE;
}
static void
gsm_logout_dialog_set_timeout (GsmLogoutDialog *logout_dialog)
{
GSettings *settings;
settings = g_settings_new (SESSION_SCHEMA);
logout_dialog->timeout = g_settings_get_int (settings, KEY_LOGOUT_TIMEOUT);
if (logout_dialog->timeout > 0) {
/* Sets the secondary text */
gsm_logout_dialog_timeout (logout_dialog);
if (logout_dialog->timeout_id != 0) {
g_source_remove (logout_dialog->timeout_id);
}
logout_dialog->timeout_id = g_timeout_add (1000,
gsm_logout_dialog_timeout,
logout_dialog);
}
else {
gtk_widget_hide (logout_dialog->progressbar);
}
g_object_unref (settings);
}
static GtkWidget *
gsm_get_dialog (GsmDialogLogoutType type,
GdkScreen *screen,
guint32 activate_time)
{
GsmLogoutDialog *logout_dialog;
GtkWidget *hbox;
const char *primary_text;
const char *icon_name;
if (current_dialog != NULL) {
gtk_widget_destroy (GTK_WIDGET (current_dialog));
}
logout_dialog = g_object_new (GSM_TYPE_LOGOUT_DIALOG, NULL);
current_dialog = logout_dialog;
gtk_window_set_title (GTK_WINDOW (logout_dialog), "");
logout_dialog->type = type;
icon_name = NULL;
primary_text = NULL;
switch (type) {
case GSM_DIALOG_LOGOUT_TYPE_LOGOUT:
icon_name = GSM_ICON_LOGOUT;
primary_text = _("Log out of this system now?");
logout_dialog->default_response = GSM_LOGOUT_RESPONSE_LOGOUT;
if (gsm_logout_supports_switch_user (logout_dialog)) {
gsm_util_dialog_add_button (GTK_DIALOG (logout_dialog),
_("_Switch User"), "system-users",
GSM_LOGOUT_RESPONSE_SWITCH_USER);
}
gsm_util_dialog_add_button (GTK_DIALOG (logout_dialog),
_("_Cancel"), "process-stop",
GTK_RESPONSE_CANCEL);
gsm_util_dialog_add_button (GTK_DIALOG (logout_dialog),
_("_Log Out"), "system-log-out",
GSM_LOGOUT_RESPONSE_LOGOUT);
break;
case GSM_DIALOG_LOGOUT_TYPE_SHUTDOWN:
icon_name = GSM_ICON_SHUTDOWN;
primary_text = _("Shut down this system now?");
logout_dialog->default_response = GSM_LOGOUT_RESPONSE_SHUTDOWN;
if (gsm_logout_supports_system_suspend (logout_dialog)) {
gsm_util_dialog_add_button (GTK_DIALOG (logout_dialog),
_("S_uspend"), "battery",
GSM_LOGOUT_RESPONSE_SLEEP);
}
if (gsm_logout_supports_system_hibernate (logout_dialog)) {
gsm_util_dialog_add_button (GTK_DIALOG (logout_dialog),
_("_Hibernate"), "drive-harddisk",
GSM_LOGOUT_RESPONSE_HIBERNATE);
}
if (gsm_logout_supports_reboot (logout_dialog)) {
gsm_util_dialog_add_button (GTK_DIALOG (logout_dialog),
_("_Restart"), "view-refresh",
GSM_LOGOUT_RESPONSE_REBOOT);
}
gsm_util_dialog_add_button (GTK_DIALOG (logout_dialog),
_("_Cancel"), "process-stop",
GTK_RESPONSE_CANCEL);
if (gsm_logout_supports_shutdown (logout_dialog)) {
gsm_util_dialog_add_button (GTK_DIALOG (logout_dialog),
_("_Shut Down"), "system-shutdown",
GSM_LOGOUT_RESPONSE_SHUTDOWN);
}
break;
default:
g_assert_not_reached ();
}
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 0);
logout_dialog->progressbar = gtk_progress_bar_new ();
gtk_progress_bar_set_show_text (GTK_PROGRESS_BAR (logout_dialog->progressbar), TRUE);
gtk_progress_bar_set_fraction (GTK_PROGRESS_BAR (logout_dialog->progressbar), 1.0);
gtk_box_pack_start (GTK_BOX (hbox),
logout_dialog->progressbar,
TRUE, TRUE, 12);
gtk_widget_show_all (hbox);
gtk_container_add (GTK_CONTAINER (gtk_dialog_get_content_area (GTK_DIALOG (logout_dialog))), hbox);
gtk_window_set_icon_name (GTK_WINDOW (logout_dialog), icon_name);
gtk_window_set_position (GTK_WINDOW (logout_dialog), GTK_WIN_POS_CENTER_ALWAYS);
gtk_message_dialog_set_markup (GTK_MESSAGE_DIALOG (logout_dialog), primary_text);
gtk_dialog_set_default_response (GTK_DIALOG (logout_dialog),
logout_dialog->default_response);
gtk_window_set_screen (GTK_WINDOW (logout_dialog), screen);
return GTK_WIDGET (logout_dialog);
}
GtkWidget *
gsm_get_shutdown_dialog (GdkScreen *screen,
guint32 activate_time)
{
return gsm_get_dialog (GSM_DIALOG_LOGOUT_TYPE_SHUTDOWN,
screen,
activate_time);
}
GtkWidget *
gsm_get_logout_dialog (GdkScreen *screen,
guint32 activate_time)
{
return gsm_get_dialog (GSM_DIALOG_LOGOUT_TYPE_LOGOUT,
screen,
activate_time);
}
|