2017-12-19 07:41:14 -05:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
|
|
|
// the following is a modified version of bolt/contrib/js/client.js
|
|
|
|
|
|
|
|
const Gio = imports.gi.Gio;
|
|
|
|
const GLib = imports.gi.GLib;
|
|
|
|
const Lang = imports.lang;
|
|
|
|
const Shell = imports.gi.Shell;
|
|
|
|
const Signals = imports.signals;
|
|
|
|
|
|
|
|
const Main = imports.ui.main;
|
|
|
|
const MessageTray = imports.ui.messageTray;
|
|
|
|
const PanelMenu = imports.ui.panelMenu;
|
|
|
|
|
|
|
|
/* Keep in sync with data/org.freedesktop.bolt.xml */
|
|
|
|
|
|
|
|
const BoltClientInterface = '<node> \
|
|
|
|
<interface name="org.freedesktop.bolt1.Manager"> \
|
|
|
|
<property name="Probing" type="b" access="read"></property> \
|
2018-03-05 15:05:32 -05:00
|
|
|
<property name="AuthMode" type="s" access="readwrite"></property> \
|
2017-12-19 07:41:14 -05:00
|
|
|
<method name="EnrollDevice"> \
|
|
|
|
<arg type="s" name="uid" direction="in"> </arg> \
|
2018-03-05 15:03:20 -05:00
|
|
|
<arg type="s" name="policy" direction="in"> </arg> \
|
|
|
|
<arg type="s" name="flags" direction="in"> </arg> \
|
2017-12-19 07:41:14 -05:00
|
|
|
<arg name="device" direction="out" type="o"> </arg> \
|
|
|
|
</method> \
|
|
|
|
<signal name="DeviceAdded"> \
|
|
|
|
<arg name="device" type="o"> </arg> \
|
|
|
|
</signal> \
|
|
|
|
</interface> \
|
|
|
|
</node>';
|
|
|
|
|
|
|
|
const BoltDeviceInterface = '<node> \
|
|
|
|
<interface name="org.freedesktop.bolt1.Device"> \
|
|
|
|
<property name="Uid" type="s" access="read"></property> \
|
|
|
|
<property name="Name" type="s" access="read"></property> \
|
|
|
|
<property name="Vendor" type="s" access="read"></property> \
|
2018-03-05 15:03:20 -05:00
|
|
|
<property name="Type" type="s" access="read"></property> \
|
|
|
|
<property name="Status" type="s" access="read"></property> \
|
2017-12-19 07:41:14 -05:00
|
|
|
<property name="Parent" type="s" access="read"></property> \
|
2018-03-05 15:03:20 -05:00
|
|
|
<property name="SysfsPath" type="s" access="read"></property> \
|
2017-12-19 07:41:14 -05:00
|
|
|
<property name="Stored" type="b" access="read"></property> \
|
2018-03-05 15:03:20 -05:00
|
|
|
<property name="Policy" type="s" access="read"></property> \
|
|
|
|
<property name="Key" type="s" access="read"></property> \
|
|
|
|
<property name="Label" type="s" access="read"></property> \
|
|
|
|
<property name="ConnectTime" type="t" access="read"></property> \
|
|
|
|
<property name="AuthorizeTime" type="t" access="read"></property> \
|
|
|
|
<property name="StoreTime" type="t" access="read"></property> \
|
2017-12-19 07:41:14 -05:00
|
|
|
</interface> \
|
|
|
|
</node>';
|
|
|
|
|
|
|
|
const BoltClientProxy = Gio.DBusProxy.makeProxyWrapper(BoltClientInterface);
|
|
|
|
const BoltDeviceProxy = Gio.DBusProxy.makeProxyWrapper(BoltDeviceInterface);
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
var Status = {
|
2018-03-05 15:03:20 -05:00
|
|
|
DISCONNECTED: 'disconnected',
|
|
|
|
CONNECTED: 'connected',
|
|
|
|
AUTHORIZING: 'authorizing',
|
|
|
|
AUTH_ERROR: 'auth-error',
|
|
|
|
AUTHORIZED: 'authorized',
|
|
|
|
AUTHORIZED_SECURE: 'authorized-secure',
|
|
|
|
AUTHORIZED_NEWKEY: 'authorized-newkey'
|
2017-12-19 07:41:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
var Policy = {
|
2018-03-05 15:03:20 -05:00
|
|
|
DEFAULT: 'default',
|
|
|
|
MANUAL: 'manual',
|
|
|
|
AUTO: 'auto'
|
2017-12-19 07:41:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
var AuthFlags = {
|
2018-03-05 15:03:20 -05:00
|
|
|
NONE: 'none',
|
|
|
|
};
|
|
|
|
|
2018-03-05 15:05:32 -05:00
|
|
|
var AuthMode = {
|
|
|
|
DISABLED: 'disabled',
|
|
|
|
ENABLED: 'enabled'
|
2017-12-19 07:41:14 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
const BOLT_DBUS_NAME = 'org.freedesktop.bolt';
|
|
|
|
const BOLT_DBUS_PATH = '/org/freedesktop/bolt';
|
|
|
|
|
|
|
|
var Client = new Lang.Class({
|
|
|
|
Name: 'BoltClient',
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_init() {
|
2017-12-19 07:41:14 -05:00
|
|
|
|
|
|
|
this._proxy = null;
|
|
|
|
new BoltClientProxy(
|
|
|
|
Gio.DBus.system,
|
|
|
|
BOLT_DBUS_NAME,
|
|
|
|
BOLT_DBUS_PATH,
|
2017-12-01 19:27:35 -05:00
|
|
|
this._onProxyReady.bind(this)
|
2017-12-19 07:41:14 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
this.probing = false;
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onProxyReady(proxy, error) {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (error !== null) {
|
|
|
|
log('error creating bolt proxy: %s'.format(error.message));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._proxy = proxy;
|
2017-12-01 19:27:35 -05:00
|
|
|
this._propsChangedId = this._proxy.connect('g-properties-changed', this._onPropertiesChanged.bind(this));
|
|
|
|
this._deviceAddedId = this._proxy.connectSignal('DeviceAdded', this._onDeviceAdded.bind(this));
|
2017-12-19 07:41:14 -05:00
|
|
|
|
|
|
|
this.probing = this._proxy.Probing;
|
|
|
|
if (this.probing)
|
|
|
|
this.emit('probing-changed', this.probing);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onPropertiesChanged(proxy, properties) {
|
2017-12-19 07:41:14 -05:00
|
|
|
let unpacked = properties.deep_unpack();
|
|
|
|
if (!('Probing' in unpacked))
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.probing = this._proxy.Probing;
|
|
|
|
this.emit('probing-changed', this.probing);
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onDeviceAdded(proxy, emitter, params) {
|
2017-12-19 07:41:14 -05:00
|
|
|
let [path] = params;
|
|
|
|
let device = new BoltDeviceProxy(Gio.DBus.system,
|
|
|
|
BOLT_DBUS_NAME,
|
|
|
|
path);
|
|
|
|
this.emit('device-added', device);
|
|
|
|
},
|
|
|
|
|
|
|
|
/* public methods */
|
2017-10-30 20:03:21 -04:00
|
|
|
close() {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (!this._proxy)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this._proxy.disconnectSignal(this._deviceAddedId);
|
|
|
|
this._proxy.disconnect(this._propsChangedId);
|
|
|
|
this._proxy = null;
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
enrollDevice(id, policy, callback) {
|
2017-12-19 07:41:14 -05:00
|
|
|
this._proxy.EnrollDeviceRemote(id, policy, AuthFlags.NONE,
|
2017-10-30 20:38:18 -04:00
|
|
|
(res, error) => {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (error) {
|
|
|
|
callback(null, error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let [path] = res;
|
|
|
|
let device = new BoltDeviceProxy(Gio.DBus.system,
|
|
|
|
BOLT_DBUS_NAME,
|
|
|
|
path);
|
|
|
|
callback(device, null);
|
2017-10-30 20:38:18 -04:00
|
|
|
});
|
2018-03-05 15:05:32 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
get authMode () {
|
|
|
|
return this._proxy.AuthMode;
|
2017-12-19 07:41:14 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
Signals.addSignalMethods(Client.prototype);
|
|
|
|
|
|
|
|
/* helper class to automatically authorize new devices */
|
|
|
|
var AuthRobot = new Lang.Class({
|
|
|
|
Name: 'BoltAuthRobot',
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_init(client) {
|
2017-12-19 07:41:14 -05:00
|
|
|
|
|
|
|
this._client = client;
|
|
|
|
|
|
|
|
this._devicesToEnroll = [];
|
|
|
|
this._enrolling = false;
|
|
|
|
|
2017-12-01 19:27:35 -05:00
|
|
|
this._client.connect('device-added', this._onDeviceAdded.bind(this));
|
2017-12-19 07:41:14 -05:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
close() {
|
2017-12-19 07:41:14 -05:00
|
|
|
this.disconnectAll();
|
|
|
|
this._client = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
/* the "device-added" signal will be emitted by boltd for every
|
|
|
|
* device that is not currently stored in the database. We are
|
|
|
|
* only interested in those devices, because all known devices
|
|
|
|
* will be handled by the user himself */
|
2017-10-30 20:03:21 -04:00
|
|
|
_onDeviceAdded(cli, dev) {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (dev.Status !== Status.CONNECTED)
|
|
|
|
return;
|
|
|
|
|
2018-03-05 15:05:32 -05:00
|
|
|
/* check if authorization is enabled in the daemon. if not
|
|
|
|
* we won't even bother authorizing, because we will only
|
|
|
|
* get an error back. The exact contents of AuthMode might
|
|
|
|
* change in the future, but must contain AuthMode.ENABLED
|
|
|
|
* if it is enabled. */
|
|
|
|
if (!cli.authMode.split('|').includes(AuthMode.ENABLED))
|
|
|
|
return;
|
|
|
|
|
2017-12-19 07:41:14 -05:00
|
|
|
/* check if we should enroll the device */
|
|
|
|
let res = [false];
|
|
|
|
this.emit('enroll-device', dev, res);
|
|
|
|
if (res[0] !== true)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* ok, we should authorize the device, add it to the back
|
|
|
|
* of the list */
|
|
|
|
this._devicesToEnroll.push(dev);
|
|
|
|
this._enrollDevices();
|
|
|
|
},
|
|
|
|
|
|
|
|
/* The enrollment queue:
|
|
|
|
* - new devices will be added to the end of the array.
|
|
|
|
* - an idle callback will be scheduled that will keep
|
|
|
|
* calling itself as long as there a devices to be
|
|
|
|
* enrolled.
|
|
|
|
*/
|
2017-10-30 20:03:21 -04:00
|
|
|
_enrollDevices() {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (this._enrolling)
|
|
|
|
return;
|
|
|
|
|
|
|
|
this.enrolling = true;
|
|
|
|
GLib.idle_add(GLib.PRIORITY_DEFAULT,
|
2017-12-01 19:27:35 -05:00
|
|
|
this._enrollDevicesIdle.bind(this));
|
2017-12-19 07:41:14 -05:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onEnrollDone(device, error) {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (error)
|
|
|
|
this.emit('enroll-failed', error, device);
|
|
|
|
|
|
|
|
/* TODO: scan the list of devices to be authorized for children
|
|
|
|
* of this device and remove them (and their children and
|
|
|
|
* their children and ....) from the device queue
|
|
|
|
*/
|
|
|
|
this._enrolling = this._devicesToEnroll.length > 0;
|
|
|
|
|
|
|
|
if (this._enrolling)
|
|
|
|
GLib.idle_add(GLib.PRIORITY_DEFAULT,
|
2017-12-01 19:27:35 -05:00
|
|
|
this._enrollDevicesIdle.bind(this));
|
2017-12-19 07:41:14 -05:00
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_enrollDevicesIdle() {
|
2017-12-19 07:41:14 -05:00
|
|
|
let devices = this._devicesToEnroll;
|
|
|
|
|
|
|
|
let dev = devices.shift();
|
|
|
|
if (dev === undefined)
|
|
|
|
return GLib.SOURCE_REMOVE;
|
|
|
|
|
|
|
|
this._client.enrollDevice(dev.Uid,
|
|
|
|
Policy.DEFAULT,
|
2017-12-01 19:27:35 -05:00
|
|
|
this._onEnrollDone.bind(this));
|
2017-12-19 07:41:14 -05:00
|
|
|
return GLib.SOURCE_REMOVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
Signals.addSignalMethods(AuthRobot.prototype);
|
|
|
|
|
|
|
|
/* eof client.js */
|
|
|
|
|
|
|
|
var Indicator = new Lang.Class({
|
|
|
|
Name: 'ThunderboltIndicator',
|
|
|
|
Extends: PanelMenu.SystemIndicator,
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_init() {
|
2017-12-19 07:41:14 -05:00
|
|
|
this.parent();
|
|
|
|
|
|
|
|
this._indicator = this._addIndicator();
|
|
|
|
this._indicator.icon_name = 'thunderbolt-symbolic';
|
|
|
|
|
|
|
|
this._client = new Client();
|
2017-12-01 19:27:35 -05:00
|
|
|
this._client.connect('probing-changed', this._onProbing.bind(this));
|
2017-12-19 07:41:14 -05:00
|
|
|
|
|
|
|
this._robot = new AuthRobot(this._client);
|
|
|
|
|
2017-12-01 19:27:35 -05:00
|
|
|
this._robot.connect('enroll-device', this._onEnrollDevice.bind(this));
|
|
|
|
this._robot.connect('enroll-failed', this._onEnrollFailed.bind(this));
|
2017-12-19 07:41:14 -05:00
|
|
|
|
2017-12-01 19:27:35 -05:00
|
|
|
Main.sessionMode.connect('updated', this._sync.bind(this));
|
2017-12-19 07:41:14 -05:00
|
|
|
this._sync();
|
|
|
|
|
|
|
|
this._source = null;
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onDestroy() {
|
2017-12-19 07:41:14 -05:00
|
|
|
this._robot.close();
|
|
|
|
this._client.close();
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_ensureSource() {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (!this._source) {
|
|
|
|
this._source = new MessageTray.Source(_("Thunderbolt"),
|
|
|
|
'thunderbolt-symbolic');
|
2017-10-30 20:38:18 -04:00
|
|
|
this._source.connect('destroy', () => { this._source = null; });
|
2017-12-19 07:41:14 -05:00
|
|
|
|
|
|
|
Main.messageTray.add(this._source);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._source;
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_notify(title, body) {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (this._notification)
|
|
|
|
this._notification.destroy();
|
|
|
|
|
|
|
|
let source = this._ensureSource();
|
|
|
|
|
|
|
|
this._notification = new MessageTray.Notification(source, title, body);
|
|
|
|
this._notification.setUrgency(MessageTray.Urgency.HIGH);
|
2017-10-30 20:38:18 -04:00
|
|
|
this._notification.connect('destroy', () => {
|
2017-12-19 07:41:14 -05:00
|
|
|
this._notification = null;
|
|
|
|
});
|
|
|
|
this._notification.connect('activated', () => {
|
|
|
|
let app = Shell.AppSystem.get_default().lookup_app('gnome-thunderbolt-panel.desktop');
|
|
|
|
if (app)
|
|
|
|
app.activate();
|
|
|
|
});
|
|
|
|
this._source.notify(this._notification);
|
|
|
|
},
|
|
|
|
|
|
|
|
/* Session callbacks */
|
2017-10-30 20:03:21 -04:00
|
|
|
_sync() {
|
2017-12-19 07:41:14 -05:00
|
|
|
let active = !Main.sessionMode.isLocked && !Main.sessionMode.isGreeter;
|
|
|
|
this._indicator.visible = active && this._client.probing;
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/* Bolt.Client callbacks */
|
2017-10-30 20:03:21 -04:00
|
|
|
_onProbing(cli, probing) {
|
2017-12-19 07:41:14 -05:00
|
|
|
if (probing)
|
|
|
|
this._indicator.icon_name = 'thunderbolt-acquiring-symbolic';
|
|
|
|
else
|
|
|
|
this._indicator.icon_name = 'thunderbolt-symbolic';
|
|
|
|
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/* AuthRobot callbacks */
|
2017-10-30 20:03:21 -04:00
|
|
|
_onEnrollDevice(obj, device, policy) {
|
2017-12-19 07:41:14 -05:00
|
|
|
let auth = !Main.sessionMode.isLocked && !Main.sessionMode.isGreeter;
|
|
|
|
policy[0] = auth;
|
|
|
|
|
|
|
|
log("thunderbolt: [%s] auto enrollment: %s".format(device.Name, auth ? 'yes' : 'no'));
|
|
|
|
if (auth)
|
|
|
|
return; /* we are done */
|
|
|
|
|
|
|
|
const title = _('Unknown Thunderbolt device');
|
|
|
|
const body = _('New device has been detected while you were away. Please disconnect and reconnect the device to start using it.');
|
|
|
|
this._notify(title, body);
|
|
|
|
},
|
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_onEnrollFailed(obj, device, error) {
|
2017-12-19 07:41:14 -05:00
|
|
|
const title = _('Thunderbolt authorization error');
|
|
|
|
const body = _('Could not authorize the thunderbolt device: %s'.format(error.message));
|
|
|
|
this._notify(title, body);
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|