2011-09-28 09:16:26 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2011-06-20 15:16:40 -04:00
|
|
|
|
|
|
|
const Lang = imports.lang;
|
|
|
|
const Mainloop = imports.mainloop;
|
2012-02-10 22:51:42 -05:00
|
|
|
const GLib = imports.gi.GLib;
|
2011-06-20 15:16:40 -04:00
|
|
|
const Gio = imports.gi.Gio;
|
|
|
|
const Params = imports.misc.params;
|
|
|
|
|
2012-02-10 22:51:42 -05:00
|
|
|
const Shell = imports.gi.Shell;
|
2011-06-20 15:16:40 -04:00
|
|
|
const Main = imports.ui.main;
|
2011-06-22 16:43:16 -04:00
|
|
|
const ShellMountOperation = imports.ui.shellMountOperation;
|
2011-06-20 15:16:40 -04:00
|
|
|
const ScreenSaver = imports.misc.screenSaver;
|
|
|
|
|
|
|
|
// GSettings keys
|
|
|
|
const SETTINGS_SCHEMA = 'org.gnome.desktop.media-handling';
|
|
|
|
const SETTING_ENABLE_AUTOMOUNT = 'automount';
|
|
|
|
|
2011-06-22 09:45:03 -04:00
|
|
|
const AUTORUN_EXPIRE_TIMEOUT_SECS = 10;
|
|
|
|
|
2011-08-16 08:28:53 -04:00
|
|
|
const ConsoleKitSessionIface = <interface name="org.freedesktop.ConsoleKit.Session">
|
|
|
|
<method name="IsActive">
|
|
|
|
<arg type="b" direction="out" />
|
|
|
|
</method>
|
|
|
|
<signal name="ActiveChanged">
|
|
|
|
<arg type="b" direction="out" />
|
|
|
|
</signal>
|
|
|
|
</interface>;
|
2011-06-20 15:16:40 -04:00
|
|
|
|
2011-08-16 08:28:53 -04:00
|
|
|
const ConsoleKitSessionProxy = Gio.DBusProxy.makeProxyWrapper(ConsoleKitSessionIface);
|
2011-06-20 15:16:40 -04:00
|
|
|
|
2011-08-16 08:28:53 -04:00
|
|
|
const ConsoleKitManagerIface = <interface name="org.freedesktop.ConsoleKit.Manager">
|
|
|
|
<method name="GetCurrentSession">
|
|
|
|
<arg type="o" direction="out" />
|
|
|
|
</method>
|
|
|
|
</interface>;
|
2011-06-20 15:16:40 -04:00
|
|
|
|
2011-08-16 08:28:53 -04:00
|
|
|
const ConsoleKitManagerInfo = Gio.DBusInterfaceInfo.new_for_xml(ConsoleKitManagerIface);
|
2011-06-20 15:16:40 -04:00
|
|
|
|
2011-08-16 08:28:53 -04:00
|
|
|
function ConsoleKitManager() {
|
|
|
|
var self = new Gio.DBusProxy({ g_connection: Gio.DBus.system,
|
|
|
|
g_interface_name: ConsoleKitManagerInfo.name,
|
|
|
|
g_interface_info: ConsoleKitManagerInfo,
|
|
|
|
g_name: 'org.freedesktop.ConsoleKit',
|
|
|
|
g_object_path: '/org/freedesktop/ConsoleKit/Manager',
|
|
|
|
g_flags: (Gio.DBusProxyFlags.DO_NOT_AUTO_START |
|
|
|
|
Gio.DBusProxyFlags.DO_NOT_LOAD_PROPERTIES) });
|
|
|
|
|
2012-01-29 16:38:29 -05:00
|
|
|
self._updateSessionActive = function() {
|
2011-08-16 08:28:53 -04:00
|
|
|
if (self.g_name_owner) {
|
|
|
|
self.GetCurrentSessionRemote(function([session]) {
|
|
|
|
self._ckSession = new ConsoleKitSessionProxy(Gio.DBus.system, 'org.freedesktop.ConsoleKit', session);
|
|
|
|
|
|
|
|
self._ckSession.connectSignal('ActiveChanged', function(object, senderName, [isActive]) {
|
|
|
|
self.sessionActive = isActive;
|
|
|
|
});
|
|
|
|
self._ckSession.IsActiveRemote(function([isActive]) {
|
|
|
|
self.sessionActive = isActive;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
self.sessionActive = true;
|
|
|
|
}
|
2012-01-29 16:38:29 -05:00
|
|
|
};
|
|
|
|
self.connect('notify::g-name-owner',
|
|
|
|
Lang.bind(self, self._updateSessionActive));
|
2011-08-16 08:28:53 -04:00
|
|
|
|
2012-01-29 16:38:29 -05:00
|
|
|
self._updateSessionActive();
|
2011-08-16 08:28:53 -04:00
|
|
|
self.init(null);
|
|
|
|
return self;
|
|
|
|
}
|
2011-06-20 15:16:40 -04:00
|
|
|
|
2012-02-10 22:51:42 -05:00
|
|
|
function haveSystemd() {
|
|
|
|
return GLib.access("/sys/fs/cgroup/systemd", 0) >= 0;
|
|
|
|
}
|
|
|
|
|
2011-11-20 12:56:27 -05:00
|
|
|
const AutomountManager = new Lang.Class({
|
|
|
|
Name: 'AutomountManager',
|
2011-06-20 15:16:40 -04:00
|
|
|
|
|
|
|
_init: function() {
|
|
|
|
this._settings = new Gio.Settings({ schema: SETTINGS_SCHEMA });
|
|
|
|
this._volumeQueue = [];
|
|
|
|
|
2012-02-10 22:51:42 -05:00
|
|
|
if (!haveSystemd())
|
|
|
|
this.ckListener = new ConsoleKitManager();
|
2011-06-20 15:16:40 -04:00
|
|
|
|
|
|
|
this._ssProxy = new ScreenSaver.ScreenSaverProxy();
|
2011-08-16 08:24:39 -04:00
|
|
|
this._ssProxy.connectSignal('ActiveChanged',
|
|
|
|
Lang.bind(this, this._screenSaverActiveChanged));
|
2011-06-20 15:16:40 -04:00
|
|
|
|
|
|
|
this._volumeMonitor = Gio.VolumeMonitor.get();
|
|
|
|
|
|
|
|
this._volumeMonitor.connect('volume-added',
|
|
|
|
Lang.bind(this,
|
|
|
|
this._onVolumeAdded));
|
|
|
|
this._volumeMonitor.connect('volume-removed',
|
|
|
|
Lang.bind(this,
|
|
|
|
this._onVolumeRemoved));
|
2011-06-27 11:51:23 -04:00
|
|
|
this._volumeMonitor.connect('drive-connected',
|
|
|
|
Lang.bind(this,
|
|
|
|
this._onDriveConnected));
|
|
|
|
this._volumeMonitor.connect('drive-disconnected',
|
|
|
|
Lang.bind(this,
|
|
|
|
this._onDriveDisconnected));
|
2011-06-27 12:13:54 -04:00
|
|
|
this._volumeMonitor.connect('drive-eject-button',
|
|
|
|
Lang.bind(this,
|
|
|
|
this._onDriveEjectButton));
|
2011-06-20 15:16:40 -04:00
|
|
|
|
|
|
|
Mainloop.idle_add(Lang.bind(this, this._startupMountAll));
|
|
|
|
},
|
|
|
|
|
2011-08-16 08:24:39 -04:00
|
|
|
_screenSaverActiveChanged: function(object, senderName, [isActive]) {
|
2011-06-20 15:16:40 -04:00
|
|
|
if (!isActive) {
|
|
|
|
this._volumeQueue.forEach(Lang.bind(this, function(volume) {
|
|
|
|
this._checkAndMountVolume(volume);
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
// clear the queue anyway
|
|
|
|
this._volumeQueue = [];
|
|
|
|
},
|
|
|
|
|
|
|
|
_startupMountAll: function() {
|
|
|
|
let volumes = this._volumeMonitor.get_volumes();
|
|
|
|
volumes.forEach(Lang.bind(this, function(volume) {
|
|
|
|
this._checkAndMountVolume(volume, { checkSession: false,
|
|
|
|
useMountOp: false });
|
|
|
|
}));
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2012-02-14 13:52:29 -05:00
|
|
|
isSessionActive: function() {
|
2012-02-10 22:51:42 -05:00
|
|
|
// Return whether the current session is active, using the
|
|
|
|
// right mechanism: either systemd if available or ConsoleKit
|
|
|
|
// as fallback.
|
|
|
|
|
|
|
|
if (haveSystemd())
|
|
|
|
return Shell.session_is_active_for_systemd();
|
|
|
|
|
|
|
|
return this.ckListener.sessionActive;
|
|
|
|
},
|
|
|
|
|
2011-06-27 11:51:23 -04:00
|
|
|
_onDriveConnected: function() {
|
|
|
|
// if we're not in the current ConsoleKit session,
|
|
|
|
// or screensaver is active, don't play sounds
|
2012-02-14 13:52:29 -05:00
|
|
|
if (!this.isSessionActive())
|
2012-02-10 22:51:42 -05:00
|
|
|
return;
|
2011-06-27 11:51:23 -04:00
|
|
|
|
|
|
|
if (this._ssProxy.screenSaverActive)
|
|
|
|
return;
|
|
|
|
|
|
|
|
global.play_theme_sound(0, 'device-added-media');
|
|
|
|
},
|
|
|
|
|
|
|
|
_onDriveDisconnected: function() {
|
|
|
|
// if we're not in the current ConsoleKit session,
|
|
|
|
// or screensaver is active, don't play sounds
|
2012-02-14 13:52:29 -05:00
|
|
|
if (!this.isSessionActive())
|
2012-02-10 22:51:42 -05:00
|
|
|
return;
|
2011-06-27 11:51:23 -04:00
|
|
|
|
|
|
|
if (this._ssProxy.screenSaverActive)
|
|
|
|
return;
|
|
|
|
|
|
|
|
global.play_theme_sound(0, 'device-removed-media');
|
|
|
|
},
|
|
|
|
|
2011-06-27 12:13:54 -04:00
|
|
|
_onDriveEjectButton: function(monitor, drive) {
|
|
|
|
// TODO: this code path is not tested, as the GVfs volume monitor
|
|
|
|
// doesn't emit this signal just yet.
|
2012-02-14 13:52:29 -05:00
|
|
|
if (!this.isSessionActive())
|
2011-06-27 12:13:54 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
// we force stop/eject in this case, so we don't have to pass a
|
|
|
|
// mount operation object
|
|
|
|
if (drive.can_stop()) {
|
|
|
|
drive.stop
|
|
|
|
(Gio.MountUnmountFlags.FORCE, null, null,
|
|
|
|
Lang.bind(this, function(drive, res) {
|
|
|
|
try {
|
|
|
|
drive.stop_finish(res);
|
|
|
|
} catch (e) {
|
|
|
|
log("Unable to stop the drive after drive-eject-button " + e.toString());
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
} else if (drive.can_eject()) {
|
|
|
|
drive.eject_with_operation
|
|
|
|
(Gio.MountUnmountFlags.FORCE, null, null,
|
|
|
|
Lang.bind(this, function(drive, res) {
|
|
|
|
try {
|
|
|
|
drive.eject_with_operation_finish(res);
|
|
|
|
} catch (e) {
|
|
|
|
log("Unable to eject the drive after drive-eject-button " + e.toString());
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-06-20 15:16:40 -04:00
|
|
|
_onVolumeAdded: function(monitor, volume) {
|
|
|
|
this._checkAndMountVolume(volume);
|
|
|
|
},
|
|
|
|
|
|
|
|
_checkAndMountVolume: function(volume, params) {
|
|
|
|
params = Params.parse(params, { checkSession: true,
|
|
|
|
useMountOp: true });
|
|
|
|
|
|
|
|
if (params.checkSession) {
|
|
|
|
// if we're not in the current ConsoleKit session,
|
|
|
|
// don't attempt automount
|
2012-02-14 13:52:29 -05:00
|
|
|
if (!this.isSessionActive())
|
2011-06-20 15:16:40 -04:00
|
|
|
return;
|
|
|
|
|
2011-07-13 15:07:39 -04:00
|
|
|
if (this._ssProxy.screenSaverActive) {
|
2011-06-20 15:16:40 -04:00
|
|
|
if (this._volumeQueue.indexOf(volume) == -1)
|
|
|
|
this._volumeQueue.push(volume);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 16:29:45 -04:00
|
|
|
// Volume is already mounted, don't bother.
|
|
|
|
if (volume.get_mount())
|
|
|
|
return;
|
|
|
|
|
2011-06-22 09:45:03 -04:00
|
|
|
if (!this._settings.get_boolean(SETTING_ENABLE_AUTOMOUNT) ||
|
|
|
|
!volume.should_automount() ||
|
|
|
|
!volume.can_mount()) {
|
2011-09-28 16:29:45 -04:00
|
|
|
// allow the autorun to run anyway; this can happen if the
|
2011-06-22 09:45:03 -04:00
|
|
|
// mount gets added programmatically later, even if
|
|
|
|
// should_automount() or can_mount() are false, like for
|
|
|
|
// blank optical media.
|
|
|
|
this._allowAutorun(volume);
|
|
|
|
this._allowAutorunExpire(volume);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-22 16:43:16 -04:00
|
|
|
if (params.useMountOp) {
|
|
|
|
let operation = new ShellMountOperation.ShellMountOperation(volume);
|
|
|
|
this._mountVolume(volume, operation.mountOp);
|
|
|
|
} else {
|
|
|
|
this._mountVolume(volume, null);
|
|
|
|
}
|
2011-06-20 15:16:40 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_mountVolume: function(volume, operation) {
|
2011-06-22 09:45:03 -04:00
|
|
|
this._allowAutorun(volume);
|
2011-06-20 15:16:40 -04:00
|
|
|
volume.mount(0, operation, null,
|
|
|
|
Lang.bind(this, this._onVolumeMounted));
|
|
|
|
},
|
|
|
|
|
|
|
|
_onVolumeMounted: function(volume, res) {
|
2011-06-22 09:45:03 -04:00
|
|
|
this._allowAutorunExpire(volume);
|
|
|
|
|
2011-06-20 15:16:40 -04:00
|
|
|
try {
|
|
|
|
volume.mount_finish(res);
|
|
|
|
} catch (e) {
|
2011-07-12 11:29:49 -04:00
|
|
|
let string = e.toString();
|
|
|
|
|
|
|
|
// FIXME: needs proper error code handling instead of this
|
|
|
|
// See https://bugzilla.gnome.org/show_bug.cgi?id=591480
|
|
|
|
if (string.indexOf('No key available with this passphrase') != -1)
|
|
|
|
this._reaskPassword(volume);
|
|
|
|
else
|
|
|
|
log('Unable to mount volume ' + volume.get_name() + ': ' + string);
|
2011-06-20 15:16:40 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_onVolumeRemoved: function(monitor, volume) {
|
|
|
|
this._volumeQueue =
|
|
|
|
this._volumeQueue.filter(function(element) {
|
|
|
|
return (element != volume);
|
|
|
|
});
|
2011-06-22 09:45:03 -04:00
|
|
|
},
|
|
|
|
|
2011-07-12 11:29:49 -04:00
|
|
|
_reaskPassword: function(volume) {
|
|
|
|
let operation = new ShellMountOperation.ShellMountOperation(volume, { reaskPassword: true });
|
|
|
|
this._mountVolume(volume, operation.mountOp);
|
|
|
|
},
|
|
|
|
|
2011-06-22 09:45:03 -04:00
|
|
|
_allowAutorun: function(volume) {
|
|
|
|
volume.allowAutorun = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_allowAutorunExpire: function(volume) {
|
|
|
|
Mainloop.timeout_add_seconds(AUTORUN_EXPIRE_TIMEOUT_SECS, function() {
|
|
|
|
volume.allowAutorun = false;
|
|
|
|
return false;
|
|
|
|
});
|
2011-06-20 15:16:40 -04:00
|
|
|
}
|
2011-11-20 12:56:27 -05:00
|
|
|
});
|