2011-09-28 09:16:26 -04:00
|
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2019-01-31 09:07:06 -05:00
|
|
|
|
/* exported ShellMountOperation, GnomeShellMountOpHandler */
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2019-05-23 16:45:44 -04:00
|
|
|
|
const { Clutter, Gio, GLib, GObject, Pango, Shell, St } = imports.gi;
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2019-04-06 11:39:29 -04:00
|
|
|
|
const Animation = imports.ui.animation;
|
2012-06-19 18:12:11 -04:00
|
|
|
|
const CheckBox = imports.ui.checkBox;
|
2017-07-15 00:03:55 -04:00
|
|
|
|
const Dialog = imports.ui.dialog;
|
2011-07-12 11:29:49 -04:00
|
|
|
|
const Main = imports.ui.main;
|
|
|
|
|
const MessageTray = imports.ui.messageTray;
|
2011-06-22 16:43:16 -04:00
|
|
|
|
const ModalDialog = imports.ui.modalDialog;
|
2011-07-12 11:29:49 -04:00
|
|
|
|
const Params = imports.misc.params;
|
2012-06-19 18:12:11 -04:00
|
|
|
|
const ShellEntry = imports.ui.shellEntry;
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
|
const { loadInterfaceXML } = imports.misc.fileUtils;
|
|
|
|
|
|
2017-07-18 13:47:27 -04:00
|
|
|
|
var LIST_ITEM_ICON_SIZE = 48;
|
2019-04-06 11:39:29 -04:00
|
|
|
|
var WORK_SPINNER_ICON_SIZE = 16;
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2012-11-15 15:57:15 -05:00
|
|
|
|
const REMEMBER_MOUNT_PASSWORD_KEY = 'remember-mount-password';
|
|
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
|
/* ------ Common Utils ------- */
|
|
|
|
|
function _setButtonsForChoices(dialog, choices) {
|
|
|
|
|
let buttons = [];
|
|
|
|
|
|
|
|
|
|
for (let idx = 0; idx < choices.length; idx++) {
|
|
|
|
|
let button = idx;
|
2019-02-12 09:02:09 -05:00
|
|
|
|
buttons.unshift({
|
|
|
|
|
label: choices[idx],
|
|
|
|
|
action: () => dialog.emit('response', button),
|
|
|
|
|
});
|
2011-07-12 11:44:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dialog.setButtons(buttons);
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-15 00:03:55 -04:00
|
|
|
|
function _setLabelsForMessage(content, message) {
|
2011-07-12 11:44:08 -04:00
|
|
|
|
let labels = message.split('\n');
|
|
|
|
|
|
2017-07-15 00:03:55 -04:00
|
|
|
|
content.title = labels.shift();
|
|
|
|
|
content.body = labels.join('\n');
|
2011-07-12 11:44:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* -------------------------------------------------------- */
|
|
|
|
|
|
2019-07-16 05:24:13 -04:00
|
|
|
|
var ListItem = GObject.registerClass({
|
2019-08-20 17:43:54 -04:00
|
|
|
|
Signals: { 'activate': {} },
|
2019-07-16 05:24:13 -04:00
|
|
|
|
}, class ListItem extends St.Button {
|
|
|
|
|
_init(app) {
|
2019-01-28 20:27:05 -05:00
|
|
|
|
let layout = new St.BoxLayout({ vertical: false });
|
2019-07-16 05:24:13 -04:00
|
|
|
|
super._init({
|
|
|
|
|
style_class: 'mount-dialog-app-list-item',
|
|
|
|
|
can_focus: true,
|
|
|
|
|
child: layout,
|
|
|
|
|
reactive: true,
|
|
|
|
|
});
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._app = app;
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
|
|
|
|
this._icon = this._app.create_icon_texture(LIST_ITEM_ICON_SIZE);
|
|
|
|
|
|
2017-07-15 02:53:34 -04:00
|
|
|
|
let iconBin = new St.Bin({ style_class: 'mount-dialog-app-list-item-icon',
|
2011-06-22 16:43:16 -04:00
|
|
|
|
child: this._icon });
|
|
|
|
|
layout.add(iconBin);
|
|
|
|
|
|
2019-10-17 17:40:24 -04:00
|
|
|
|
this._nameLabel = new St.Label({
|
|
|
|
|
text: this._app.get_name(),
|
|
|
|
|
style_class: 'mount-dialog-app-list-item-name',
|
|
|
|
|
y_align: Clutter.ActorAlign.CENTER,
|
|
|
|
|
});
|
|
|
|
|
let labelBin = new St.Bin({ child: this._nameLabel });
|
2011-06-22 16:43:16 -04:00
|
|
|
|
layout.add(labelBin);
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2019-09-10 01:42:48 -04:00
|
|
|
|
vfunc_clicked() {
|
2011-06-22 16:43:16 -04:00
|
|
|
|
this.emit('activate');
|
2011-08-11 05:35:23 -04:00
|
|
|
|
this._app.activate();
|
2011-06-22 16:43:16 -04:00
|
|
|
|
}
|
2019-07-16 05:24:13 -04:00
|
|
|
|
});
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 21:19:44 -04:00
|
|
|
|
var ShellMountOperation = class {
|
|
|
|
|
constructor(source, params) {
|
2012-06-19 20:22:26 -04:00
|
|
|
|
params = Params.parse(params, { existingDialog: null });
|
2011-07-12 11:29:49 -04:00
|
|
|
|
|
2011-07-12 11:44:08 -04:00
|
|
|
|
this._dialog = null;
|
2012-06-19 20:22:26 -04:00
|
|
|
|
this._dialogId = 0;
|
|
|
|
|
this._existingDialog = params.existingDialog;
|
2011-06-22 16:43:16 -04:00
|
|
|
|
this._processesDialog = null;
|
|
|
|
|
|
|
|
|
|
this.mountOp = new Shell.MountOperation();
|
|
|
|
|
|
|
|
|
|
this.mountOp.connect('ask-question',
|
2017-12-01 19:27:35 -05:00
|
|
|
|
this._onAskQuestion.bind(this));
|
2011-06-22 16:43:16 -04:00
|
|
|
|
this.mountOp.connect('ask-password',
|
2017-12-01 19:27:35 -05:00
|
|
|
|
this._onAskPassword.bind(this));
|
2011-06-22 16:43:16 -04:00
|
|
|
|
this.mountOp.connect('show-processes-2',
|
2017-12-01 19:27:35 -05:00
|
|
|
|
this._onShowProcesses2.bind(this));
|
2011-06-22 16:43:16 -04:00
|
|
|
|
this.mountOp.connect('aborted',
|
2017-12-01 19:27:35 -05:00
|
|
|
|
this.close.bind(this));
|
2012-07-09 21:58:12 -04:00
|
|
|
|
this.mountOp.connect('show-unmount-progress',
|
2017-12-01 19:27:35 -05:00
|
|
|
|
this._onShowUnmountProgress.bind(this));
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2012-06-19 16:31:24 -04:00
|
|
|
|
this._gicon = source.get_icon();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_closeExistingDialog() {
|
2012-06-19 20:22:26 -04:00
|
|
|
|
if (!this._existingDialog)
|
|
|
|
|
return;
|
|
|
|
|
|
2012-06-20 16:12:40 -04:00
|
|
|
|
this._existingDialog.close();
|
2012-06-19 20:22:26 -04:00
|
|
|
|
this._existingDialog = null;
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-19 20:22:26 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_onAskQuestion(op, message, choices) {
|
2012-06-19 20:22:26 -04:00
|
|
|
|
this._closeExistingDialog();
|
2012-06-19 16:31:24 -04:00
|
|
|
|
this._dialog = new ShellMountQuestionDialog(this._gicon);
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
|
this._dialogId = this._dialog.connect('response',
|
|
|
|
|
(object, choice) => {
|
2012-06-20 16:14:02 -04:00
|
|
|
|
this.mountOp.set_choice(choice);
|
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.HANDLED);
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
2012-06-20 16:14:02 -04:00
|
|
|
|
this.close();
|
2017-10-30 20:38:18 -04:00
|
|
|
|
});
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
|
|
|
|
this._dialog.update(message, choices);
|
2012-06-20 16:12:40 -04:00
|
|
|
|
this._dialog.open();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_onAskPassword(op, message, defaultUser, defaultDomain, flags) {
|
2012-06-19 20:22:26 -04:00
|
|
|
|
if (this._existingDialog) {
|
|
|
|
|
this._dialog = this._existingDialog;
|
|
|
|
|
this._dialog.reaskPassword();
|
|
|
|
|
} else {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
this._dialog = new ShellMountPasswordDialog(message, this._gicon, flags);
|
2012-06-19 20:22:26 -04:00
|
|
|
|
}
|
2012-06-19 18:12:11 -04:00
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
|
this._dialogId = this._dialog.connect('response',
|
2019-04-07 17:35:07 -04:00
|
|
|
|
(object, choice, password, remember, hiddenVolume, systemVolume, pim) => {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
if (choice == -1) {
|
2012-06-19 18:12:11 -04:00
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.ABORTED);
|
|
|
|
|
} else {
|
|
|
|
|
if (remember)
|
|
|
|
|
this.mountOp.set_password_save(Gio.PasswordSave.PERMANENTLY);
|
|
|
|
|
else
|
|
|
|
|
this.mountOp.set_password_save(Gio.PasswordSave.NEVER);
|
|
|
|
|
|
|
|
|
|
this.mountOp.set_password(password);
|
2019-04-07 17:35:07 -04:00
|
|
|
|
this.mountOp.set_is_tcrypt_hidden_volume(hiddenVolume);
|
|
|
|
|
this.mountOp.set_is_tcrypt_system_volume(systemVolume);
|
|
|
|
|
this.mountOp.set_pim(pim);
|
2012-06-19 18:12:11 -04:00
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.HANDLED);
|
|
|
|
|
}
|
2017-10-30 20:38:18 -04:00
|
|
|
|
});
|
2012-06-20 16:12:40 -04:00
|
|
|
|
this._dialog.open();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2019-01-31 09:08:10 -05:00
|
|
|
|
close(_op) {
|
2012-06-19 20:22:26 -04:00
|
|
|
|
this._closeExistingDialog();
|
|
|
|
|
this._processesDialog = null;
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
2012-06-19 16:41:39 -04:00
|
|
|
|
if (this._dialog) {
|
2012-06-20 16:12:40 -04:00
|
|
|
|
this._dialog.close();
|
2012-06-19 16:41:39 -04:00
|
|
|
|
this._dialog = null;
|
|
|
|
|
}
|
2012-07-09 21:58:12 -04:00
|
|
|
|
|
|
|
|
|
if (this._notifier) {
|
|
|
|
|
this._notifier.done();
|
|
|
|
|
this._notifier = null;
|
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_onShowProcesses2(op) {
|
2012-06-19 20:22:26 -04:00
|
|
|
|
this._closeExistingDialog();
|
|
|
|
|
|
2011-06-22 16:43:16 -04:00
|
|
|
|
let processes = op.get_show_processes_pids();
|
|
|
|
|
let choices = op.get_show_processes_choices();
|
|
|
|
|
let message = op.get_show_processes_message();
|
|
|
|
|
|
|
|
|
|
if (!this._processesDialog) {
|
2012-06-19 16:31:24 -04:00
|
|
|
|
this._processesDialog = new ShellProcessesDialog(this._gicon);
|
2011-07-12 11:44:08 -04:00
|
|
|
|
this._dialog = this._processesDialog;
|
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
|
this._dialogId = this._processesDialog.connect('response',
|
|
|
|
|
(object, choice) => {
|
2012-06-20 16:14:02 -04:00
|
|
|
|
if (choice == -1) {
|
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.ABORTED);
|
|
|
|
|
} else {
|
|
|
|
|
this.mountOp.set_choice(choice);
|
|
|
|
|
this.mountOp.reply(Gio.MountOperationResult.HANDLED);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.close();
|
2017-10-30 20:38:18 -04:00
|
|
|
|
});
|
2012-06-20 16:12:40 -04:00
|
|
|
|
this._processesDialog.open();
|
2011-06-22 16:43:16 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._processesDialog.update(message, processes, choices);
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-19 20:22:26 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_onShowUnmountProgress(op, message, timeLeft, bytesLeft) {
|
2012-07-09 21:58:12 -04:00
|
|
|
|
if (!this._notifier)
|
|
|
|
|
this._notifier = new ShellUnmountNotifier();
|
2019-09-12 11:26:08 -04:00
|
|
|
|
|
2012-07-09 21:58:12 -04:00
|
|
|
|
if (bytesLeft == 0)
|
|
|
|
|
this._notifier.done(message);
|
|
|
|
|
else
|
|
|
|
|
this._notifier.show(message);
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-07-09 21:58:12 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
borrowDialog() {
|
2012-06-19 20:22:26 -04:00
|
|
|
|
if (this._dialogId != 0) {
|
|
|
|
|
this._dialog.disconnect(this._dialogId);
|
|
|
|
|
this._dialogId = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return this._dialog;
|
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
|
};
|
2012-07-09 21:58:12 -04:00
|
|
|
|
|
2019-05-13 17:32:31 -04:00
|
|
|
|
var ShellUnmountNotifier = GObject.registerClass(
|
|
|
|
|
class ShellUnmountNotifier extends MessageTray.Source {
|
|
|
|
|
_init() {
|
|
|
|
|
super._init('', 'media-removable');
|
2012-07-09 21:58:12 -04:00
|
|
|
|
|
|
|
|
|
this._notification = null;
|
|
|
|
|
Main.messageTray.add(this);
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-07-09 21:58:12 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
show(message) {
|
2012-07-09 21:58:12 -04:00
|
|
|
|
let [header, text] = message.split('\n', 2);
|
|
|
|
|
|
|
|
|
|
if (!this._notification) {
|
|
|
|
|
this._notification = new MessageTray.Notification(this, header, text);
|
|
|
|
|
this._notification.setTransient(true);
|
|
|
|
|
this._notification.setUrgency(MessageTray.Urgency.CRITICAL);
|
|
|
|
|
} else {
|
|
|
|
|
this._notification.update(header, text);
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-13 17:32:31 -04:00
|
|
|
|
this.showNotification(this._notification);
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-07-09 21:58:12 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
done(message) {
|
2012-07-09 21:58:12 -04:00
|
|
|
|
if (this._notification) {
|
|
|
|
|
this._notification.destroy();
|
|
|
|
|
this._notification = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (message) {
|
|
|
|
|
let notification = new MessageTray.Notification(this, message, null);
|
|
|
|
|
notification.setTransient(true);
|
|
|
|
|
|
2019-05-13 17:32:31 -04:00
|
|
|
|
this.showNotification(notification);
|
2012-07-09 21:58:12 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-05-13 17:32:31 -04:00
|
|
|
|
});
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
2019-05-23 16:45:44 -04:00
|
|
|
|
var ShellMountQuestionDialog = GObject.registerClass({
|
2019-08-20 17:43:54 -04:00
|
|
|
|
Signals: { 'response': { param_types: [GObject.TYPE_INT] } },
|
2019-05-23 16:45:44 -04:00
|
|
|
|
}, class ShellMountQuestionDialog extends ModalDialog.ModalDialog {
|
|
|
|
|
_init(icon) {
|
|
|
|
|
super._init({ styleClass: 'mount-dialog' });
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
2017-07-15 00:03:55 -04:00
|
|
|
|
this._content = new Dialog.MessageDialogContent({ icon });
|
2019-10-21 14:44:00 -04:00
|
|
|
|
this.contentLayout.add_child(this._content);
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-07-12 11:44:08 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
update(message, choices) {
|
2017-07-15 00:03:55 -04:00
|
|
|
|
_setLabelsForMessage(this._content, message);
|
2011-07-12 11:44:08 -04:00
|
|
|
|
_setButtonsForChoices(this, choices);
|
|
|
|
|
}
|
2019-05-23 16:45:44 -04:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var ShellMountPasswordDialog = GObject.registerClass({
|
|
|
|
|
Signals: { 'response': { param_types: [GObject.TYPE_INT,
|
|
|
|
|
GObject.TYPE_STRING,
|
|
|
|
|
GObject.TYPE_BOOLEAN,
|
|
|
|
|
GObject.TYPE_BOOLEAN,
|
|
|
|
|
GObject.TYPE_BOOLEAN,
|
2019-08-20 17:43:54 -04:00
|
|
|
|
GObject.TYPE_UINT] } },
|
2019-05-23 16:45:44 -04:00
|
|
|
|
}, class ShellMountPasswordDialog extends ModalDialog.ModalDialog {
|
|
|
|
|
_init(message, icon, flags) {
|
2011-07-12 11:29:49 -04:00
|
|
|
|
let strings = message.split('\n');
|
2017-07-15 00:03:55 -04:00
|
|
|
|
let title = strings.shift() || null;
|
|
|
|
|
let body = strings.shift() || null;
|
2019-05-23 16:45:44 -04:00
|
|
|
|
super._init({ styleClass: 'prompt-dialog' });
|
2012-06-19 18:12:11 -04:00
|
|
|
|
|
2019-04-07 17:35:07 -04:00
|
|
|
|
let disksApp = Shell.AppSystem.get_default().lookup_app('org.gnome.DiskUtility.desktop');
|
|
|
|
|
|
2017-07-15 00:03:55 -04:00
|
|
|
|
let content = new Dialog.MessageDialogContent({ icon, title, body });
|
|
|
|
|
this.contentLayout.add_actor(content);
|
2019-04-07 17:35:07 -04:00
|
|
|
|
content._body.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
2011-07-12 11:29:49 -04:00
|
|
|
|
|
2019-04-07 17:33:34 -04:00
|
|
|
|
let layout = new Clutter.GridLayout({ orientation: Clutter.Orientation.VERTICAL });
|
|
|
|
|
let grid = new St.Widget({ style_class: 'prompt-dialog-grid',
|
|
|
|
|
layout_manager: layout });
|
|
|
|
|
layout.hookup_style(grid);
|
|
|
|
|
let rtl = grid.get_text_direction() === Clutter.TextDirection.RTL;
|
2011-07-12 11:29:49 -04:00
|
|
|
|
|
2019-04-07 17:35:07 -04:00
|
|
|
|
if (flags & Gio.AskPasswordFlags.TCRYPT) {
|
2019-10-21 14:44:00 -04:00
|
|
|
|
this._keyfilesLabel = new St.Label({
|
|
|
|
|
style_class: 'prompt-dialog-keyfiles-label',
|
|
|
|
|
visible: false,
|
|
|
|
|
y_align: Clutter.ActorAlign.CENTER,
|
|
|
|
|
});
|
2019-04-07 17:35:07 -04:00
|
|
|
|
|
|
|
|
|
this._hiddenVolume = new CheckBox.CheckBox(_("Hidden Volume"));
|
2019-07-16 05:24:13 -04:00
|
|
|
|
content.messageBox.add(this._hiddenVolume);
|
2019-04-07 17:35:07 -04:00
|
|
|
|
|
|
|
|
|
this._systemVolume = new CheckBox.CheckBox(_("Windows System Volume"));
|
2019-07-16 05:24:13 -04:00
|
|
|
|
content.messageBox.add(this._systemVolume);
|
2019-04-07 17:35:07 -04:00
|
|
|
|
|
|
|
|
|
this._keyfilesCheckbox = new CheckBox.CheckBox(_("Uses Keyfiles"));
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._keyfilesCheckbox.connect("clicked", this._onKeyfilesCheckboxClicked.bind(this));
|
|
|
|
|
content.messageBox.add(this._keyfilesCheckbox);
|
2019-04-07 17:35:07 -04:00
|
|
|
|
|
|
|
|
|
this._keyfilesLabel.clutter_text.set_markup(
|
|
|
|
|
/* Translators: %s is the Disks application */
|
|
|
|
|
_("To unlock a volume that uses keyfiles, use the <i>%s</i> utility instead.").format(disksApp.get_name())
|
|
|
|
|
);
|
|
|
|
|
this._keyfilesLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
|
|
|
this._keyfilesLabel.clutter_text.line_wrap = true;
|
2019-10-21 14:44:00 -04:00
|
|
|
|
content.messageBox.add_child(this._keyfilesLabel);
|
2019-04-07 17:35:07 -04:00
|
|
|
|
|
|
|
|
|
this._pimLabel = new St.Label({ style_class: 'prompt-dialog-password-label',
|
|
|
|
|
text: _("PIM Number"),
|
|
|
|
|
y_align: Clutter.ActorAlign.CENTER });
|
2019-12-12 04:32:53 -05:00
|
|
|
|
this._pimEntry = new St.PasswordEntry({
|
|
|
|
|
style_class: 'prompt-dialog-password-entry',
|
|
|
|
|
can_focus: true,
|
|
|
|
|
x_expand: true,
|
|
|
|
|
});
|
2019-04-07 17:35:07 -04:00
|
|
|
|
this._pimEntry.clutter_text.connect('activate', this._onEntryActivate.bind(this));
|
2019-12-12 04:32:53 -05:00
|
|
|
|
ShellEntry.addContextMenu(this._pimEntry);
|
2019-04-07 17:35:07 -04:00
|
|
|
|
|
|
|
|
|
if (rtl) {
|
|
|
|
|
layout.attach(this._pimEntry, 0, 0, 1, 1);
|
|
|
|
|
layout.attach(this._pimLabel, 1, 0, 1, 1);
|
|
|
|
|
} else {
|
|
|
|
|
layout.attach(this._pimLabel, 0, 0, 1, 1);
|
|
|
|
|
layout.attach(this._pimEntry, 1, 0, 1, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._pimErrorMessageLabel = new St.Label({ style_class: 'prompt-dialog-password-entry',
|
|
|
|
|
text: _("The PIM must be a number or empty."),
|
|
|
|
|
visible: false });
|
|
|
|
|
layout.attach(this._pimErrorMessageLabel, 0, 2, 2, 1);
|
|
|
|
|
} else {
|
|
|
|
|
this._hiddenVolume = null;
|
|
|
|
|
this._systemVolume = null;
|
|
|
|
|
this._pimEntry = null;
|
|
|
|
|
this._pimErrorMessageLabel = null;
|
|
|
|
|
}
|
|
|
|
|
|
2019-04-07 17:33:34 -04:00
|
|
|
|
this._passwordLabel = new St.Label({ style_class: 'prompt-dialog-password-label',
|
|
|
|
|
text: _("Password"),
|
|
|
|
|
y_align: Clutter.ActorAlign.CENTER });
|
2019-12-12 04:32:53 -05:00
|
|
|
|
this._passwordEntry = new St.PasswordEntry({
|
|
|
|
|
style_class: 'prompt-dialog-password-entry',
|
|
|
|
|
can_focus: true,
|
|
|
|
|
x_expand: true,
|
|
|
|
|
});
|
2017-12-01 19:27:35 -05:00
|
|
|
|
this._passwordEntry.clutter_text.connect('activate', this._onEntryActivate.bind(this));
|
2019-12-12 04:32:53 -05:00
|
|
|
|
ShellEntry.addContextMenu(this._passwordEntry);
|
2012-06-19 18:12:11 -04:00
|
|
|
|
this.setInitialKeyFocus(this._passwordEntry);
|
2019-11-18 15:18:29 -05:00
|
|
|
|
this._workSpinner = new Animation.Spinner(WORK_SPINNER_ICON_SIZE, {
|
|
|
|
|
animate: true,
|
|
|
|
|
});
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._passwordEntry.secondary_icon = this._workSpinner;
|
2011-07-12 11:29:49 -04:00
|
|
|
|
|
2019-04-07 17:33:34 -04:00
|
|
|
|
if (rtl) {
|
2019-04-07 17:35:07 -04:00
|
|
|
|
layout.attach(this._passwordEntry, 0, 1, 1, 1);
|
|
|
|
|
layout.attach(this._passwordLabel, 1, 1, 1, 1);
|
2019-04-07 17:33:34 -04:00
|
|
|
|
} else {
|
2019-04-07 17:35:07 -04:00
|
|
|
|
layout.attach(this._passwordLabel, 0, 1, 1, 1);
|
|
|
|
|
layout.attach(this._passwordEntry, 1, 1, 1, 1);
|
2019-04-07 17:33:34 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
content.messageBox.add(grid);
|
|
|
|
|
|
2012-06-19 20:22:26 -04:00
|
|
|
|
this._errorMessageLabel = new St.Label({ style_class: 'prompt-dialog-error-label',
|
2016-09-29 18:00:13 -04:00
|
|
|
|
text: _("Sorry, that didn’t work. Please try again.") });
|
2012-06-19 20:22:26 -04:00
|
|
|
|
this._errorMessageLabel.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
|
|
|
this._errorMessageLabel.clutter_text.line_wrap = true;
|
|
|
|
|
this._errorMessageLabel.hide();
|
2017-07-15 00:03:55 -04:00
|
|
|
|
content.messageBox.add(this._errorMessageLabel);
|
2011-07-12 11:29:49 -04:00
|
|
|
|
|
2012-06-20 17:23:34 -04:00
|
|
|
|
if (flags & Gio.AskPasswordFlags.SAVING_SUPPORTED) {
|
2019-04-07 17:35:07 -04:00
|
|
|
|
this._rememberChoice = new CheckBox.CheckBox(_("Remember Password"));
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._rememberChoice.checked =
|
2012-11-15 15:57:15 -05:00
|
|
|
|
global.settings.get_boolean(REMEMBER_MOUNT_PASSWORD_KEY);
|
2019-07-16 05:24:13 -04:00
|
|
|
|
content.messageBox.add(this._rememberChoice);
|
2012-06-20 17:23:34 -04:00
|
|
|
|
} else {
|
|
|
|
|
this._rememberChoice = null;
|
|
|
|
|
}
|
2011-07-12 11:29:49 -04:00
|
|
|
|
|
2019-02-12 09:02:09 -05:00
|
|
|
|
this._defaultButtons = [{
|
|
|
|
|
label: _("Cancel"),
|
|
|
|
|
action: this._onCancelButton.bind(this),
|
2019-11-05 14:37:28 -05:00
|
|
|
|
key: Clutter.KEY_Escape,
|
2019-02-12 09:02:09 -05:00
|
|
|
|
}, {
|
|
|
|
|
label: _("Unlock"),
|
|
|
|
|
action: this._onUnlockButton.bind(this),
|
|
|
|
|
default: true,
|
|
|
|
|
}];
|
|
|
|
|
|
|
|
|
|
this._usesKeyfilesButtons = [{
|
|
|
|
|
label: _("Cancel"),
|
|
|
|
|
action: this._onCancelButton.bind(this),
|
2019-11-05 14:37:28 -05:00
|
|
|
|
key: Clutter.KEY_Escape,
|
2019-02-12 09:02:09 -05:00
|
|
|
|
}, {
|
|
|
|
|
/* Translators: %s is the Disks application */
|
|
|
|
|
label: _("Open %s").format(disksApp.get_name()),
|
|
|
|
|
action: this._onOpenDisksButton.bind(this),
|
|
|
|
|
default: true,
|
|
|
|
|
}];
|
2019-04-07 17:35:07 -04:00
|
|
|
|
|
|
|
|
|
this.setButtons(this._defaultButtons);
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-07-12 11:29:49 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
reaskPassword() {
|
2012-06-19 20:22:26 -04:00
|
|
|
|
this._passwordEntry.set_text('');
|
|
|
|
|
this._errorMessageLabel.show();
|
2019-04-06 11:39:29 -04:00
|
|
|
|
this._workSpinner.stop();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-19 20:22:26 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_onCancelButton() {
|
2019-05-23 16:45:44 -04:00
|
|
|
|
this.emit('response', -1, '', false, false, false, 0);
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-19 18:12:11 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_onUnlockButton() {
|
2012-06-19 18:12:11 -04:00
|
|
|
|
this._onEntryActivate();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-07-12 11:29:49 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_onEntryActivate() {
|
2019-04-07 17:35:07 -04:00
|
|
|
|
let pim = 0;
|
|
|
|
|
if (this._pimEntry !== null)
|
|
|
|
|
pim = this._pimEntry.get_text();
|
|
|
|
|
if (isNaN(pim)) {
|
|
|
|
|
this._pimEntry.set_text('');
|
|
|
|
|
this._pimErrorMessageLabel.show();
|
|
|
|
|
return;
|
|
|
|
|
} else if (this._pimErrorMessageLabel !== null) {
|
|
|
|
|
this._pimErrorMessageLabel.hide();
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-15 15:57:15 -05:00
|
|
|
|
global.settings.set_boolean(REMEMBER_MOUNT_PASSWORD_KEY,
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._rememberChoice && this._rememberChoice.checked);
|
2019-04-06 11:39:29 -04:00
|
|
|
|
|
|
|
|
|
this._workSpinner.play();
|
2012-06-19 18:12:11 -04:00
|
|
|
|
this.emit('response', 1,
|
|
|
|
|
this._passwordEntry.get_text(),
|
2012-06-20 17:23:34 -04:00
|
|
|
|
this._rememberChoice &&
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._rememberChoice.checked,
|
2019-04-07 17:35:07 -04:00
|
|
|
|
this._hiddenVolume &&
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._hiddenVolume.checked,
|
2019-04-07 17:35:07 -04:00
|
|
|
|
this._systemVolume &&
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._systemVolume.checked,
|
2019-05-23 16:45:44 -04:00
|
|
|
|
parseInt(pim));
|
2019-04-07 17:35:07 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onKeyfilesCheckboxClicked() {
|
2019-07-16 05:24:13 -04:00
|
|
|
|
let useKeyfiles = this._keyfilesCheckbox.checked;
|
2019-04-07 17:35:07 -04:00
|
|
|
|
this._passwordEntry.reactive = !useKeyfiles;
|
|
|
|
|
this._passwordEntry.can_focus = !useKeyfiles;
|
|
|
|
|
this._passwordEntry.clutter_text.editable = !useKeyfiles;
|
|
|
|
|
this._passwordEntry.clutter_text.selectable = !useKeyfiles;
|
|
|
|
|
this._pimEntry.reactive = !useKeyfiles;
|
|
|
|
|
this._pimEntry.can_focus = !useKeyfiles;
|
|
|
|
|
this._pimEntry.clutter_text.editable = !useKeyfiles;
|
|
|
|
|
this._pimEntry.clutter_text.selectable = !useKeyfiles;
|
2019-07-16 05:24:13 -04:00
|
|
|
|
this._rememberChoice.reactive = !useKeyfiles;
|
|
|
|
|
this._rememberChoice.can_focus = !useKeyfiles;
|
2019-04-07 17:35:07 -04:00
|
|
|
|
this._keyfilesLabel.visible = useKeyfiles;
|
|
|
|
|
this.setButtons(useKeyfiles ? this._usesKeyfilesButtons : this._defaultButtons);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onOpenDisksButton() {
|
|
|
|
|
let app = Shell.AppSystem.get_default().lookup_app('org.gnome.DiskUtility.desktop');
|
2019-08-19 20:51:42 -04:00
|
|
|
|
if (app) {
|
2019-04-07 17:35:07 -04:00
|
|
|
|
app.activate();
|
2019-08-19 20:51:42 -04:00
|
|
|
|
} else {
|
2019-04-07 17:35:07 -04:00
|
|
|
|
Main.notifyError(
|
|
|
|
|
/* Translators: %s is the Disks application */
|
|
|
|
|
_("Unable to start %s").format(app.get_name()),
|
|
|
|
|
/* Translators: %s is the Disks application */
|
2019-05-28 13:14:19 -04:00
|
|
|
|
_("Couldn’t find the %s application").format(app.get_name())
|
2019-04-07 17:35:07 -04:00
|
|
|
|
);
|
2019-08-19 20:51:42 -04:00
|
|
|
|
}
|
2019-04-07 17:35:07 -04:00
|
|
|
|
this._onCancelButton();
|
2011-07-12 11:29:49 -04:00
|
|
|
|
}
|
2019-05-23 16:45:44 -04:00
|
|
|
|
});
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2019-05-23 16:45:44 -04:00
|
|
|
|
var ShellProcessesDialog = GObject.registerClass({
|
2019-08-20 17:43:54 -04:00
|
|
|
|
Signals: { 'response': { param_types: [GObject.TYPE_INT] } },
|
2019-05-23 16:45:44 -04:00
|
|
|
|
}, class ShellProcessesDialog extends ModalDialog.ModalDialog {
|
|
|
|
|
_init(icon) {
|
|
|
|
|
super._init({ styleClass: 'mount-dialog' });
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-07-15 00:03:55 -04:00
|
|
|
|
this._content = new Dialog.MessageDialogContent({ icon });
|
2019-10-21 14:44:00 -04:00
|
|
|
|
this.contentLayout.add_child(this._content);
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2019-10-21 14:44:00 -04:00
|
|
|
|
let scrollView = new St.ScrollView({
|
|
|
|
|
style_class: 'mount-dialog-app-list',
|
|
|
|
|
x_expand: true,
|
|
|
|
|
y_expand: true,
|
|
|
|
|
});
|
2018-11-27 07:45:36 -05:00
|
|
|
|
scrollView.set_policy(St.PolicyType.NEVER,
|
|
|
|
|
St.PolicyType.AUTOMATIC);
|
2019-10-21 14:44:00 -04:00
|
|
|
|
this.contentLayout.add_child(scrollView);
|
2011-06-22 16:43:16 -04:00
|
|
|
|
scrollView.hide();
|
|
|
|
|
|
|
|
|
|
this._applicationList = new St.BoxLayout({ vertical: true });
|
2012-07-18 20:15:04 -04:00
|
|
|
|
scrollView.add_actor(this._applicationList);
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
|
this._applicationList.connect('actor-added', () => {
|
|
|
|
|
if (this._applicationList.get_n_children() == 1)
|
|
|
|
|
scrollView.show();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this._applicationList.connect('actor-removed', () => {
|
|
|
|
|
if (this._applicationList.get_n_children() == 0)
|
|
|
|
|
scrollView.hide();
|
|
|
|
|
});
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_setAppsForPids(pids) {
|
2011-06-22 16:43:16 -04:00
|
|
|
|
// remove all the items
|
2012-02-16 13:27:09 -05:00
|
|
|
|
this._applicationList.destroy_all_children();
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
|
pids.forEach(pid => {
|
2011-06-22 16:43:16 -04:00
|
|
|
|
let tracker = Shell.WindowTracker.get_default();
|
|
|
|
|
let app = tracker.get_app_from_pid(pid);
|
|
|
|
|
|
|
|
|
|
if (!app)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
let item = new ListItem(app);
|
2019-10-21 14:44:00 -04:00
|
|
|
|
this._applicationList.add_child(item);
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 20:38:18 -04:00
|
|
|
|
item.connect('activate', () => {
|
|
|
|
|
// use -1 to indicate Cancel
|
|
|
|
|
this.emit('response', -1);
|
|
|
|
|
});
|
|
|
|
|
});
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2011-06-22 16:43:16 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
update(message, processes, choices) {
|
2011-06-22 16:43:16 -04:00
|
|
|
|
this._setAppsForPids(processes);
|
2017-07-15 00:03:55 -04:00
|
|
|
|
_setLabelsForMessage(this._content, message);
|
2011-07-12 11:44:08 -04:00
|
|
|
|
_setButtonsForChoices(this, choices);
|
2011-06-22 16:43:16 -04:00
|
|
|
|
}
|
2019-05-23 16:45:44 -04:00
|
|
|
|
});
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
2018-09-05 20:55:20 -04:00
|
|
|
|
const GnomeShellMountOpIface = loadInterfaceXML('org.Gtk.MountOperationHandler');
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
2017-07-18 13:47:27 -04:00
|
|
|
|
var ShellMountOperationType = {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
NONE: 0,
|
|
|
|
|
ASK_PASSWORD: 1,
|
|
|
|
|
ASK_QUESTION: 2,
|
2019-08-20 17:43:54 -04:00
|
|
|
|
SHOW_PROCESSES: 3,
|
2012-06-20 17:23:34 -04:00
|
|
|
|
};
|
|
|
|
|
|
2017-10-30 21:19:44 -04:00
|
|
|
|
var GnomeShellMountOpHandler = class {
|
|
|
|
|
constructor() {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
this._dbusImpl = Gio.DBusExportedObject.wrapJSObject(GnomeShellMountOpIface, this);
|
|
|
|
|
this._dbusImpl.export(Gio.DBus.session, '/org/gtk/MountOperationHandler');
|
|
|
|
|
Gio.bus_own_name_on_connection(Gio.DBus.session, 'org.gtk.MountOperationHandler',
|
|
|
|
|
Gio.BusNameOwnerFlags.REPLACE, null, null);
|
|
|
|
|
|
|
|
|
|
this._dialog = null;
|
|
|
|
|
this._volumeMonitor = Gio.VolumeMonitor.get();
|
|
|
|
|
|
|
|
|
|
this._ensureEmptyRequest();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_ensureEmptyRequest() {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
this._currentId = null;
|
|
|
|
|
this._currentInvocation = null;
|
|
|
|
|
this._currentType = ShellMountOperationType.NONE;
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_clearCurrentRequest(response, details) {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
if (this._currentInvocation) {
|
|
|
|
|
this._currentInvocation.return_value(
|
|
|
|
|
GLib.Variant.new('(ua{sv})', [response, details]));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._ensureEmptyRequest();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_setCurrentRequest(invocation, id, type) {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
let oldId = this._currentId;
|
|
|
|
|
let oldType = this._currentType;
|
2019-01-29 19:18:24 -05:00
|
|
|
|
let requestId = `${id}@${invocation.get_sender()}`;
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
|
|
|
|
this._clearCurrentRequest(Gio.MountOperationResult.UNHANDLED, {});
|
|
|
|
|
|
|
|
|
|
this._currentInvocation = invocation;
|
|
|
|
|
this._currentId = requestId;
|
|
|
|
|
this._currentType = type;
|
|
|
|
|
|
|
|
|
|
if (this._dialog && (oldId == requestId) && (oldType == type))
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return false;
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_closeDialog() {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
if (this._dialog) {
|
|
|
|
|
this._dialog.close();
|
|
|
|
|
this._dialog = null;
|
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
|
_createGIcon(iconName) {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
let realIconName = iconName ? iconName : 'drive-harddisk';
|
|
|
|
|
return new Gio.ThemedIcon({ name: realIconName,
|
|
|
|
|
use_default_fallbacks: true });
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* AskPassword:
|
2019-10-17 12:41:52 -04:00
|
|
|
|
* @param {Array} params
|
|
|
|
|
* {string} id: an opaque ID identifying the object for which
|
|
|
|
|
* the operation is requested
|
|
|
|
|
* {string} message: the message to display
|
|
|
|
|
* {string} icon_name: the name of an icon to display
|
|
|
|
|
* {string} default_user: the default username for display
|
|
|
|
|
* {string} default_domain: the default domain for display
|
|
|
|
|
* {Gio.AskPasswordFlags} flags: a set of GAskPasswordFlags
|
|
|
|
|
* {Gio.MountOperationResults} response: a GMountOperationResult
|
|
|
|
|
* {Object} response_details: a dictionary containing response details as
|
|
|
|
|
* entered by the user. The dictionary MAY contain the following
|
|
|
|
|
* properties:
|
2012-06-20 17:23:34 -04:00
|
|
|
|
* - "password" -> (s): a password to be used to complete the mount operation
|
|
|
|
|
* - "password_save" -> (u): a GPasswordSave
|
2019-10-17 12:41:52 -04:00
|
|
|
|
* @param {Gio.DBusMethodInvocation} invocation
|
|
|
|
|
* The ID must be unique in the context of the calling process.
|
2012-06-20 17:23:34 -04:00
|
|
|
|
*
|
|
|
|
|
* The dialog will stay visible until clients call the Close() method, or
|
|
|
|
|
* another dialog becomes visible.
|
|
|
|
|
* Calling AskPassword again for the same id will have the effect to clear
|
|
|
|
|
* the existing dialog and update it with a message indicating the previous
|
|
|
|
|
* attempt went wrong.
|
|
|
|
|
*/
|
2017-10-30 20:03:21 -04:00
|
|
|
|
AskPasswordAsync(params, invocation) {
|
2019-01-31 09:08:00 -05:00
|
|
|
|
let [id, message, iconName, defaultUser_, defaultDomain_, flags] = params;
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
|
|
|
|
if (this._setCurrentRequest(invocation, id, ShellMountOperationType.ASK_PASSWORD)) {
|
|
|
|
|
this._dialog.reaskPassword();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._closeDialog();
|
|
|
|
|
|
|
|
|
|
this._dialog = new ShellMountPasswordDialog(message, this._createGIcon(iconName), flags);
|
2017-10-30 20:38:18 -04:00
|
|
|
|
this._dialog.connect('response',
|
2019-04-07 17:35:07 -04:00
|
|
|
|
(object, choice, password, remember, hiddenVolume, systemVolume, pim) => {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
let details = {};
|
|
|
|
|
let response;
|
|
|
|
|
|
|
|
|
|
if (choice == -1) {
|
|
|
|
|
response = Gio.MountOperationResult.ABORTED;
|
|
|
|
|
} else {
|
|
|
|
|
response = Gio.MountOperationResult.HANDLED;
|
|
|
|
|
|
|
|
|
|
let passSave = remember ? Gio.PasswordSave.PERMANENTLY : Gio.PasswordSave.NEVER;
|
|
|
|
|
details['password_save'] = GLib.Variant.new('u', passSave);
|
|
|
|
|
details['password'] = GLib.Variant.new('s', password);
|
2019-04-07 17:35:07 -04:00
|
|
|
|
details['hidden_volume'] = GLib.Variant.new('b', hiddenVolume);
|
|
|
|
|
details['system_volume'] = GLib.Variant.new('b', systemVolume);
|
2019-05-23 16:45:44 -04:00
|
|
|
|
details['pim'] = GLib.Variant.new('u', pim);
|
2012-06-20 17:23:34 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._clearCurrentRequest(response, details);
|
2017-10-30 20:38:18 -04:00
|
|
|
|
});
|
2012-06-20 17:23:34 -04:00
|
|
|
|
this._dialog.open();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* AskQuestion:
|
2019-10-17 12:41:52 -04:00
|
|
|
|
* @param {Array} params - params
|
|
|
|
|
* {string} id: an opaque ID identifying the object for which
|
|
|
|
|
* the operation is requested
|
2012-06-20 17:23:34 -04:00
|
|
|
|
* The ID must be unique in the context of the calling process.
|
2019-10-17 12:41:52 -04:00
|
|
|
|
* {string} message: the message to display
|
|
|
|
|
* {string} icon_name: the name of an icon to display
|
|
|
|
|
* {string[]} choices: an array of choice strings
|
|
|
|
|
* @param {Gio.DBusMethodInvocation} invocation - invocation
|
2012-06-20 17:23:34 -04:00
|
|
|
|
*
|
|
|
|
|
* The dialog will stay visible until clients call the Close() method, or
|
|
|
|
|
* another dialog becomes visible.
|
|
|
|
|
* Calling AskQuestion again for the same id will have the effect to clear
|
|
|
|
|
* update the dialog with the new question.
|
|
|
|
|
*/
|
2017-10-30 20:03:21 -04:00
|
|
|
|
AskQuestionAsync(params, invocation) {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
let [id, message, iconName, choices] = params;
|
|
|
|
|
|
|
|
|
|
if (this._setCurrentRequest(invocation, id, ShellMountOperationType.ASK_QUESTION)) {
|
|
|
|
|
this._dialog.update(message, choices);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._closeDialog();
|
|
|
|
|
|
|
|
|
|
this._dialog = new ShellMountQuestionDialog(this._createGIcon(iconName), message);
|
2017-10-30 20:38:18 -04:00
|
|
|
|
this._dialog.connect('response', (object, choice) => {
|
|
|
|
|
this._clearCurrentRequest(Gio.MountOperationResult.HANDLED,
|
|
|
|
|
{ choice: GLib.Variant.new('i', choice) });
|
|
|
|
|
});
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
|
|
|
|
this._dialog.update(message, choices);
|
|
|
|
|
this._dialog.open();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ShowProcesses:
|
2019-10-17 12:41:52 -04:00
|
|
|
|
* @param {Array} params - params
|
|
|
|
|
* {string} id: an opaque ID identifying the object for which
|
|
|
|
|
* the operation is requested
|
2012-06-20 17:23:34 -04:00
|
|
|
|
* The ID must be unique in the context of the calling process.
|
2019-10-17 12:41:52 -04:00
|
|
|
|
* {string} message: the message to display
|
|
|
|
|
* {string} icon_name: the name of an icon to display
|
|
|
|
|
* {number[]} application_pids: the PIDs of the applications to display
|
|
|
|
|
* {string[]} choices: an array of choice strings
|
|
|
|
|
* @param {Gio.DBusMethodInvocation} invocation - invocation
|
2012-06-20 17:23:34 -04:00
|
|
|
|
*
|
|
|
|
|
* The dialog will stay visible until clients call the Close() method, or
|
|
|
|
|
* another dialog becomes visible.
|
|
|
|
|
* Calling ShowProcesses again for the same id will have the effect to clear
|
|
|
|
|
* the existing dialog and update it with the new message and the new list
|
|
|
|
|
* of processes.
|
|
|
|
|
*/
|
2017-10-30 20:03:21 -04:00
|
|
|
|
ShowProcessesAsync(params, invocation) {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
let [id, message, iconName, applicationPids, choices] = params;
|
|
|
|
|
|
|
|
|
|
if (this._setCurrentRequest(invocation, id, ShellMountOperationType.SHOW_PROCESSES)) {
|
|
|
|
|
this._dialog.update(message, applicationPids, choices);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._closeDialog();
|
|
|
|
|
|
|
|
|
|
this._dialog = new ShellProcessesDialog(this._createGIcon(iconName));
|
2017-10-30 20:38:18 -04:00
|
|
|
|
this._dialog.connect('response', (object, choice) => {
|
|
|
|
|
let response;
|
|
|
|
|
let details = {};
|
|
|
|
|
|
|
|
|
|
if (choice == -1) {
|
|
|
|
|
response = Gio.MountOperationResult.ABORTED;
|
|
|
|
|
} else {
|
|
|
|
|
response = Gio.MountOperationResult.HANDLED;
|
|
|
|
|
details['choice'] = GLib.Variant.new('i', choice);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._clearCurrentRequest(response, details);
|
|
|
|
|
});
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
|
|
|
|
this._dialog.update(message, applicationPids, choices);
|
|
|
|
|
this._dialog.open();
|
2017-10-30 21:19:44 -04:00
|
|
|
|
}
|
2012-06-20 17:23:34 -04:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Close:
|
2019-10-17 12:41:52 -04:00
|
|
|
|
* @param {Array} _params - params
|
|
|
|
|
* @param {Gio.DBusMethodInvocation} _invocation - invocation
|
2012-06-20 17:23:34 -04:00
|
|
|
|
*
|
|
|
|
|
* Closes a dialog previously opened by AskPassword, AskQuestion or ShowProcesses.
|
|
|
|
|
* If no dialog is open, does nothing.
|
|
|
|
|
*/
|
2019-01-31 09:08:10 -05:00
|
|
|
|
Close(_params, _invocation) {
|
2012-06-20 17:23:34 -04:00
|
|
|
|
this._clearCurrentRequest(Gio.MountOperationResult.UNHANDLED, {});
|
|
|
|
|
this._closeDialog();
|
|
|
|
|
}
|
2017-10-30 21:19:44 -04:00
|
|
|
|
};
|