2014-01-28 12:41:26 -05:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
|
|
|
|
2014-02-13 12:50:32 -05:00
|
|
|
const GLib = imports.gi.GLib;
|
2014-01-28 12:41:26 -05:00
|
|
|
const Gio = imports.gi.Gio;
|
|
|
|
const Lang = imports.lang;
|
|
|
|
|
2014-02-13 12:50:32 -05:00
|
|
|
const Shell = imports.gi.Shell;
|
2014-01-28 12:41:26 -05:00
|
|
|
const PanelMenu = imports.ui.panelMenu;
|
2014-02-13 12:50:32 -05:00
|
|
|
const PopupMenu = imports.ui.popupMenu;
|
2014-01-28 12:41:26 -05:00
|
|
|
|
2014-02-16 10:06:55 -05:00
|
|
|
const LOCATION_SCHEMA = 'org.gnome.shell.location';
|
|
|
|
const MAX_ACCURACY_LEVEL = 'max-accuracy-level';
|
|
|
|
|
2014-01-28 12:41:26 -05:00
|
|
|
var GeoclueIface = '<node> \
|
|
|
|
<interface name="org.freedesktop.GeoClue2.Manager"> \
|
|
|
|
<property name="InUse" type="b" access="read"/> \
|
2014-02-13 12:50:32 -05:00
|
|
|
<property name="AvailableAccuracyLevel" type="u" access="read"/> \
|
|
|
|
<method name="AddAgent"> \
|
|
|
|
<arg name="id" type="s" direction="in"/> \
|
|
|
|
</method> \
|
2014-01-28 12:41:26 -05:00
|
|
|
</interface> \
|
|
|
|
</node>';
|
|
|
|
|
|
|
|
const GeoclueManager = Gio.DBusProxy.makeProxyWrapper(GeoclueIface);
|
|
|
|
|
2014-02-13 12:50:32 -05:00
|
|
|
var AgentIface = '<node> \
|
|
|
|
<interface name="org.freedesktop.GeoClue2.Agent"> \
|
2014-02-16 10:33:51 -05:00
|
|
|
<property name="MaxAccuracyLevel" type="u" access="read"/> \
|
2014-02-13 12:50:32 -05:00
|
|
|
<method name="AuthorizeApp"> \
|
|
|
|
<arg name="desktop_id" type="s" direction="in"/> \
|
|
|
|
<arg name="req_accuracy_level" type="u" direction="in"/> \
|
|
|
|
<arg name="authorized" type="b" direction="out"/> \
|
|
|
|
<arg name="allowed_accuracy_level" type="u" direction="out"/> \
|
|
|
|
</method> \
|
|
|
|
</interface> \
|
|
|
|
</node>';
|
|
|
|
|
2014-01-28 12:41:26 -05:00
|
|
|
const Indicator = new Lang.Class({
|
|
|
|
Name: 'LocationIndicator',
|
|
|
|
Extends: PanelMenu.SystemIndicator,
|
|
|
|
|
|
|
|
_init: function() {
|
|
|
|
this.parent();
|
|
|
|
|
2014-02-16 10:06:55 -05:00
|
|
|
this._settings = new Gio.Settings({ schema: LOCATION_SCHEMA });
|
|
|
|
this._settings.connect('changed::' + MAX_ACCURACY_LEVEL,
|
|
|
|
Lang.bind(this, this._onMaxAccuracyLevelChanged));
|
|
|
|
|
2014-01-28 12:41:26 -05:00
|
|
|
this._indicator = this._addIndicator();
|
|
|
|
this._indicator.icon_name = 'find-location-symbolic';
|
2014-02-13 12:50:32 -05:00
|
|
|
|
|
|
|
this._item = new PopupMenu.PopupSubMenuMenuItem(_("Location"), true);
|
|
|
|
this._item.icon.icon_name = 'find-location-symbolic';
|
|
|
|
|
|
|
|
this._agent = Gio.DBusExportedObject.wrapJSObject(AgentIface, this);
|
2014-02-24 13:26:46 -05:00
|
|
|
this._agent.export(Gio.DBus.system, '/org/freedesktop/GeoClue2/Agent');
|
2014-02-13 12:50:32 -05:00
|
|
|
|
|
|
|
this._item.status.text = _("On");
|
2014-02-17 07:03:25 -05:00
|
|
|
this._onOffAction = this._item.menu.addAction(_("Turn Off"), Lang.bind(this, this._onOnOffAction));
|
2014-02-13 12:50:32 -05:00
|
|
|
|
|
|
|
this.menu.addMenuItem(this._item);
|
2014-01-28 12:41:26 -05:00
|
|
|
|
|
|
|
this._watchId = Gio.bus_watch_name(Gio.BusType.SYSTEM,
|
|
|
|
'org.freedesktop.GeoClue2',
|
|
|
|
0,
|
2014-02-15 08:58:06 -05:00
|
|
|
Lang.bind(this, this._connectToGeoclue),
|
2014-01-28 12:41:26 -05:00
|
|
|
Lang.bind(this, this._onGeoclueVanished));
|
2014-02-16 10:06:55 -05:00
|
|
|
this._onMaxAccuracyLevelChanged();
|
2014-02-13 12:50:32 -05:00
|
|
|
this._connectToGeoclue();
|
2014-01-28 12:41:26 -05:00
|
|
|
},
|
|
|
|
|
2014-02-13 12:50:32 -05:00
|
|
|
get MaxAccuracyLevel() {
|
2014-02-16 10:06:55 -05:00
|
|
|
return this._getMaxAccuracyLevel();
|
2014-02-13 12:50:32 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
// We (and geoclue) have currently no way to reliably identifying apps so
|
|
|
|
// for now, lets just authorize all apps as long as they provide a valid
|
|
|
|
// desktop ID. We also ensure they don't get more accuracy than global max.
|
|
|
|
AuthorizeApp: function(desktop_id, reqAccuracyLevel) {
|
|
|
|
var appSystem = Shell.AppSystem.get_default();
|
|
|
|
var app = appSystem.lookup_app(desktop_id + ".desktop");
|
|
|
|
if (app == null) {
|
|
|
|
return [false, 0];
|
|
|
|
}
|
|
|
|
|
2014-02-16 10:06:55 -05:00
|
|
|
let allowedAccuracyLevel = clamp(reqAccuracyLevel, 0, this._getMaxAccuracyLevel());
|
2014-02-13 12:50:32 -05:00
|
|
|
return [true, allowedAccuracyLevel];
|
|
|
|
},
|
|
|
|
|
|
|
|
_syncIndicator: function() {
|
2014-01-28 12:41:26 -05:00
|
|
|
if (this._proxy == null) {
|
|
|
|
this._indicator.visible = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._indicator.visible = this._proxy.InUse;
|
|
|
|
},
|
|
|
|
|
2014-02-15 08:58:06 -05:00
|
|
|
_connectToGeoclue: function() {
|
2014-02-15 10:17:58 -05:00
|
|
|
if (this._proxy != null || this._connecting)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
this._connecting = true;
|
2014-02-15 08:42:43 -05:00
|
|
|
new GeoclueManager(Gio.DBus.system,
|
|
|
|
'org.freedesktop.GeoClue2',
|
|
|
|
'/org/freedesktop/GeoClue2/Manager',
|
|
|
|
Lang.bind(this, this._onProxyReady));
|
2014-02-15 10:17:58 -05:00
|
|
|
return true;
|
2014-02-15 08:42:43 -05:00
|
|
|
},
|
|
|
|
|
2014-02-16 08:55:17 -05:00
|
|
|
_onProxyReady: function(proxy, error) {
|
2014-02-15 08:42:43 -05:00
|
|
|
if (error != null) {
|
2014-02-16 08:55:17 -05:00
|
|
|
log(error.message);
|
2014-02-13 12:50:32 -05:00
|
|
|
this._connecting = false;
|
2014-02-15 08:42:43 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._proxy = proxy;
|
2014-02-16 20:17:46 -05:00
|
|
|
this._propertiesChangedId = this._proxy.connect('g-properties-changed',
|
|
|
|
Lang.bind(this, this._onGeocluePropsChanged));
|
2014-01-28 12:41:26 -05:00
|
|
|
|
2014-02-16 20:20:28 -05:00
|
|
|
this._updateMenu();
|
2014-02-13 12:50:32 -05:00
|
|
|
this._syncIndicator();
|
|
|
|
|
|
|
|
this._proxy.AddAgentRemote('gnome-shell', Lang.bind(this, this._onAgentRegistered));
|
|
|
|
},
|
|
|
|
|
|
|
|
_onAgentRegistered: function(result, error) {
|
|
|
|
this._connecting = false;
|
|
|
|
this._notifyMaxAccuracyLevel();
|
|
|
|
|
|
|
|
if (error != null)
|
2014-02-16 08:55:17 -05:00
|
|
|
log(error.message);
|
2014-01-28 12:41:26 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_onGeoclueVanished: function() {
|
2014-02-16 20:17:46 -05:00
|
|
|
if (this._propertiesChangedId) {
|
|
|
|
this._proxy.disconnect(this._propertiesChangedId);
|
|
|
|
this._propertiesChangedId = 0;
|
|
|
|
}
|
2014-01-28 12:41:26 -05:00
|
|
|
this._proxy = null;
|
|
|
|
|
2014-02-13 12:50:32 -05:00
|
|
|
this._syncIndicator();
|
|
|
|
},
|
|
|
|
|
|
|
|
_onOnOffAction: function() {
|
2014-02-16 10:06:55 -05:00
|
|
|
if (this._getMaxAccuracyLevel() == 0)
|
|
|
|
this._settings.set_enum(MAX_ACCURACY_LEVEL, this._availableAccuracyLevel);
|
2014-02-13 12:50:32 -05:00
|
|
|
else
|
2014-02-17 10:42:48 -05:00
|
|
|
this._settings.set_enum(MAX_ACCURACY_LEVEL, 0);
|
2014-02-13 12:50:32 -05:00
|
|
|
},
|
|
|
|
|
2014-02-16 10:06:55 -05:00
|
|
|
_onMaxAccuracyLevelChanged: function() {
|
2014-02-17 10:42:48 -05:00
|
|
|
if (this._getMaxAccuracyLevel() == 0) {
|
|
|
|
this._item.status.text = _("Off");
|
|
|
|
this._onOffAction.label.text = _("Turn On");
|
2014-02-13 12:50:32 -05:00
|
|
|
} else {
|
2014-02-17 10:42:48 -05:00
|
|
|
this._item.status.text = _("On");
|
|
|
|
this._onOffAction.label.text = _("Turn Off");
|
2014-02-13 12:50:32 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Gotta ensure geoclue is up and we are registered as agent to it
|
|
|
|
// before we emit the notify for this property change.
|
|
|
|
if (!this._connectToGeoclue())
|
|
|
|
this._notifyMaxAccuracyLevel();
|
|
|
|
},
|
|
|
|
|
2014-02-16 10:06:55 -05:00
|
|
|
_getMaxAccuracyLevel: function() {
|
|
|
|
return this._settings.get_enum(MAX_ACCURACY_LEVEL);
|
|
|
|
},
|
2014-02-13 12:50:32 -05:00
|
|
|
|
2014-02-16 10:06:55 -05:00
|
|
|
_notifyMaxAccuracyLevel: function() {
|
|
|
|
let variant = new GLib.Variant('u', this._getMaxAccuracyLevel());
|
2014-02-16 08:55:17 -05:00
|
|
|
this._agent.emit_property_changed('MaxAccuracyLevel', variant);
|
2014-02-15 10:46:07 -05:00
|
|
|
},
|
|
|
|
|
2014-02-16 20:20:28 -05:00
|
|
|
_updateMenu: function() {
|
2014-02-15 11:28:58 -05:00
|
|
|
this._availableAccuracyLevel = this._proxy.AvailableAccuracyLevel;
|
2014-02-15 10:46:07 -05:00
|
|
|
this.menu.actor.visible = (this._availableAccuracyLevel != 0);
|
2014-02-15 11:28:58 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_onGeocluePropsChanged: function(proxy, properties) {
|
|
|
|
let unpacked = properties.deep_unpack();
|
|
|
|
if ("InUse" in unpacked)
|
|
|
|
this._syncIndicator();
|
|
|
|
if ("AvailableAccuracyLevel" in unpacked)
|
2014-02-16 20:20:28 -05:00
|
|
|
this._updateMenu();
|
2014-01-28 12:41:26 -05:00
|
|
|
}
|
|
|
|
});
|
2014-02-13 12:50:32 -05:00
|
|
|
|
|
|
|
function clamp(value, min, max) {
|
|
|
|
return Math.max(min, Math.min(max, value));
|
|
|
|
}
|