2012-05-20 12:30:14 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
const AccountsService = imports.gi.AccountsService;
|
2013-07-16 07:31:22 -04:00
|
|
|
const Atk = imports.gi.Atk;
|
2012-05-20 12:30:14 -04:00
|
|
|
const Clutter = imports.gi.Clutter;
|
2012-07-08 11:42:15 -04:00
|
|
|
const Gdm = imports.gi.Gdm;
|
2012-05-20 12:30:14 -04:00
|
|
|
const Gio = imports.gi.Gio;
|
|
|
|
const GLib = imports.gi.GLib;
|
2012-08-20 00:06:50 -04:00
|
|
|
const GnomeDesktop = imports.gi.GnomeDesktop;
|
2012-05-20 12:30:14 -04:00
|
|
|
const Gtk = imports.gi.Gtk;
|
|
|
|
const Lang = imports.lang;
|
2013-08-14 09:47:27 -04:00
|
|
|
const Meta = imports.gi.Meta;
|
2012-05-20 12:30:14 -04:00
|
|
|
const Signals = imports.signals;
|
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
const St = imports.gi.St;
|
|
|
|
|
2013-07-16 07:31:22 -04:00
|
|
|
const Layout = imports.ui.layout;
|
2012-05-20 12:30:14 -04:00
|
|
|
const Main = imports.ui.main;
|
2012-11-18 16:49:54 -05:00
|
|
|
const Panel = imports.ui.panel;
|
2012-05-20 12:30:14 -04:00
|
|
|
const Tweener = imports.ui.tweener;
|
2013-02-17 20:54:46 -05:00
|
|
|
const UserWidget = imports.ui.userWidget;
|
2012-05-20 12:30:14 -04:00
|
|
|
|
2013-07-23 20:37:42 -04:00
|
|
|
const AuthPrompt = imports.gdm.authPrompt;
|
2012-05-20 12:30:14 -04:00
|
|
|
const Batch = imports.gdm.batch;
|
|
|
|
const GdmUtil = imports.gdm.util;
|
2012-11-18 16:49:54 -05:00
|
|
|
const LoginDialog = imports.gdm.loginDialog;
|
2012-05-20 12:30:14 -04:00
|
|
|
|
2012-08-16 15:24:53 -04:00
|
|
|
// The timeout before going back automatically to the lock screen (in seconds)
|
|
|
|
const IDLE_TIMEOUT = 2 * 60;
|
|
|
|
|
2017-07-18 13:41:25 -04:00
|
|
|
var UnlockDialog = new Lang.Class({
|
2012-05-20 12:30:14 -04:00
|
|
|
Name: 'UnlockDialog',
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_init(parentActor) {
|
2013-07-16 07:31:22 -04:00
|
|
|
this.actor = new St.Widget({ accessible_role: Atk.Role.WINDOW,
|
|
|
|
style_class: 'login-dialog',
|
2013-08-26 15:43:27 -04:00
|
|
|
layout_manager: new Clutter.BoxLayout(),
|
2013-07-16 07:31:22 -04:00
|
|
|
visible: false });
|
|
|
|
|
|
|
|
this.actor.add_constraint(new Layout.MonitorConstraint({ primary: true }));
|
|
|
|
parentActor.add_child(this.actor);
|
2012-05-20 12:30:14 -04:00
|
|
|
|
|
|
|
this._userManager = AccountsService.UserManager.get_default();
|
|
|
|
this._userName = GLib.get_user_name();
|
|
|
|
this._user = this._userManager.get_user(this._userName);
|
|
|
|
|
2013-08-26 15:43:27 -04:00
|
|
|
this._promptBox = new St.BoxLayout({ vertical: true,
|
|
|
|
x_align: Clutter.ActorAlign.CENTER,
|
|
|
|
y_align: Clutter.ActorAlign.CENTER,
|
|
|
|
x_expand: true,
|
|
|
|
y_expand: true });
|
2013-07-16 07:31:22 -04:00
|
|
|
this.actor.add_child(this._promptBox);
|
2012-05-20 12:30:14 -04:00
|
|
|
|
2013-07-22 11:07:35 -04:00
|
|
|
this._authPrompt = new AuthPrompt.AuthPrompt(new Gdm.Client(), AuthPrompt.AuthPromptMode.UNLOCK_ONLY);
|
2017-12-01 19:27:35 -05:00
|
|
|
this._authPrompt.connect('failed', this._fail.bind(this));
|
|
|
|
this._authPrompt.connect('cancelled', this._fail.bind(this));
|
|
|
|
this._authPrompt.connect('reset', this._onReset.bind(this));
|
2013-07-16 07:31:22 -04:00
|
|
|
this._authPrompt.setPasswordChar('\u25cf');
|
|
|
|
this._authPrompt.nextButton.label = _("Unlock");
|
2012-08-07 10:49:22 -04:00
|
|
|
|
2013-07-16 07:31:22 -04:00
|
|
|
this._promptBox.add_child(this._authPrompt.actor);
|
2012-05-20 12:30:14 -04:00
|
|
|
|
2012-10-24 11:53:19 -04:00
|
|
|
this.allowCancel = false;
|
2012-08-07 11:38:12 -04:00
|
|
|
|
2014-06-24 15:17:09 -04:00
|
|
|
let screenSaverSettings = new Gio.Settings({ schema_id: 'org.gnome.desktop.screensaver' });
|
2013-01-02 19:02:13 -05:00
|
|
|
if (screenSaverSettings.get_boolean('user-switch-enabled')) {
|
|
|
|
let otherUserLabel = new St.Label({ text: _("Log in as another user"),
|
|
|
|
style_class: 'login-dialog-not-listed-label' });
|
|
|
|
this._otherUserButton = new St.Button({ style_class: 'login-dialog-not-listed-button',
|
|
|
|
can_focus: true,
|
|
|
|
child: otherUserLabel,
|
|
|
|
reactive: true,
|
|
|
|
x_align: St.Align.START,
|
2013-12-11 15:36:49 -05:00
|
|
|
x_fill: false });
|
2017-12-01 19:27:35 -05:00
|
|
|
this._otherUserButton.connect('clicked', this._otherUserClicked.bind(this));
|
2013-07-16 07:31:22 -04:00
|
|
|
this._promptBox.add_child(this._otherUserButton);
|
2013-01-02 19:02:13 -05:00
|
|
|
} else {
|
|
|
|
this._otherUserButton = null;
|
|
|
|
}
|
2012-05-26 11:04:25 -04:00
|
|
|
|
2013-07-28 17:49:50 -04:00
|
|
|
this._authPrompt.reset();
|
2012-11-18 16:36:17 -05:00
|
|
|
this._updateSensitivity(true);
|
|
|
|
|
2013-07-16 07:31:22 -04:00
|
|
|
Main.ctrlAltTabManager.addGroup(this.actor, _("Unlock Window"), 'dialog-password-symbolic');
|
2012-08-10 23:53:59 -04:00
|
|
|
|
2013-08-14 09:47:27 -04:00
|
|
|
this._idleMonitor = Meta.IdleMonitor.get_core();
|
2017-12-01 19:27:35 -05:00
|
|
|
this._idleWatchId = this._idleMonitor.add_idle_watch(IDLE_TIMEOUT * 1000, this._escape.bind(this));
|
2012-05-20 12:30:14 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_updateSensitivity(sensitive) {
|
2013-07-16 07:31:22 -04:00
|
|
|
this._authPrompt.updateSensitivity(sensitive);
|
|
|
|
|
2013-01-02 19:02:13 -05:00
|
|
|
if (this._otherUserButton) {
|
|
|
|
this._otherUserButton.reactive = sensitive;
|
|
|
|
this._otherUserButton.can_focus = sensitive;
|
|
|
|
}
|
2012-11-01 11:19:17 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_fail() {
|
2013-07-22 11:07:35 -04:00
|
|
|
this.emit('failed');
|
2012-10-03 17:15:41 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onReset(authPrompt, beginRequest) {
|
2013-07-28 17:49:50 -04:00
|
|
|
let userName;
|
|
|
|
if (beginRequest == AuthPrompt.BeginRequestType.PROVIDE_USERNAME) {
|
|
|
|
this._authPrompt.setUser(this._user);
|
|
|
|
userName = this._userName;
|
|
|
|
} else {
|
|
|
|
userName = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._authPrompt.begin({ userName: userName });
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_escape() {
|
2013-07-28 16:06:04 -04:00
|
|
|
if (this.allowCancel)
|
2013-07-22 11:07:35 -04:00
|
|
|
this._authPrompt.cancel();
|
2012-08-03 13:26:30 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_otherUserClicked(button, event) {
|
2012-08-14 11:49:46 -04:00
|
|
|
Gdm.goto_login_session_sync(null);
|
2012-05-20 12:30:14 -04:00
|
|
|
|
2013-07-22 11:07:35 -04:00
|
|
|
this._authPrompt.cancel();
|
2012-05-20 12:30:14 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
destroy() {
|
2013-07-22 11:07:35 -04:00
|
|
|
this.popModal();
|
2013-07-16 07:31:22 -04:00
|
|
|
this.actor.destroy();
|
2012-08-16 15:24:53 -04:00
|
|
|
|
|
|
|
if (this._idleWatchId) {
|
|
|
|
this._idleMonitor.remove_watch(this._idleWatchId);
|
|
|
|
this._idleWatchId = 0;
|
|
|
|
}
|
2012-05-20 12:30:14 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
cancel() {
|
2013-07-22 11:07:35 -04:00
|
|
|
this._authPrompt.cancel();
|
2012-05-20 12:30:14 -04:00
|
|
|
|
|
|
|
this.destroy();
|
|
|
|
},
|
2013-03-05 00:55:54 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
addCharacter(unichar) {
|
2013-07-16 07:31:22 -04:00
|
|
|
this._authPrompt.addCharacter(unichar);
|
2013-03-05 00:55:54 -05:00
|
|
|
},
|
2013-07-18 08:58:58 -04:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
finish(onComplete) {
|
2013-07-22 11:07:35 -04:00
|
|
|
this._authPrompt.finish(onComplete);
|
2013-07-16 07:31:22 -04:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
open(timestamp) {
|
2013-07-16 07:31:22 -04:00
|
|
|
this.actor.show();
|
|
|
|
|
|
|
|
if (this._isModal)
|
|
|
|
return true;
|
2013-07-18 08:58:58 -04:00
|
|
|
|
2013-07-16 07:31:22 -04:00
|
|
|
if (!Main.pushModal(this.actor, { timestamp: timestamp,
|
2014-12-11 09:35:40 -05:00
|
|
|
actionMode: Shell.ActionMode.UNLOCK_SCREEN }))
|
2013-07-16 07:31:22 -04:00
|
|
|
return false;
|
|
|
|
|
|
|
|
this._isModal = true;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
popModal(timestamp) {
|
2013-07-16 07:31:22 -04:00
|
|
|
if (this._isModal) {
|
|
|
|
Main.popModal(this.actor, timestamp);
|
|
|
|
this._isModal = false;
|
|
|
|
}
|
2013-07-18 08:58:58 -04:00
|
|
|
}
|
2012-05-20 12:30:14 -04:00
|
|
|
});
|
2013-07-16 07:31:22 -04:00
|
|
|
Signals.addSignalMethods(UnlockDialog.prototype);
|