2011-09-28 09:16:26 -04:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2013-06-12 00:03:36 -04:00
|
|
|
const Clutter = imports.gi.Clutter;
|
2011-01-25 16:08:12 -05:00
|
|
|
const GLib = imports.gi.GLib;
|
|
|
|
const GObject = imports.gi.GObject;
|
2012-08-26 09:49:18 -04:00
|
|
|
const Gio = imports.gi.Gio;
|
2013-06-12 00:03:36 -04:00
|
|
|
const Gtk = imports.gi.Gtk;
|
2011-01-25 16:08:12 -05:00
|
|
|
const Lang = imports.lang;
|
|
|
|
const NetworkManager = imports.gi.NetworkManager;
|
|
|
|
const NMClient = imports.gi.NMClient;
|
2013-04-25 14:00:11 -04:00
|
|
|
const NMGtk = imports.gi.NMGtk;
|
2011-01-25 16:08:12 -05:00
|
|
|
const Signals = imports.signals;
|
|
|
|
const St = imports.gi.St;
|
|
|
|
|
2013-04-26 19:21:02 -04:00
|
|
|
const Hash = imports.misc.hash;
|
2011-01-25 16:08:12 -05:00
|
|
|
const Main = imports.ui.main;
|
|
|
|
const PanelMenu = imports.ui.panelMenu;
|
|
|
|
const PopupMenu = imports.ui.popupMenu;
|
|
|
|
const MessageTray = imports.ui.messageTray;
|
2012-11-03 21:11:08 -04:00
|
|
|
const NotificationDaemon = imports.ui.notificationDaemon;
|
2013-06-12 00:03:36 -04:00
|
|
|
const ModalDialog = imports.ui.modalDialog;
|
2011-01-25 16:08:12 -05:00
|
|
|
const ModemManager = imports.misc.modemManager;
|
|
|
|
const Util = imports.misc.util;
|
|
|
|
|
|
|
|
const NMConnectionCategory = {
|
2011-03-26 13:38:20 -04:00
|
|
|
INVALID: 'invalid',
|
2011-01-25 16:08:12 -05:00
|
|
|
WIRELESS: 'wireless',
|
|
|
|
WWAN: 'wwan',
|
|
|
|
VPN: 'vpn'
|
|
|
|
};
|
|
|
|
|
|
|
|
const NMAccessPointSecurity = {
|
|
|
|
NONE: 1,
|
|
|
|
WEP: 2,
|
2011-05-03 13:21:45 -04:00
|
|
|
WPA_PSK: 3,
|
|
|
|
WPA2_PSK: 4,
|
|
|
|
WPA_ENT: 5,
|
|
|
|
WPA2_ENT: 6
|
2011-01-25 16:08:12 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// small optimization, to avoid using [] all the time
|
|
|
|
const NM80211Mode = NetworkManager['80211Mode'];
|
|
|
|
const NM80211ApFlags = NetworkManager['80211ApFlags'];
|
|
|
|
const NM80211ApSecurityFlags = NetworkManager['80211ApSecurityFlags'];
|
|
|
|
|
|
|
|
function ssidCompare(one, two) {
|
|
|
|
if (!one || !two)
|
|
|
|
return false;
|
|
|
|
if (one.length != two.length)
|
|
|
|
return false;
|
|
|
|
for (let i = 0; i < one.length; i++) {
|
|
|
|
if (one[i] != two[i])
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function signalToIcon(value) {
|
|
|
|
if (value > 80)
|
|
|
|
return 'excellent';
|
|
|
|
if (value > 55)
|
|
|
|
return 'good';
|
|
|
|
if (value > 30)
|
|
|
|
return 'ok';
|
|
|
|
if (value > 5)
|
|
|
|
return 'weak';
|
|
|
|
return 'none';
|
|
|
|
}
|
|
|
|
|
2011-08-03 14:05:53 -04:00
|
|
|
function ssidToLabel(ssid) {
|
|
|
|
let label = NetworkManager.utils_ssid_to_utf8(ssid);
|
|
|
|
if (!label)
|
|
|
|
label = _("<unknown>");
|
|
|
|
return label;
|
|
|
|
}
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
const NMConnectionItem = new Lang.Class({
|
|
|
|
Name: 'NMConnectionItem',
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_init: function(section, connection) {
|
|
|
|
this._section = section;
|
|
|
|
this._connection = connection;
|
|
|
|
this._activeConnection = null;
|
|
|
|
this._activeConnectionChangedId = 0;
|
2011-03-25 11:27:56 -04:00
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
this.labelItem = new PopupMenu.PopupMenuItem('');
|
|
|
|
this.labelItem.connect('activate', Lang.bind(this, this._toggle));
|
|
|
|
|
|
|
|
this.switchItem = new PopupMenu.PopupSwitchMenuItem(connection.get_id(), false);
|
|
|
|
this.switchItem.connect('toggled', Lang.bind(this, this._toggle));
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
this._sync();
|
|
|
|
},
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
destroy: function() {
|
2013-04-29 15:11:14 -04:00
|
|
|
this.labelItem.destroy();
|
|
|
|
this.switchItem.destroy();
|
|
|
|
},
|
|
|
|
|
|
|
|
getName: function() {
|
|
|
|
return this.connection.get_id();
|
2013-06-11 20:13:37 -04:00
|
|
|
},
|
2011-03-25 11:27:56 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
isActive: function() {
|
|
|
|
if (this._activeConnection == null)
|
|
|
|
return false;
|
2011-03-25 11:27:56 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
return this._activeConnection.state == NetworkManager.ActiveConnectionState.ACTIVATED;
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_sync: function() {
|
2013-04-29 15:11:14 -04:00
|
|
|
let isActive = this.isActive();
|
|
|
|
this.labelItem.label.text = isActive ? _("Turn Off") : _("Connect");
|
|
|
|
this.switchItem.setToggleState(isActive);
|
|
|
|
this.switchItem.setStatus(this._getStatus());
|
2013-06-11 20:13:37 -04:00
|
|
|
this.emit('icon-changed');
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_toggle: function() {
|
|
|
|
if (this._activeConnection == null)
|
|
|
|
this._section.activateConnection(this._connection);
|
2011-04-07 17:21:08 -04:00
|
|
|
else
|
2013-06-11 20:13:37 -04:00
|
|
|
this._section.deactivateConnection(this._activeConnection);
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
|
|
|
_getStatus: function() {
|
|
|
|
return null;
|
|
|
|
},
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_connectionStateChanged: function(ac, newstate, reason) {
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
|
|
|
setActiveConnection: function(activeConnection) {
|
|
|
|
if (this._activeConnectionChangedId > 0) {
|
|
|
|
this._activeConnection.disconnect(this._activeConnectionChangedId);
|
|
|
|
this._activeConnectionChangedId = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._activeConnection = activeConnection;
|
|
|
|
|
|
|
|
if (this._activeConnection)
|
|
|
|
this._activeConnectionChangedId = this._activeConnection.connect('state-changed',
|
|
|
|
Lang.bind(this, this._connectionStateChanged));
|
|
|
|
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
});
|
|
|
|
Signals.addSignalMethods(NMConnectionItem.prototype);
|
|
|
|
|
|
|
|
const NMConnectionSection = new Lang.Class({
|
|
|
|
Name: 'NMConnectionSection',
|
2011-11-20 11:07:14 -05:00
|
|
|
Abstract: true,
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_init: function(client) {
|
2013-04-26 19:28:48 -04:00
|
|
|
this._client = client;
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
this._connectionItems = new Hash.Map();
|
2013-04-26 19:28:48 -04:00
|
|
|
this._connections = [];
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
this._labelSection = new PopupMenu.PopupMenuSection();
|
|
|
|
this._switchSection = new PopupMenu.PopupMenuSection();
|
2013-04-26 19:28:48 -04:00
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
this.item = new PopupMenu.PopupSubMenuMenuItem('', true);
|
|
|
|
this.item.menu.addMenuItem(this._labelSection);
|
|
|
|
this.item.menu.addMenuItem(this._switchSection);
|
2013-04-26 19:28:48 -04:00
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
this.connect('icon-changed', Lang.bind(this, this._sync));
|
2013-06-11 20:13:37 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function() {
|
|
|
|
this.statusItem.destroy();
|
|
|
|
this.section.destroy();
|
|
|
|
},
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_sync: function() {
|
|
|
|
let nItems = this._connectionItems.size();
|
|
|
|
|
|
|
|
this._switchSection.actor.visible = (nItems > 1);
|
|
|
|
this._labelSection.actor.visible = (nItems == 1);
|
|
|
|
|
|
|
|
this.item.status.text = this._getStatus();
|
|
|
|
this.item.icon.icon_name = this._getMenuIcon();
|
2013-07-17 01:01:44 -04:00
|
|
|
this.item.label.text = this._getDescription();
|
2013-04-29 15:11:14 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_getStatus: function() {
|
|
|
|
let values = this._connectionItems.values();
|
|
|
|
for (let i = 0; i < values; i++) {
|
|
|
|
let item = values[i];
|
|
|
|
if (item.isActive())
|
|
|
|
return item.getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
return _("Off");
|
2013-06-11 20:13:37 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_hasConnection: function(connection) {
|
|
|
|
return this._connectionItems.has(connection.get_uuid());
|
|
|
|
},
|
|
|
|
|
|
|
|
_connectionValid: function(connection) {
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_connectionSortFunction: function(one, two) {
|
|
|
|
if (one._timestamp == two._timestamp)
|
|
|
|
return GLib.utf8_collate(one.get_id(), two.get_id());
|
2013-04-26 19:28:48 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
return two._timestamp - one._timestamp;
|
|
|
|
},
|
|
|
|
|
|
|
|
_makeConnectionItem: function(connection) {
|
|
|
|
return new NMConnectionItem(this, connection);
|
2012-08-29 10:22:24 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
checkConnection: function(connection) {
|
2013-06-11 20:13:37 -04:00
|
|
|
if (!this._connectionValid(connection))
|
|
|
|
return;
|
2012-08-29 10:22:24 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
if (this._hasConnection(connection))
|
2012-08-29 10:22:24 -04:00
|
|
|
return;
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
this._addConnection(connection);
|
2012-08-29 10:22:24 -04:00
|
|
|
},
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_addConnection: function(connection) {
|
|
|
|
let item = this._makeConnectionItem(connection);
|
|
|
|
if (!item)
|
|
|
|
return;
|
2012-08-29 10:22:24 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
item.connect('icon-changed', Lang.bind(this, function() {
|
|
|
|
this.emit('icon-changed');
|
|
|
|
}));
|
|
|
|
item.connect('activation-failed', Lang.bind(this, function(item, reason) {
|
|
|
|
this.emit('activation-failed', reason);
|
|
|
|
}));
|
|
|
|
|
|
|
|
let pos = Util.insertSorted(this._connections, connection, this._connectionSortFunction);
|
2013-04-29 15:11:14 -04:00
|
|
|
this._labelSection.addMenuItem(item.labelItem, pos);
|
|
|
|
this._switchSection.addMenuItem(item.switchItem, pos);
|
2013-06-11 20:13:37 -04:00
|
|
|
this._connectionItems.set(connection.get_uuid(), item);
|
2013-04-29 15:11:14 -04:00
|
|
|
this._sync();
|
2012-08-29 10:22:24 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
removeConnection: function(connection) {
|
2013-06-11 20:13:37 -04:00
|
|
|
this._connectionItems.get(connection.get_uuid()).destroy();
|
|
|
|
this._connectionItems.delete(connection.get_uuid());
|
2012-08-29 10:22:24 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
let pos = this._connections.indexOf(connection);
|
2012-08-29 10:22:24 -04:00
|
|
|
this._connections.splice(pos, 1);
|
2013-04-29 15:11:14 -04:00
|
|
|
|
|
|
|
this._sync();
|
2012-08-29 10:22:24 -04:00
|
|
|
},
|
2013-06-11 20:13:37 -04:00
|
|
|
});
|
|
|
|
Signals.addSignalMethods(NMConnectionSection.prototype);
|
2012-08-29 10:22:24 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
const NMConnectionDevice = new Lang.Class({
|
|
|
|
Name: 'NMConnectionDevice',
|
|
|
|
Extends: NMConnectionSection,
|
|
|
|
Abstract: true,
|
2012-08-29 10:22:24 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_init: function(client, device) {
|
|
|
|
this.parent(client);
|
|
|
|
this._device = device;
|
2012-08-29 10:22:24 -04:00
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
this._autoConnectItem = this.item.menu.addAction(_("Connect"), Lang.bind(this, this._autoConnect));
|
|
|
|
this.item.menu.addSettingsAction(_("Network Settings"), 'gnome-network-panel.desktop');
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
this._stateChangedId = this._device.connect('state-changed', Lang.bind(this, this._deviceStateChanged));
|
|
|
|
this._activeConnectionChangedId = this._device.connect('notify::active-connection', Lang.bind(this, this._activeConnectionChanged));
|
2012-08-29 10:22:24 -04:00
|
|
|
},
|
2011-01-25 16:08:12 -05:00
|
|
|
|
|
|
|
destroy: function() {
|
2013-06-11 20:13:37 -04:00
|
|
|
if (this._stateChangedId) {
|
|
|
|
GObject.Object.prototype.disconnect.call(this._device, this._stateChangedId);
|
|
|
|
this._stateChangedId = 0;
|
|
|
|
}
|
|
|
|
if (this._activeConnectionChangedId) {
|
|
|
|
GObject.Object.prototype.disconnect.call(this._device, this._activeConnectionChangedId);
|
|
|
|
this._stateChangedId = 0;
|
2012-10-03 17:38:35 -04:00
|
|
|
}
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
this.parent();
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_activeConnectionChanged: function() {
|
|
|
|
if (this._activeConnection) {
|
|
|
|
let item = this._connectionItems.get(this._activeConnection._connection.get_uuid());
|
|
|
|
item.setActiveConnection(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._activeConnection = this._device.active_connection;
|
|
|
|
|
|
|
|
if (this._activeConnection) {
|
|
|
|
let item = this._connectionItems.get(this._activeConnection._connection.get_uuid());
|
|
|
|
item.setActiveConnection(this._activeConnection);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_deviceStateChanged: function(device, newstate, oldstate, reason) {
|
|
|
|
if (newstate == oldstate) {
|
|
|
|
log('device emitted state-changed without actually changing state');
|
|
|
|
return;
|
|
|
|
}
|
2012-12-04 08:49:34 -05:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
/* Emit a notification if activation fails, but don't do it
|
|
|
|
if the reason is no secrets, as that indicates the user
|
|
|
|
cancelled the agent dialog */
|
|
|
|
if (newstate == NetworkManager.DeviceState.FAILED &&
|
|
|
|
reason != NetworkManager.DeviceStateReason.NO_SECRETS) {
|
|
|
|
this.emit('activation-failed', reason);
|
2012-12-04 08:49:34 -05:00
|
|
|
}
|
2013-06-11 20:13:37 -04:00
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
this._sync();
|
2013-06-11 20:13:37 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
_connectionValid: function(connection) {
|
|
|
|
return this._device.connection_valid(connection);
|
|
|
|
},
|
|
|
|
|
|
|
|
activateConnection: function(connection) {
|
|
|
|
this._client.activate_connection(connection, this._device, null, null);
|
|
|
|
},
|
|
|
|
|
|
|
|
deactivateConnection: function(activeConnection) {
|
|
|
|
this._device.disconnect(null);
|
2012-12-04 08:49:34 -05:00
|
|
|
},
|
|
|
|
|
2013-07-17 01:01:44 -04:00
|
|
|
setDeviceDescription: function(desc) {
|
|
|
|
this._description = desc;
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_getDescription: function() {
|
2013-07-17 01:01:44 -04:00
|
|
|
return this._description;
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_sync: function() {
|
|
|
|
let nItems = this._connectionItems.size();
|
|
|
|
this._autoConnectItem.actor.visible = (nItems == 0);
|
|
|
|
this.parent();
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_getStatus: function() {
|
2013-06-11 19:56:17 -04:00
|
|
|
if (!this._device)
|
2012-12-04 08:49:34 -05:00
|
|
|
return null;
|
|
|
|
|
2013-06-11 19:56:17 -04:00
|
|
|
switch(this._device.state) {
|
2011-01-25 16:08:12 -05:00
|
|
|
case NetworkManager.DeviceState.DISCONNECTED:
|
|
|
|
case NetworkManager.DeviceState.ACTIVATED:
|
|
|
|
return null;
|
2011-05-09 10:15:03 -04:00
|
|
|
case NetworkManager.DeviceState.UNMANAGED:
|
|
|
|
/* Translators: this is for network devices that are physically present but are not
|
|
|
|
under NetworkManager's control (and thus cannot be used in the menu) */
|
|
|
|
return _("unmanaged");
|
|
|
|
case NetworkManager.DeviceState.DEACTIVATING:
|
|
|
|
return _("disconnecting...");
|
2011-01-25 16:08:12 -05:00
|
|
|
case NetworkManager.DeviceState.PREPARE:
|
|
|
|
case NetworkManager.DeviceState.CONFIG:
|
|
|
|
case NetworkManager.DeviceState.IP_CONFIG:
|
2011-04-19 09:31:54 -04:00
|
|
|
case NetworkManager.DeviceState.IP_CHECK:
|
|
|
|
case NetworkManager.DeviceState.SECONDARIES:
|
2011-01-25 16:08:12 -05:00
|
|
|
return _("connecting...");
|
|
|
|
case NetworkManager.DeviceState.NEED_AUTH:
|
|
|
|
/* Translators: this is for network connections that require some kind of key or password */
|
|
|
|
return _("authentication required");
|
|
|
|
case NetworkManager.DeviceState.UNAVAILABLE:
|
2011-03-25 12:10:38 -04:00
|
|
|
// This state is actually a compound of various states (generically unavailable,
|
2013-06-12 14:38:20 -04:00
|
|
|
// firmware missing), that are exposed by different properties (whose state may
|
|
|
|
// or may not updated when we receive state-changed).
|
2013-06-11 19:56:17 -04:00
|
|
|
if (this._device.firmware_missing) {
|
2011-03-25 12:10:38 -04:00
|
|
|
/* Translators: this is for devices that require some kind of firmware or kernel
|
|
|
|
module, which is missing */
|
|
|
|
return _("firmware missing");
|
|
|
|
}
|
|
|
|
/* Translators: this is for a network device that cannot be activated (for example it
|
|
|
|
is disabled by rfkill, or it has no coverage */
|
|
|
|
return _("unavailable");
|
2011-01-25 16:08:12 -05:00
|
|
|
case NetworkManager.DeviceState.FAILED:
|
|
|
|
return _("connection failed");
|
|
|
|
default:
|
2013-06-11 19:56:17 -04:00
|
|
|
log('Device state invalid, is %d'.format(this._device.state));
|
2011-01-25 16:08:12 -05:00
|
|
|
return 'invalid';
|
|
|
|
}
|
|
|
|
},
|
2011-11-20 11:07:14 -05:00
|
|
|
});
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2011-11-20 11:07:14 -05:00
|
|
|
const NMDeviceModem = new Lang.Class({
|
|
|
|
Name: 'NMDeviceModem',
|
2013-06-11 20:13:37 -04:00
|
|
|
Extends: NMConnectionDevice,
|
2013-06-12 15:27:09 -04:00
|
|
|
category: NMConnectionCategory.WWAN,
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-07-17 01:10:42 -04:00
|
|
|
_init: function(client, device) {
|
|
|
|
this.parent(client, device);
|
2013-06-11 20:13:37 -04:00
|
|
|
this._mobileDevice = null;
|
|
|
|
|
|
|
|
let capabilities = device.current_capabilities;
|
|
|
|
if (device.udi.indexOf('/org/freedesktop/ModemManager1/Modem') == 0)
|
|
|
|
this._mobileDevice = new ModemManager.BroadbandModem(device.udi, capabilities);
|
|
|
|
else if (capabilities & NetworkManager.DeviceModemCapabilities.GSM_UMTS)
|
|
|
|
this._mobileDevice = new ModemManager.ModemGsm(device.udi);
|
|
|
|
else if (capabilities & NetworkManager.DeviceModemCapabilities.CDMA_EVDO)
|
|
|
|
this._mobileDevice = new ModemManager.ModemCdma(device.udi);
|
|
|
|
else if (capabilities & NetworkManager.DeviceModemCapabilities.LTE)
|
|
|
|
this._mobileDevice = new ModemManager.ModemGsm(device.udi);
|
|
|
|
|
|
|
|
if (this._mobileDevice) {
|
|
|
|
this._operatorNameId = this._mobileDevice.connect('notify::operator-name', Lang.bind(this, function() {
|
2011-01-25 16:08:12 -05:00
|
|
|
if (this._operatorItem) {
|
2013-06-11 20:13:37 -04:00
|
|
|
let name = this._mobileDevice.operator_name;
|
2011-01-25 16:08:12 -05:00
|
|
|
if (name) {
|
|
|
|
this._operatorItem.label.text = name;
|
|
|
|
this._operatorItem.actor.show();
|
|
|
|
} else
|
|
|
|
this._operatorItem.actor.hide();
|
|
|
|
}
|
|
|
|
}));
|
2013-06-11 20:13:37 -04:00
|
|
|
this._signalQualityId = this._mobileDevice.connect('notify::signal-quality', Lang.bind(this, function() {
|
2013-04-29 15:20:45 -04:00
|
|
|
this.emit('icon-changed');
|
2011-01-25 16:08:12 -05:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_autoConnect: function() {
|
|
|
|
Util.spawn(['gnome-control-center', 'network',
|
|
|
|
'connect-3g', this._device.get_path()]);
|
|
|
|
},
|
|
|
|
|
2011-01-25 16:08:12 -05:00
|
|
|
destroy: function() {
|
|
|
|
if (this._operatorNameId) {
|
2013-06-11 20:13:37 -04:00
|
|
|
this._mobileDevice.disconnect(this._operatorNameId);
|
2011-01-25 16:08:12 -05:00
|
|
|
this._operatorNameId = 0;
|
|
|
|
}
|
|
|
|
if (this._signalQualityId) {
|
2013-06-11 20:13:37 -04:00
|
|
|
this._mobileDevice.disconnect(this._signalQualityId);
|
2011-01-25 16:08:12 -05:00
|
|
|
this._signalQualityId = 0;
|
|
|
|
}
|
|
|
|
|
2011-11-20 11:07:14 -05:00
|
|
|
this.parent();
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_getMenuIcon: function() {
|
|
|
|
if (this._device.active_connection)
|
|
|
|
return this.getIndicatorIcon();
|
|
|
|
else
|
|
|
|
return 'network-cellular-signal-none-symbolic';
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_getSignalIcon: function() {
|
|
|
|
return 'network-cellular-signal-' + signalToIcon(this._mobileDevice.signal_quality) + '-symbolic';
|
2012-08-31 15:43:30 -04:00
|
|
|
},
|
2013-04-29 15:20:45 -04:00
|
|
|
|
|
|
|
getIndicatorIcon: function() {
|
2013-06-11 19:56:17 -04:00
|
|
|
if (this._device.active_connection.state == NetworkManager.ActiveConnectionState.ACTIVATING)
|
2013-04-29 15:20:45 -04:00
|
|
|
return 'network-cellular-acquiring-symbolic';
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
if (!this._mobileDevice) {
|
2013-04-29 15:20:45 -04:00
|
|
|
// this can happen for bluetooth in PAN mode
|
|
|
|
return 'network-cellular-connected-symbolic';
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._getSignalIcon();
|
|
|
|
}
|
2011-11-20 11:07:14 -05:00
|
|
|
});
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2011-11-20 11:07:14 -05:00
|
|
|
const NMDeviceBluetooth = new Lang.Class({
|
|
|
|
Name: 'NMDeviceBluetooth',
|
2013-06-11 20:13:37 -04:00
|
|
|
Extends: NMConnectionDevice,
|
2013-07-17 01:10:42 -04:00
|
|
|
category: NMConnectionCategory.WWAN,
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_autoConnect: function() {
|
2012-08-31 15:43:30 -04:00
|
|
|
// FIXME: DUN devices are configured like modems, so
|
2013-04-25 16:48:27 -04:00
|
|
|
// We need to spawn the mobile wizard
|
2012-08-31 15:43:30 -04:00
|
|
|
// but the network panel doesn't support bluetooth at the moment
|
|
|
|
// so we just create an empty connection and hope
|
|
|
|
// that this phone supports PAN
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
let connection = new NetworkManager.Connection();
|
|
|
|
this._client.add_and_activate_connection(connection, this._device, null, null);
|
|
|
|
return true;
|
2013-04-29 15:20:45 -04:00
|
|
|
},
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_getMenuIcon: function() {
|
|
|
|
if (this._device.active_connection)
|
|
|
|
return this.getIndicatorIcon();
|
2013-04-29 15:20:45 -04:00
|
|
|
else
|
2013-04-29 15:11:14 -04:00
|
|
|
return 'network-cellular-signal-none-symbolic';
|
2013-04-29 15:20:45 -04:00
|
|
|
},
|
2013-04-29 15:11:14 -04:00
|
|
|
|
|
|
|
getIndicatorIcon: function() {
|
|
|
|
let state = this._device.active_connection.state;
|
|
|
|
if (state == NetworkManager.ActiveConnectionState.ACTIVATING)
|
|
|
|
return 'network-cellular-acquiring-symbolic';
|
|
|
|
else if (state == NetworkManager.ActiveConnectionState.ACTIVATED)
|
|
|
|
return 'network-cellular-connected-symbolic';
|
|
|
|
else
|
|
|
|
return 'network-cellular-signal-none-symbolic';
|
|
|
|
}
|
2011-11-20 11:07:14 -05:00
|
|
|
});
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-12 00:03:36 -04:00
|
|
|
const NMWirelessDialogItem = new Lang.Class({
|
|
|
|
Name: 'NMWirelessDialogItem',
|
|
|
|
|
|
|
|
_init: function(network) {
|
|
|
|
this._network = network;
|
|
|
|
this._ap = network.accessPoints[0];
|
|
|
|
|
|
|
|
this.actor = new St.Button({ style_class: 'nm-dialog-item',
|
|
|
|
can_focus: true,
|
|
|
|
x_fill: true });
|
|
|
|
this.actor.connect('key-focus-in', Lang.bind(this, function() {
|
|
|
|
this.emit('selected');
|
|
|
|
}));
|
|
|
|
this.actor.connect('clicked', Lang.bind(this, function() {
|
|
|
|
this.actor.grab_key_focus();
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._content = new St.BoxLayout({ style_class: 'nm-dialog-item-box' });
|
|
|
|
this.actor.set_child(this._content);
|
|
|
|
|
|
|
|
let title = ssidToLabel(this._ap.get_ssid());
|
|
|
|
this._label = new St.Label({ text: title });
|
|
|
|
|
|
|
|
this.actor.label_actor = this._label;
|
|
|
|
this._content.add(this._label, { expand: true, x_align: St.Align.START });
|
|
|
|
|
|
|
|
this._icons = new St.BoxLayout({ style_class: 'nm-dialog-icons' });
|
|
|
|
this._content.add(this._icons, { x_fill: false, x_align: St.Align.END });
|
|
|
|
|
|
|
|
this._secureIcon = new St.Icon({ style_class: 'nm-dialog-icon' });
|
|
|
|
if (this._ap._secType != NMAccessPointSecurity.NONE)
|
|
|
|
this._secureIcon.icon_name = 'network-wireless-encrypted-symbolic';
|
|
|
|
this._icons.add_actor(this._secureIcon);
|
|
|
|
|
|
|
|
this._signalIcon = new St.Icon({ icon_name: this._getIcon(),
|
|
|
|
style_class: 'nm-dialog-icon' });
|
|
|
|
this._icons.add_actor(this._signalIcon);
|
|
|
|
},
|
|
|
|
|
|
|
|
updateBestAP: function(ap) {
|
|
|
|
this._ap = ap;
|
|
|
|
this._signalIcon.icon_name = this._getIcon();
|
|
|
|
},
|
|
|
|
|
|
|
|
_getIcon: function() {
|
|
|
|
if (this._ap.mode == NM80211Mode.ADHOC)
|
|
|
|
return 'network-workgroup-symbolic';
|
|
|
|
else
|
|
|
|
return 'network-wireless-signal-' + signalToIcon(this._ap.strength) + '-symbolic';
|
|
|
|
}
|
|
|
|
});
|
|
|
|
Signals.addSignalMethods(NMWirelessDialogItem.prototype);
|
|
|
|
|
|
|
|
const NMWirelessDialog = new Lang.Class({
|
|
|
|
Name: 'NMWirelessDialog',
|
|
|
|
Extends: ModalDialog.ModalDialog,
|
|
|
|
|
|
|
|
_init: function(client, device, settings) {
|
|
|
|
this.parent({ styleClass: 'nm-dialog' });
|
|
|
|
|
|
|
|
this._client = client;
|
|
|
|
this._device = device;
|
|
|
|
|
|
|
|
this._networks = [];
|
|
|
|
this._buildLayout();
|
|
|
|
|
|
|
|
let connections = settings.list_connections();
|
|
|
|
this._connections = connections.filter(Lang.bind(this, function(connection) {
|
|
|
|
return device.connection_valid(connection);
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._apAddedId = device.connect('access-point-added', Lang.bind(this, this._accessPointAdded));
|
|
|
|
this._apRemovedId = device.connect('access-point-removed', Lang.bind(this, this._accessPointRemoved));
|
|
|
|
|
|
|
|
// accessPointAdded will also create dialog items
|
|
|
|
let accessPoints = device.get_access_points() || [ ];
|
|
|
|
accessPoints.forEach(Lang.bind(this, function(ap) {
|
|
|
|
this._accessPointAdded(this._device, ap);
|
|
|
|
}));
|
|
|
|
|
|
|
|
this._selectedNetwork = null;
|
|
|
|
this._updateSensitivity();
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function() {
|
|
|
|
if (this._apAddedId) {
|
|
|
|
GObject.Object.prototype.disconnect.call(this._device, this._apAddedId);
|
|
|
|
this._apAddedId = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this._apRemovedId) {
|
|
|
|
GObject.Object.prototype.disconnect.call(this._device, this._apRemovedId);
|
|
|
|
this._apRemovedId = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.parent();
|
|
|
|
},
|
|
|
|
|
|
|
|
_updateSensitivity: function() {
|
|
|
|
let connectSensitive = this._selectedNetwork != null;
|
|
|
|
this._connectButton.reactive = connectSensitive;
|
|
|
|
this._connectButton.can_focus = connectSensitive;
|
|
|
|
},
|
|
|
|
|
|
|
|
_buildLayout: function() {
|
|
|
|
let headline = new St.BoxLayout({ style_class: 'nm-dialog-header-hbox' });
|
|
|
|
|
|
|
|
let icon = new St.Icon({ style_class: 'nm-dialog-header-icon',
|
|
|
|
icon_name: 'network-wireless-signal-excellent-symbolic' });
|
|
|
|
|
|
|
|
let titleBox = new St.BoxLayout({ vertical: true });
|
|
|
|
let title = new St.Label({ style_class: 'nm-dialog-header',
|
|
|
|
text: _("Wi-Fi Networks") });
|
|
|
|
let subtitle = new St.Label({ style_class: 'nm-dialog-subheader',
|
|
|
|
text: _("Select a network") });
|
|
|
|
titleBox.add(title);
|
|
|
|
titleBox.add(subtitle);
|
|
|
|
|
|
|
|
headline.add(icon);
|
|
|
|
headline.add(titleBox);
|
|
|
|
|
|
|
|
this.contentLayout.style_class = 'nm-dialog-content';
|
|
|
|
this.contentLayout.add(headline);
|
|
|
|
|
|
|
|
this._itemBox = new St.BoxLayout({ vertical: true });
|
|
|
|
this._scrollView = new St.ScrollView({ style_class: 'nm-dialog-scroll-view' });
|
|
|
|
this._scrollView.set_policy(Gtk.PolicyType.NEVER,
|
|
|
|
Gtk.PolicyType.AUTOMATIC);
|
|
|
|
this._scrollView.add_actor(this._itemBox);
|
|
|
|
this.contentLayout.add(this._scrollView);
|
|
|
|
|
|
|
|
this._disconnectButton = this.addButton({ action: Lang.bind(this, this.close),
|
|
|
|
label: _("Cancel"),
|
|
|
|
key: Clutter.Escape });
|
|
|
|
this._connectButton = this.addButton({ action: Lang.bind(this, this._connect),
|
|
|
|
label: _("Connect"),
|
|
|
|
key: Clutter.Return },
|
|
|
|
{ expand: true,
|
|
|
|
x_fill: false,
|
|
|
|
x_align: St.Align.END });
|
|
|
|
},
|
|
|
|
|
|
|
|
_connect: function() {
|
|
|
|
let network = this._selectedNetwork;
|
|
|
|
let accessPoints = network.accessPoints;
|
|
|
|
if (network.connections.length > 0) {
|
|
|
|
let connection = network.connections[0];
|
|
|
|
for (let i = 0; i < accessPoints.length; i++) {
|
|
|
|
if (accessPoints[i].connection_valid(connection)) {
|
|
|
|
this._client.activate_connection(connection, this._device, accessPoints[i].dbus_path, null);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ((accessPoints[0]._secType == NMAccessPointSecurity.WPA2_ENT)
|
|
|
|
|| (accessPoints[0]._secType == NMAccessPointSecurity.WPA_ENT)) {
|
|
|
|
// 802.1x-enabled APs require further configuration, so they're
|
|
|
|
// handled in gnome-control-center
|
|
|
|
Util.spawn(['gnome-control-center', 'network', 'connect-8021x-wifi',
|
|
|
|
this._device.get_path(), accessPoints[0].dbus_path]);
|
|
|
|
} else {
|
|
|
|
let connection = new NetworkManager.Connection();
|
|
|
|
this._client.add_and_activate_connection(connection, this._device, accessPoints[0].dbus_path, null)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.close();
|
|
|
|
},
|
|
|
|
|
|
|
|
_notifySsidCb: function(accessPoint) {
|
|
|
|
if (accessPoint.get_ssid() != null) {
|
|
|
|
accessPoint.disconnect(accessPoint._notifySsidId);
|
|
|
|
accessPoint._notifySsidId = 0;
|
|
|
|
this._accessPointAdded(this._device, accessPoint);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_getApSecurityType: function(accessPoint) {
|
|
|
|
if (accessPoint._secType)
|
|
|
|
return accessPoint._secType;
|
|
|
|
|
|
|
|
let flags = accessPoint.flags;
|
|
|
|
let wpa_flags = accessPoint.wpa_flags;
|
|
|
|
let rsn_flags = accessPoint.rsn_flags;
|
|
|
|
let type;
|
|
|
|
if (rsn_flags != NM80211ApSecurityFlags.NONE) {
|
|
|
|
/* RSN check first so that WPA+WPA2 APs are treated as RSN/WPA2 */
|
|
|
|
if (rsn_flags & NM80211ApSecurityFlags.KEY_MGMT_802_1X)
|
|
|
|
type = NMAccessPointSecurity.WPA2_ENT;
|
|
|
|
else if (rsn_flags & NM80211ApSecurityFlags.KEY_MGMT_PSK)
|
|
|
|
type = NMAccessPointSecurity.WPA2_PSK;
|
|
|
|
} else if (wpa_flags != NM80211ApSecurityFlags.NONE) {
|
|
|
|
if (wpa_flags & NM80211ApSecurityFlags.KEY_MGMT_802_1X)
|
|
|
|
type = NMAccessPointSecurity.WPA_ENT;
|
|
|
|
else if (wpa_flags & NM80211ApSecurityFlags.KEY_MGMT_PSK)
|
|
|
|
type = NMAccessPointSecurity.WPA_PSK;
|
|
|
|
} else {
|
|
|
|
if (flags & NM80211ApFlags.PRIVACY)
|
|
|
|
type = NMAccessPointSecurity.WEP;
|
|
|
|
else
|
|
|
|
type = NMAccessPointSecurity.NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// cache the found value to avoid checking flags all the time
|
|
|
|
accessPoint._secType = type;
|
|
|
|
return type;
|
|
|
|
},
|
|
|
|
|
|
|
|
_networkSortFunction: function(one, two) {
|
|
|
|
let oneHasConnection = one.connections.length != 0;
|
|
|
|
let twoHasConnection = two.connections.length != 0;
|
|
|
|
|
|
|
|
// place known connections first
|
|
|
|
// (-1 = good order, 1 = wrong order)
|
|
|
|
if (oneHasConnection && !twoHasConnection)
|
|
|
|
return -1;
|
|
|
|
else if (!oneHasConnection && twoHasConnection)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
let oneStrength = one.accessPoints[0].strength;
|
|
|
|
let twoStrength = two.accessPoints[0].strength;
|
|
|
|
|
|
|
|
// place stronger connections first
|
|
|
|
if (oneStrength != twoStrength)
|
|
|
|
return oneStrength < twoStrength ? 1 : -1;
|
|
|
|
|
|
|
|
let oneHasSecurity = one.security != NMAccessPointSecurity.NONE;
|
|
|
|
let twoHasSecurity = two.security != NMAccessPointSecurity.NONE;
|
|
|
|
|
|
|
|
// place secure connections first
|
|
|
|
// (we treat WEP/WPA/WPA2 the same as there is no way to
|
|
|
|
// take them apart from the UI)
|
|
|
|
if (oneHasSecurity && !twoHasSecurity)
|
|
|
|
return -1;
|
|
|
|
else if (!oneHasSecurity && twoHasSecurity)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// sort alphabetically
|
|
|
|
return GLib.utf8_collate(one.ssidText, two.ssidText);
|
|
|
|
},
|
|
|
|
|
|
|
|
_networkCompare: function(network, accessPoint) {
|
|
|
|
if (!ssidCompare(network.ssid, accessPoint.get_ssid()))
|
|
|
|
return false;
|
|
|
|
if (network.mode != accessPoint.mode)
|
|
|
|
return false;
|
|
|
|
if (network.security != this._getApSecurityType(accessPoint))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_findExistingNetwork: function(accessPoint) {
|
|
|
|
for (let i = 0; i < this._networks.length; i++) {
|
|
|
|
let network = this._networks[i];
|
|
|
|
for (let j = 0; j < network.accessPoints.length; j++) {
|
|
|
|
if (network.accessPoints[j] == accessPoint)
|
|
|
|
return { network: i, ap: j };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
},
|
|
|
|
|
|
|
|
_findNetwork: function(accessPoint) {
|
|
|
|
if (accessPoint.get_ssid() == null)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (let i = 0; i < this._networks.length; i++) {
|
|
|
|
if (this._networkCompare(this._networks[i], accessPoint))
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
},
|
|
|
|
|
|
|
|
_checkConnections: function(network, accessPoint) {
|
|
|
|
this._connections.forEach(function(connection) {
|
|
|
|
if (accessPoint.connection_valid(connection) &&
|
|
|
|
network.connections.indexOf(connection) == -1) {
|
|
|
|
network.connections.push(connection);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
_accessPointAdded: function(device, accessPoint) {
|
|
|
|
if (accessPoint.get_ssid() == null) {
|
|
|
|
// This access point is not visible yet
|
|
|
|
// Wait for it to get a ssid
|
|
|
|
accessPoint._notifySsidId = accessPoint.connect('notify::ssid', Lang.bind(this, this._notifySsidCb));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let pos = this._findNetwork(accessPoint);
|
|
|
|
let network;
|
|
|
|
|
|
|
|
if (pos != -1) {
|
|
|
|
network = this._networks[pos];
|
|
|
|
if (network.accessPoints.indexOf(accessPoint) != -1) {
|
|
|
|
log('Access point was already seen, not adding again');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Util.insertSorted(network.accessPoints, accessPoint, function(one, two) {
|
|
|
|
return two.strength - one.strength;
|
|
|
|
});
|
|
|
|
network.item.updateBestAP(network.accessPoints[0]);
|
|
|
|
this._checkConnections(network, accessPoint);
|
|
|
|
|
|
|
|
this._resortItems();
|
|
|
|
} else {
|
|
|
|
network = { ssid: accessPoint.get_ssid(),
|
|
|
|
mode: accessPoint.mode,
|
|
|
|
security: this._getApSecurityType(accessPoint),
|
|
|
|
connections: [ ],
|
|
|
|
item: null,
|
|
|
|
accessPoints: [ accessPoint ]
|
|
|
|
};
|
|
|
|
network.ssidText = ssidToLabel(network.ssid);
|
|
|
|
this._checkConnections(network, accessPoint);
|
|
|
|
|
|
|
|
let newPos = Util.insertSorted(this._networks, network, this._networkSortFunction);
|
|
|
|
this._createNetworkItem(network);
|
|
|
|
this._itemBox.insert_child_at_index(network.item.actor, newPos);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_accessPointRemoved: function(device, accessPoint) {
|
|
|
|
let res = this._findExistingNetwork(accessPoint);
|
|
|
|
|
|
|
|
if (res == null) {
|
|
|
|
log('Removing an access point that was never added');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let network = this._networks[res.network];
|
|
|
|
network.accessPoints.splice(res.ap, 1);
|
|
|
|
|
|
|
|
if (network.accessPoints.length == 0) {
|
|
|
|
network.item.destroy();
|
|
|
|
this._networks.splice(res.network, 1);
|
|
|
|
} else {
|
|
|
|
network.item.updateBestAP(network.accessPoints[0]);
|
|
|
|
this._resortItems();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_resortItems: function() {
|
|
|
|
let adjustment = this._scrollView.vscroll.adjustment;
|
|
|
|
let scrollValue = adjustment.value;
|
|
|
|
|
|
|
|
this._itemBox.remove_all_children();
|
|
|
|
this._networks.forEach(Lang.bind(this, function(network) {
|
|
|
|
this._itemBox.add_child(network.item.actor);
|
|
|
|
}));
|
|
|
|
|
|
|
|
adjustment.value = scrollValue;
|
|
|
|
},
|
|
|
|
|
|
|
|
_selectNetwork: function(network) {
|
|
|
|
if (this._selectedNetwork)
|
|
|
|
this._selectedNetwork.item.actor.checked = false;
|
|
|
|
|
|
|
|
this._selectedNetwork = network;
|
|
|
|
this._updateSensitivity();
|
|
|
|
|
|
|
|
if (this._selectedNetwork)
|
|
|
|
this._selectedNetwork.item.actor.checked = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
_createNetworkItem: function(network) {
|
|
|
|
network.item = new NMWirelessDialogItem(network);
|
|
|
|
network.item.connect('selected', Lang.bind(this, function() {
|
|
|
|
Util.ensureActorVisibleInScrollView(this._scrollView, network.item.actor);
|
|
|
|
this._selectNetwork(network);
|
|
|
|
}));
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
const NMDeviceWireless = new Lang.Class({
|
|
|
|
Name: 'NMDeviceWireless',
|
|
|
|
category: NMConnectionCategory.WIRELESS,
|
|
|
|
|
|
|
|
_init: function(client, device, settings) {
|
|
|
|
this._client = client;
|
|
|
|
this._device = device;
|
|
|
|
this._settings = settings;
|
|
|
|
|
|
|
|
this._description = '';
|
|
|
|
|
|
|
|
this.item = new PopupMenu.PopupSubMenuMenuItem('', true);
|
|
|
|
this.item.menu.addAction(_("Select Network"), Lang.bind(this, this._showDialog));
|
|
|
|
|
|
|
|
this._toggleItem = new PopupMenu.PopupMenuItem('');
|
|
|
|
this._toggleItem.connect('activate', Lang.bind(this, this._toggleWifi));
|
|
|
|
this.item.menu.addMenuItem(this._toggleItem);
|
|
|
|
|
|
|
|
this.item.menu.addSettingsAction(_("Network Settings"), 'gnome-network-panel.desktop');
|
|
|
|
|
|
|
|
this._wirelessEnabledChangedId = this._device.connect('notify::wireless-enabled', Lang.bind(this, this._sync));
|
|
|
|
this._activeApChangedId = this._device.connect('notify::active-access-point', Lang.bind(this, this._activeApChanged));
|
|
|
|
this._stateChangedId = this._device.connect('state-changed', Lang.bind(this, this._deviceStateChanged));
|
|
|
|
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function() {
|
|
|
|
if (this._activeApChangedId) {
|
|
|
|
GObject.Object.prototype.disconnect.call(this._device, this._activeApChangedId);
|
|
|
|
this._activeApChangedId = 0;
|
|
|
|
}
|
|
|
|
if (this._stateChangedId) {
|
|
|
|
GObject.Object.prototype.disconnect.call(this._device, this._stateChangedId);
|
|
|
|
this._stateChangedId = 0;
|
|
|
|
}
|
|
|
|
if (this._strengthChangedId > 0) {
|
|
|
|
this._activeAccessPoint.disconnect(this._strengthChangedId);
|
|
|
|
this._strengthChangedId = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.item.destroy();
|
|
|
|
},
|
|
|
|
|
|
|
|
_deviceStateChanged: function(device, newstate, oldstate, reason) {
|
|
|
|
if (newstate == oldstate) {
|
|
|
|
log('device emitted state-changed without actually changing state');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Emit a notification if activation fails, but don't do it
|
|
|
|
if the reason is no secrets, as that indicates the user
|
|
|
|
cancelled the agent dialog */
|
|
|
|
if (newstate == NetworkManager.DeviceState.FAILED &&
|
|
|
|
reason != NetworkManager.DeviceStateReason.NO_SECRETS) {
|
|
|
|
this.emit('activation-failed', reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
|
|
|
_toggleWifi: function() {
|
|
|
|
this._client.wireless_enabled = !this._client.wireless_enabled;
|
|
|
|
},
|
|
|
|
|
|
|
|
_showDialog: function() {
|
|
|
|
this._dialog = new NMWirelessDialog(this._client, this._device, this._settings);
|
|
|
|
this._dialog.connect('closed', Lang.bind(this, this._dialogClosed));
|
|
|
|
this._dialog.open();
|
|
|
|
},
|
|
|
|
|
|
|
|
_dialogClosed: function() {
|
|
|
|
this._dialog.destroy();
|
|
|
|
this._dialog = null;
|
|
|
|
},
|
|
|
|
|
|
|
|
_strengthChanged: function() {
|
|
|
|
this.emit('icon-changed');
|
|
|
|
},
|
|
|
|
|
|
|
|
_activeApChanged: function() {
|
|
|
|
if (this._activeAccessPoint) {
|
|
|
|
this._activeAccessPoint.disconnect(this._strengthChangedId);
|
|
|
|
this._strengthChangedId = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._activeAccessPoint = this._device.active_access_point;
|
|
|
|
|
|
|
|
if (this._activeAccessPoint) {
|
|
|
|
this._strengthChangedId = this._activeAccessPoint.connect('notify::strength',
|
|
|
|
Lang.bind(this, this._strengthChanged));
|
|
|
|
}
|
|
|
|
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
|
|
|
_sync: function() {
|
|
|
|
this._toggleItem.label.text = this._client.wireless_enabled ? _("Turn Off") : _("Turn On");
|
|
|
|
|
|
|
|
this.item.status.text = this._getStatus();
|
|
|
|
this.item.icon.icon_name = this._getMenuIcon();
|
|
|
|
this.item.label.text = this._description;
|
|
|
|
},
|
|
|
|
|
|
|
|
setDeviceDescription: function(desc) {
|
|
|
|
this._description = desc;
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
|
|
|
_getStatus: function() {
|
|
|
|
let ap = this._device.active_access_point;
|
|
|
|
if (!ap)
|
|
|
|
return _("Off"); // XXX -- interpret actual status
|
|
|
|
|
|
|
|
return ssidToLabel(ap.get_ssid());
|
|
|
|
},
|
|
|
|
|
|
|
|
_getMenuIcon: function() {
|
|
|
|
if (this._device.active_connection)
|
|
|
|
return this.getIndicatorIcon();
|
|
|
|
else
|
|
|
|
return 'network-wireless-signal-none-symbolic';
|
|
|
|
},
|
|
|
|
|
|
|
|
getIndicatorIcon: function() {
|
|
|
|
if (this._device.active_connection.state == NetworkManager.ActiveConnectionState.ACTIVATING)
|
|
|
|
return 'network-wireless-acquiring-symbolic';
|
|
|
|
|
|
|
|
let ap = this._device.active_access_point;
|
|
|
|
if (!ap) {
|
|
|
|
if (this._device.mode != NM80211Mode.ADHOC)
|
|
|
|
log('An active wireless connection, in infrastructure mode, involves no access point?');
|
|
|
|
|
|
|
|
return 'network-wireless-connected-symbolic';
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'network-wireless-signal-' + signalToIcon(ap.strength) + '-symbolic';
|
|
|
|
},
|
|
|
|
});
|
|
|
|
Signals.addSignalMethods(NMDeviceWireless.prototype);
|
|
|
|
|
2013-04-26 19:21:02 -04:00
|
|
|
const NMVPNConnectionItem = new Lang.Class({
|
|
|
|
Name: 'NMVPNConnectionItem',
|
2013-06-11 20:13:37 -04:00
|
|
|
Extends: NMConnectionItem,
|
2012-08-29 10:22:24 -04:00
|
|
|
|
2013-04-26 19:21:02 -04:00
|
|
|
isActive: function() {
|
|
|
|
if (this._activeConnection == null)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return this._activeConnection.vpn_state == NetworkManager.VPNConnectionState.ACTIVATED;
|
|
|
|
},
|
|
|
|
|
|
|
|
_getStatus: function() {
|
|
|
|
if (this._activeConnection == null)
|
|
|
|
return null;
|
|
|
|
|
|
|
|
switch(this._activeConnection.vpn_state) {
|
2012-08-29 10:22:24 -04:00
|
|
|
case NetworkManager.VPNConnectionState.DISCONNECTED:
|
|
|
|
case NetworkManager.VPNConnectionState.ACTIVATED:
|
|
|
|
return null;
|
|
|
|
case NetworkManager.VPNConnectionState.PREPARE:
|
|
|
|
case NetworkManager.VPNConnectionState.CONNECT:
|
|
|
|
case NetworkManager.VPNConnectionState.IP_CONFIG_GET:
|
|
|
|
return _("connecting...");
|
|
|
|
case NetworkManager.VPNConnectionState.NEED_AUTH:
|
|
|
|
/* Translators: this is for network connections that require some kind of key or password */
|
|
|
|
return _("authentication required");
|
|
|
|
case NetworkManager.VPNConnectionState.FAILED:
|
|
|
|
return _("connection failed");
|
|
|
|
default:
|
|
|
|
return 'invalid';
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2013-04-26 19:21:02 -04:00
|
|
|
_connectionStateChanged: function(ac, newstate, reason) {
|
2012-10-02 15:02:59 -04:00
|
|
|
if (newstate == NetworkManager.VPNConnectionState.FAILED &&
|
|
|
|
reason != NetworkManager.VPNConnectionStateReason.NO_SECRETS) {
|
2012-08-29 10:22:24 -04:00
|
|
|
// FIXME: if we ever want to show something based on reason,
|
|
|
|
// we need to convert from NetworkManager.VPNConnectionStateReason
|
|
|
|
// to NetworkManager.DeviceStateReason
|
|
|
|
this.emit('activation-failed', reason);
|
|
|
|
}
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
this.parent();
|
2013-04-26 19:21:02 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
setActiveConnection: function(activeConnection) {
|
|
|
|
if (this._activeConnectionChangedId > 0) {
|
|
|
|
this._activeConnection.disconnect(this._activeConnectionChangedId);
|
|
|
|
this._activeConnectionChangedId = 0;
|
2012-08-29 10:22:24 -04:00
|
|
|
}
|
2013-04-29 15:20:45 -04:00
|
|
|
|
2013-04-26 19:21:02 -04:00
|
|
|
this._activeConnection = activeConnection;
|
|
|
|
|
|
|
|
if (this._activeConnection)
|
|
|
|
this._activeConnectionChangedId = this._activeConnection.connect('vpn-state-changed',
|
|
|
|
Lang.bind(this, this._connectionStateChanged));
|
|
|
|
|
|
|
|
this._sync();
|
2013-04-29 15:20:45 -04:00
|
|
|
},
|
|
|
|
|
2013-04-26 19:21:02 -04:00
|
|
|
getIndicatorIcon: function() {
|
|
|
|
if (this._activeConnection) {
|
|
|
|
if (this._activeConnection.state == NetworkManager.ActiveConnectionState.ACTIVATING)
|
2013-04-29 15:20:45 -04:00
|
|
|
return 'network-vpn-acquiring-symbolic';
|
|
|
|
else
|
|
|
|
return 'network-vpn-symbolic';
|
|
|
|
} else {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
},
|
2013-04-26 19:21:02 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
const NMVPNSection = new Lang.Class({
|
|
|
|
Name: 'NMVPNSection',
|
2013-06-11 20:13:37 -04:00
|
|
|
Extends: NMConnectionSection,
|
2013-04-26 19:21:02 -04:00
|
|
|
category: NMConnectionCategory.VPN,
|
|
|
|
|
2013-04-29 15:11:14 -04:00
|
|
|
_init: function(client) {
|
|
|
|
this.parent(client);
|
|
|
|
this._sync();
|
|
|
|
},
|
|
|
|
|
|
|
|
_sync: function() {
|
|
|
|
let nItems = this._connectionItems.size();
|
|
|
|
this.item.actor.visible = (nItems > 0);
|
|
|
|
this.parent();
|
|
|
|
},
|
|
|
|
|
|
|
|
_getDescription: function() {
|
|
|
|
return _("VPN");
|
|
|
|
},
|
|
|
|
|
|
|
|
_getMenuIcon: function() {
|
|
|
|
return this.getIndicatorIcon() || 'network-vpn-symbolic';
|
|
|
|
},
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
activateConnection: function(connection) {
|
|
|
|
this._client.activate_connection(connection, null, null, null);
|
2013-04-26 19:21:02 -04:00
|
|
|
},
|
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
deactivateConnection: function(activeConnection) {
|
|
|
|
this._client.deactivate_connection(activeConnection);
|
2013-04-26 19:21:02 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
addActiveConnection: function(activeConnection) {
|
|
|
|
let item = this._connectionItems.get(activeConnection._connection.get_uuid());
|
|
|
|
item.setActiveConnection(activeConnection);
|
|
|
|
},
|
|
|
|
|
|
|
|
removeActiveConnection: function(activeConnection) {
|
|
|
|
let item = this._connectionItems.get(activeConnection._connection.get_uuid());
|
|
|
|
item.setActiveConnection(null);
|
|
|
|
},
|
2013-04-29 15:20:45 -04:00
|
|
|
|
2013-06-11 20:13:37 -04:00
|
|
|
_makeConnectionItem: function(connection) {
|
|
|
|
return new NMVPNConnectionItem(this, connection);
|
|
|
|
},
|
|
|
|
|
2013-04-29 15:20:45 -04:00
|
|
|
getIndicatorIcon: function() {
|
2013-04-26 19:21:02 -04:00
|
|
|
let items = this._connectionItems.values();
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
|
|
let item = items[i];
|
|
|
|
let icon = item.getIndicatorIcon();
|
2013-04-29 15:20:45 -04:00
|
|
|
if (icon)
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
return '';
|
2012-08-29 10:22:24 -04:00
|
|
|
},
|
|
|
|
});
|
2013-04-26 19:21:02 -04:00
|
|
|
Signals.addSignalMethods(NMVPNSection.prototype);
|
2012-08-29 10:22:24 -04:00
|
|
|
|
2011-11-20 09:38:48 -05:00
|
|
|
const NMApplet = new Lang.Class({
|
|
|
|
Name: 'NMApplet',
|
2013-06-06 17:27:25 -04:00
|
|
|
Extends: PanelMenu.SystemIndicator,
|
2011-01-25 16:08:12 -05:00
|
|
|
|
|
|
|
_init: function() {
|
2013-06-06 17:27:25 -04:00
|
|
|
this.parent();
|
2012-06-19 13:50:37 -04:00
|
|
|
|
2013-06-06 17:27:25 -04:00
|
|
|
this._primaryIndicator = this.addIndicator(null);
|
|
|
|
this._vpnIndicator = this.addIndicator(null);
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2012-09-03 13:57:53 -04:00
|
|
|
// Device types
|
|
|
|
this._dtypes = { };
|
2013-06-12 00:03:36 -04:00
|
|
|
this._dtypes[NetworkManager.DeviceType.WIFI] = NMDeviceWireless;
|
2012-09-03 13:57:53 -04:00
|
|
|
this._dtypes[NetworkManager.DeviceType.MODEM] = NMDeviceModem;
|
|
|
|
this._dtypes[NetworkManager.DeviceType.BT] = NMDeviceBluetooth;
|
|
|
|
// TODO: WiMax support
|
|
|
|
|
|
|
|
// Connection types
|
|
|
|
this._ctypes = { };
|
|
|
|
this._ctypes[NetworkManager.SETTING_WIRELESS_SETTING_NAME] = NMConnectionCategory.WIRELESS;
|
|
|
|
this._ctypes[NetworkManager.SETTING_BLUETOOTH_SETTING_NAME] = NMConnectionCategory.WWAN;
|
|
|
|
this._ctypes[NetworkManager.SETTING_CDMA_SETTING_NAME] = NMConnectionCategory.WWAN;
|
|
|
|
this._ctypes[NetworkManager.SETTING_GSM_SETTING_NAME] = NMConnectionCategory.WWAN;
|
|
|
|
this._ctypes[NetworkManager.SETTING_VPN_SETTING_NAME] = NMConnectionCategory.VPN;
|
|
|
|
|
|
|
|
NMClient.Client.new_async(null, Lang.bind(this, this._clientGot));
|
|
|
|
NMClient.RemoteSettings.new_async(null, null, Lang.bind(this, this._remoteSettingsGot));
|
|
|
|
},
|
|
|
|
|
|
|
|
_clientGot: function(obj, result) {
|
|
|
|
this._client = NMClient.Client.new_finish(result);
|
|
|
|
|
|
|
|
this._tryLateInit();
|
|
|
|
},
|
|
|
|
|
|
|
|
_remoteSettingsGot: function(obj, result) {
|
|
|
|
this._settings = NMClient.RemoteSettings.new_finish(result);
|
|
|
|
|
|
|
|
this._tryLateInit();
|
|
|
|
},
|
|
|
|
|
|
|
|
_tryLateInit: function() {
|
|
|
|
if (!this._client || !this._settings)
|
|
|
|
return;
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2012-05-18 12:34:07 -04:00
|
|
|
this._activeConnections = [ ];
|
|
|
|
this._connections = [ ];
|
|
|
|
|
|
|
|
this._mainConnection = null;
|
2013-04-29 15:20:45 -04:00
|
|
|
this._mainConnectionIconChangedId = 0;
|
2012-05-18 12:34:07 -04:00
|
|
|
|
2012-08-29 13:42:11 -04:00
|
|
|
this._nmDevices = [];
|
2011-01-25 16:08:12 -05:00
|
|
|
this._devices = { };
|
|
|
|
|
|
|
|
this._devices.wireless = {
|
|
|
|
section: new PopupMenu.PopupMenuSection(),
|
|
|
|
devices: [ ],
|
|
|
|
};
|
2013-06-07 13:23:57 -04:00
|
|
|
this.menu.addMenuItem(this._devices.wireless.section);
|
2011-01-25 16:08:12 -05:00
|
|
|
|
|
|
|
this._devices.wwan = {
|
|
|
|
section: new PopupMenu.PopupMenuSection(),
|
|
|
|
devices: [ ],
|
|
|
|
};
|
2013-06-07 13:23:57 -04:00
|
|
|
this.menu.addMenuItem(this._devices.wwan.section);
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-04-29 13:12:14 -04:00
|
|
|
this._vpnSection = new NMVPNSection(this._client);
|
2012-08-29 10:22:24 -04:00
|
|
|
this._vpnSection.connect('activation-failed', Lang.bind(this, this._onActivationFailed));
|
2013-04-29 15:20:45 -04:00
|
|
|
this._vpnSection.connect('icon-changed', Lang.bind(this, this._updateIcon));
|
2013-06-07 13:23:57 -04:00
|
|
|
this.menu.addMenuItem(this._vpnSection.item);
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2012-09-03 13:57:53 -04:00
|
|
|
this._readConnections();
|
|
|
|
this._readDevices();
|
|
|
|
this._syncNMState();
|
|
|
|
|
|
|
|
this._client.connect('notify::manager-running', Lang.bind(this, this._syncNMState));
|
|
|
|
this._client.connect('notify::networking-enabled', Lang.bind(this, this._syncNMState));
|
|
|
|
this._client.connect('notify::state', Lang.bind(this, this._syncNMState));
|
2013-07-03 13:47:21 -04:00
|
|
|
this._client.connect('notify::active-connections', Lang.bind(this, this._syncActiveConnections));
|
2012-09-03 13:57:53 -04:00
|
|
|
this._client.connect('device-added', Lang.bind(this, this._deviceAdded));
|
|
|
|
this._client.connect('device-removed', Lang.bind(this, this._deviceRemoved));
|
|
|
|
this._settings.connect('new-connection', Lang.bind(this, this._newConnection));
|
2013-06-12 03:37:50 -04:00
|
|
|
|
|
|
|
Main.sessionMode.connect('updated', Lang.bind(this, this._sessionUpdated));
|
|
|
|
this._sessionUpdated();
|
|
|
|
},
|
|
|
|
|
|
|
|
_sessionUpdated: function() {
|
|
|
|
let sensitive = !Main.sessionMode.isLocked && !Main.sessionMode.isGreeter;
|
2013-06-07 13:23:57 -04:00
|
|
|
this.menu.setSensitive(sensitive);
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_ensureSource: function() {
|
|
|
|
if (!this._source) {
|
2011-10-08 18:00:32 -04:00
|
|
|
this._source = new MessageTray.Source(_("Network Manager"),
|
2012-08-31 17:25:26 -04:00
|
|
|
'network-transmit-receive');
|
2012-11-03 21:11:08 -04:00
|
|
|
this._source.policy = new NotificationDaemon.NotificationApplicationPolicy('gnome-network-panel');
|
2011-10-08 18:00:32 -04:00
|
|
|
|
2011-08-22 12:21:31 -04:00
|
|
|
this._source.connect('destroy', Lang.bind(this, function() {
|
2011-01-25 16:08:12 -05:00
|
|
|
this._source = null;
|
|
|
|
}));
|
|
|
|
Main.messageTray.add(this._source);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_readDevices: function() {
|
|
|
|
let devices = this._client.get_devices() || [ ];
|
|
|
|
for (let i = 0; i < devices.length; ++i) {
|
2012-08-29 13:42:11 -04:00
|
|
|
this._deviceAdded(this._client, devices[i], true);
|
2011-01-25 16:08:12 -05:00
|
|
|
}
|
2012-08-29 13:42:11 -04:00
|
|
|
this._syncDeviceNames();
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2011-08-22 12:21:31 -04:00
|
|
|
_notifyForDevice: function(device, iconName, title, text, urgency) {
|
|
|
|
if (device._notification)
|
|
|
|
device._notification.destroy();
|
|
|
|
|
|
|
|
/* must call after destroying previous notification,
|
|
|
|
or this._source will be cleared */
|
|
|
|
this._ensureSource();
|
|
|
|
|
2012-09-14 10:33:52 -04:00
|
|
|
let gicon = new Gio.ThemedIcon({ name: iconName });
|
2011-08-22 12:21:31 -04:00
|
|
|
device._notification = new MessageTray.Notification(this._source, title, text,
|
2012-09-14 10:33:52 -04:00
|
|
|
{ gicon: gicon });
|
2011-08-22 12:21:31 -04:00
|
|
|
device._notification.setUrgency(urgency);
|
|
|
|
device._notification.setTransient(true);
|
|
|
|
device._notification.connect('destroy', function() {
|
|
|
|
device._notification = null;
|
|
|
|
});
|
|
|
|
this._source.notify(device._notification);
|
|
|
|
},
|
|
|
|
|
2012-08-29 10:22:24 -04:00
|
|
|
_onActivationFailed: function(device, reason) {
|
|
|
|
// XXX: nm-applet has no special text depending on reason
|
|
|
|
// but I'm not sure of this generic message
|
|
|
|
this._notifyForDevice(device, 'network-error-symbolic',
|
|
|
|
_("Connection failed"),
|
|
|
|
_("Activation of network connection failed"),
|
|
|
|
MessageTray.Urgency.HIGH);
|
|
|
|
},
|
|
|
|
|
2012-08-29 13:42:11 -04:00
|
|
|
_syncDeviceNames: function() {
|
2013-04-25 14:00:11 -04:00
|
|
|
let names = NMGtk.utils_disambiguate_device_names(this._nmDevices);
|
|
|
|
for (let i = 0; i < this._nmDevices.length; i++) {
|
|
|
|
let device = this._nmDevices[i];
|
2013-07-17 01:01:44 -04:00
|
|
|
let description = names[i];
|
2013-04-25 14:00:11 -04:00
|
|
|
if (device._delegate)
|
2013-07-17 01:01:44 -04:00
|
|
|
device._delegate.setDeviceDescription(description);
|
2012-08-29 13:42:11 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_deviceAdded: function(client, device, skipSyncDeviceNames) {
|
2011-01-25 16:08:12 -05:00
|
|
|
if (device._delegate) {
|
|
|
|
// already seen, not adding again
|
|
|
|
return;
|
|
|
|
}
|
2012-12-04 08:49:34 -05:00
|
|
|
|
2011-01-25 16:08:12 -05:00
|
|
|
let wrapperClass = this._dtypes[device.get_device_type()];
|
|
|
|
if (wrapperClass) {
|
2013-06-12 00:03:36 -04:00
|
|
|
let wrapper = new wrapperClass(this._client, device, this._settings);
|
2013-06-11 20:13:37 -04:00
|
|
|
device._delegate = wrapper;
|
2012-12-04 08:49:34 -05:00
|
|
|
this._addDeviceWrapper(wrapper);
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2012-08-29 13:42:11 -04:00
|
|
|
this._nmDevices.push(device);
|
|
|
|
if (!skipSyncDeviceNames)
|
|
|
|
this._syncDeviceNames();
|
2013-07-17 01:10:42 -04:00
|
|
|
|
2013-06-12 00:03:36 -04:00
|
|
|
if (wrapper instanceof NMConnectionSection) {
|
|
|
|
this._connections.forEach(function(connection) {
|
|
|
|
wrapper.checkConnection(connection);
|
|
|
|
});
|
|
|
|
}
|
2012-08-21 10:55:40 -04:00
|
|
|
}
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2012-12-04 08:49:34 -05:00
|
|
|
_addDeviceWrapper: function(wrapper) {
|
|
|
|
wrapper._activationFailedId = wrapper.connect('activation-failed',
|
|
|
|
Lang.bind(this, this._onActivationFailed));
|
|
|
|
|
|
|
|
let section = this._devices[wrapper.category].section;
|
2013-04-29 15:11:14 -04:00
|
|
|
section.addMenuItem(wrapper.item);
|
2012-12-04 08:49:34 -05:00
|
|
|
|
|
|
|
let devices = this._devices[wrapper.category].devices;
|
|
|
|
devices.push(wrapper);
|
|
|
|
},
|
|
|
|
|
2011-01-25 16:08:12 -05:00
|
|
|
_deviceRemoved: function(client, device) {
|
2012-12-04 08:49:34 -05:00
|
|
|
let pos = this._nmDevices.indexOf(device);
|
|
|
|
if (pos != -1) {
|
|
|
|
this._nmDevices.splice(pos, 1);
|
|
|
|
this._syncDeviceNames();
|
|
|
|
}
|
|
|
|
|
|
|
|
let wrapper = device._delegate;
|
|
|
|
if (!wrapper) {
|
2011-01-25 16:08:12 -05:00
|
|
|
log('Removing a network device that was not added');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-06-12 16:05:31 -04:00
|
|
|
this._removeDeviceWrapper(wrapper);
|
2012-12-04 08:49:34 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_removeDeviceWrapper: function(wrapper) {
|
2013-04-26 00:25:14 -04:00
|
|
|
wrapper.disconnect(wrapper._activationFailedId);
|
2011-01-25 16:08:12 -05:00
|
|
|
wrapper.destroy();
|
|
|
|
|
|
|
|
let devices = this._devices[wrapper.category].devices;
|
|
|
|
let pos = devices.indexOf(wrapper);
|
|
|
|
devices.splice(pos, 1);
|
|
|
|
},
|
|
|
|
|
2012-08-21 10:55:40 -04:00
|
|
|
_getSupportedActiveConnections: function() {
|
|
|
|
let activeConnections = this._client.get_active_connections() || [ ];
|
|
|
|
let supportedConnections = [];
|
|
|
|
|
|
|
|
for (let i = 0; i < activeConnections.length; i++) {
|
|
|
|
let devices = activeConnections[i].get_devices();
|
|
|
|
if (!devices || !devices[0])
|
|
|
|
continue;
|
|
|
|
// Ignore connections via unrecognized device types
|
|
|
|
if (!this._dtypes[devices[0].device_type])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Ignore slave connections
|
|
|
|
let connectionPath = activeConnections[i].connection;
|
2013-06-08 09:24:20 -04:00
|
|
|
let connection = this._settings.get_connection_by_path(connectionPath);
|
|
|
|
|
|
|
|
// connection might be null, if libnm-glib fails to create
|
|
|
|
// the object due to version incompatibility, or if the
|
|
|
|
// connection is not visible to the current user
|
|
|
|
if (connection && this._ignoreConnection(connection))
|
2012-08-21 10:55:40 -04:00
|
|
|
continue;
|
|
|
|
|
|
|
|
supportedConnections.push(activeConnections[i]);
|
|
|
|
}
|
|
|
|
return supportedConnections;
|
|
|
|
},
|
|
|
|
|
2011-01-25 16:08:12 -05:00
|
|
|
_syncActiveConnections: function() {
|
|
|
|
let closedConnections = [ ];
|
2012-08-21 10:55:40 -04:00
|
|
|
let newActiveConnections = this._getSupportedActiveConnections();
|
2011-01-25 16:08:12 -05:00
|
|
|
for (let i = 0; i < this._activeConnections.length; i++) {
|
|
|
|
let a = this._activeConnections[i];
|
|
|
|
if (newActiveConnections.indexOf(a) == -1) // connection is removed
|
|
|
|
closedConnections.push(a);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let i = 0; i < closedConnections.length; i++) {
|
2013-06-06 15:41:48 -04:00
|
|
|
let a = closedConnections[i];
|
2013-04-26 21:44:59 -04:00
|
|
|
if (a._type == NetworkManager.SETTING_VPN_SETTING_NAME)
|
|
|
|
this._vpnSection.removeActiveConnection(a);
|
2013-06-06 15:41:48 -04:00
|
|
|
if (a._inited) {
|
|
|
|
a.disconnect(a._notifyStateId);
|
|
|
|
a.disconnect(a._notifyDefaultId);
|
|
|
|
a.disconnect(a._notifyDefault6Id);
|
|
|
|
a._inited = false;
|
2011-01-25 16:08:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-29 15:20:45 -04:00
|
|
|
if (this._mainConnectionIconChangedId > 0) {
|
|
|
|
this._mainConnection._primaryDevice.disconnect(this._mainConnectionIconChangedId);
|
|
|
|
this._mainConnectionIconChangedId = 0;
|
|
|
|
}
|
|
|
|
|
2011-01-25 16:08:12 -05:00
|
|
|
this._activeConnections = newActiveConnections;
|
|
|
|
this._mainConnection = null;
|
2012-06-19 13:50:37 -04:00
|
|
|
|
2011-01-25 16:08:12 -05:00
|
|
|
let activating = null;
|
|
|
|
let default_ip4 = null;
|
|
|
|
let default_ip6 = null;
|
2013-05-08 17:54:32 -04:00
|
|
|
let active_any = null;
|
2011-01-25 16:08:12 -05:00
|
|
|
for (let i = 0; i < this._activeConnections.length; i++) {
|
|
|
|
let a = this._activeConnections[i];
|
|
|
|
|
|
|
|
if (!a._inited) {
|
2013-07-03 13:47:21 -04:00
|
|
|
a._notifyDefaultId = a.connect('notify::default', Lang.bind(this, this._syncActiveConnections));
|
|
|
|
a._notifyDefault6Id = a.connect('notify::default6', Lang.bind(this, this._syncActiveConnections));
|
2011-09-04 15:17:33 -04:00
|
|
|
a._notifyStateId = a.connect('notify::state', Lang.bind(this, this._notifyActivated));
|
2011-01-25 16:08:12 -05:00
|
|
|
|
|
|
|
a._inited = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!a._connection) {
|
|
|
|
a._connection = this._settings.get_connection_by_path(a.connection);
|
|
|
|
|
|
|
|
if (a._connection) {
|
|
|
|
a._type = a._connection._type;
|
|
|
|
a._section = this._ctypes[a._type];
|
|
|
|
} else {
|
|
|
|
a._connection = null;
|
|
|
|
a._type = null;
|
|
|
|
a._section = null;
|
|
|
|
log('Cannot find connection for active (or connection cannot be read)');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (a['default'])
|
|
|
|
default_ip4 = a;
|
|
|
|
if (a.default6)
|
|
|
|
default_ip6 = a;
|
2012-06-19 13:50:37 -04:00
|
|
|
|
2013-05-08 17:54:32 -04:00
|
|
|
if (a.state == NetworkManager.ActiveConnectionState.ACTIVATING)
|
2011-01-25 16:08:12 -05:00
|
|
|
activating = a;
|
2013-05-15 11:40:49 -04:00
|
|
|
else if (a.state == NetworkManager.ActiveConnectionState.ACTIVATED)
|
2013-05-08 17:54:32 -04:00
|
|
|
active_any = a;
|
|
|
|
|
2011-01-25 16:08:12 -05:00
|
|
|
if (!a._primaryDevice) {
|
2013-04-26 21:44:59 -04:00
|
|
|
if (a._type != NetworkManager.SETTING_VPN_SETTING_NAME) {
|
2013-04-29 13:09:01 -04:00
|
|
|
// This list is guaranteed to have one device in it.
|
|
|
|
a._primaryDevice = a.get_devices()[0]._delegate;
|
2013-04-26 21:44:59 -04:00
|
|
|
} else {
|
2012-08-29 10:22:24 -04:00
|
|
|
a._primaryDevice = this._vpnSection;
|
2013-04-26 21:44:59 -04:00
|
|
|
this._vpnSection.addActiveConnection(a);
|
|
|
|
}
|
2011-09-04 15:17:33 -04:00
|
|
|
|
|
|
|
if (a.state == NetworkManager.ActiveConnectionState.ACTIVATED
|
|
|
|
&& a._primaryDevice && a._primaryDevice._notification) {
|
|
|
|
a._primaryDevice._notification.destroy();
|
|
|
|
a._primaryDevice._notification = null;
|
|
|
|
}
|
2011-01-25 16:08:12 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-24 17:30:17 -04:00
|
|
|
this._mainConnection = default_ip4 || default_ip6 || active_any || activating || null;
|
2013-04-29 15:20:45 -04:00
|
|
|
|
|
|
|
if (this._mainConnection) {
|
|
|
|
let dev = this._mainConnection._primaryDevice;
|
|
|
|
this._mainConnectionIconChangedId = dev.connect('icon-changed', Lang.bind(this, this._updateIcon));
|
2013-07-03 13:47:21 -04:00
|
|
|
this._updateIcon();
|
2013-04-29 15:20:45 -04:00
|
|
|
}
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
2011-09-04 15:17:33 -04:00
|
|
|
_notifyActivated: function(activeConnection) {
|
|
|
|
if (activeConnection.state == NetworkManager.ActiveConnectionState.ACTIVATED
|
|
|
|
&& activeConnection._primaryDevice && activeConnection._primaryDevice._notification) {
|
|
|
|
activeConnection._primaryDevice._notification.destroy();
|
|
|
|
activeConnection._primaryDevice._notification = null;
|
|
|
|
}
|
|
|
|
|
2013-07-03 13:47:21 -04:00
|
|
|
this._syncActiveConnections();
|
2011-09-04 15:17:33 -04:00
|
|
|
},
|
|
|
|
|
2012-08-21 10:55:40 -04:00
|
|
|
_ignoreConnection: function(connection) {
|
|
|
|
let setting = connection.get_setting_connection();
|
|
|
|
if (!setting)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Ignore slave connections
|
|
|
|
if (setting.get_master())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
|
2013-04-25 16:24:14 -04:00
|
|
|
_addConnection: function(connection) {
|
2012-08-21 10:55:40 -04:00
|
|
|
if (this._ignoreConnection(connection))
|
|
|
|
return;
|
2012-05-31 13:13:16 -04:00
|
|
|
if (connection._updatedId) {
|
2011-01-25 16:08:12 -05:00
|
|
|
// connection was already seen
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
connection._removedId = connection.connect('removed', Lang.bind(this, this._connectionRemoved));
|
|
|
|
connection._updatedId = connection.connect('updated', Lang.bind(this, this._updateConnection));
|
|
|
|
|
|
|
|
this._updateConnection(connection);
|
|
|
|
this._connections.push(connection);
|
2013-04-25 16:24:14 -04:00
|
|
|
},
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-04-25 16:24:14 -04:00
|
|
|
_readConnections: function() {
|
|
|
|
let connections = this._settings.list_connections();
|
|
|
|
connections.forEach(Lang.bind(this, this._addConnection));
|
|
|
|
},
|
|
|
|
|
|
|
|
_newConnection: function(settings, connection) {
|
|
|
|
this._addConnection(connection);
|
2013-07-03 13:47:21 -04:00
|
|
|
this._syncActiveConnections();
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_connectionRemoved: function(connection) {
|
|
|
|
let pos = this._connections.indexOf(connection);
|
|
|
|
if (pos != -1)
|
2013-04-26 01:34:50 -04:00
|
|
|
this._connections.splice(connection, 1);
|
2011-01-25 16:08:12 -05:00
|
|
|
|
|
|
|
let section = connection._section;
|
2011-03-26 13:38:20 -04:00
|
|
|
|
2013-05-22 17:35:29 -04:00
|
|
|
if (section == NMConnectionCategory.INVALID)
|
|
|
|
return;
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-12 16:05:31 -04:00
|
|
|
if (section == NMConnectionCategory.VPN) {
|
2013-05-22 17:35:29 -04:00
|
|
|
this._vpnSection.removeConnection(connection);
|
|
|
|
} else {
|
|
|
|
let devices = this._devices[section].devices;
|
2013-06-12 00:03:36 -04:00
|
|
|
for (let i = 0; i < devices.length; i++) {
|
|
|
|
if (devices[i] instanceof NMConnectionSection)
|
|
|
|
devices[i].removeConnection(connection);
|
|
|
|
}
|
2012-12-04 08:49:34 -05:00
|
|
|
}
|
|
|
|
|
2011-01-25 16:08:12 -05:00
|
|
|
connection.disconnect(connection._removedId);
|
|
|
|
connection.disconnect(connection._updatedId);
|
2012-05-31 13:13:16 -04:00
|
|
|
connection._removedId = connection._updatedId = 0;
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_updateConnection: function(connection) {
|
|
|
|
let connectionSettings = connection.get_setting_by_name(NetworkManager.SETTING_CONNECTION_SETTING_NAME);
|
|
|
|
connection._type = connectionSettings.type;
|
2011-03-26 13:38:20 -04:00
|
|
|
connection._section = this._ctypes[connection._type] || NMConnectionCategory.INVALID;
|
2011-01-25 16:08:12 -05:00
|
|
|
connection._timestamp = connectionSettings.timestamp;
|
|
|
|
|
|
|
|
let section = connection._section;
|
2011-03-26 13:38:20 -04:00
|
|
|
|
2013-05-22 17:35:29 -04:00
|
|
|
if (section == NMConnectionCategory.INVALID)
|
|
|
|
return;
|
|
|
|
|
2013-06-12 16:05:31 -04:00
|
|
|
if (section == NMConnectionCategory.VPN) {
|
2012-08-29 10:22:24 -04:00
|
|
|
this._vpnSection.checkConnection(connection);
|
2011-01-25 16:08:12 -05:00
|
|
|
} else {
|
|
|
|
let devices = this._devices[section].devices;
|
2013-08-07 06:44:38 -04:00
|
|
|
devices.forEach(function(wrapper) {
|
|
|
|
if (wrapper instanceof NMConnectionSection)
|
|
|
|
wrapper.checkConnection(connection);
|
|
|
|
});
|
2011-01-25 16:08:12 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_syncNMState: function() {
|
2013-07-03 13:47:21 -04:00
|
|
|
this._syncActiveConnections();
|
2013-06-06 17:27:25 -04:00
|
|
|
|
|
|
|
this.indicators.visible = this._client.manager_running;
|
2013-06-07 13:23:57 -04:00
|
|
|
this.menu.actor.visible = this._client.networking_enabled;
|
2011-01-25 16:08:12 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_updateIcon: function() {
|
2013-06-06 17:27:25 -04:00
|
|
|
let mc = this._mainConnection;
|
2011-01-25 16:08:12 -05:00
|
|
|
|
2013-06-06 17:27:25 -04:00
|
|
|
if (!this._client.networking_enabled || !mc) {
|
|
|
|
this._primaryIndicator.icon_name = 'network-offline-symbolic';
|
2011-01-25 16:08:12 -05:00
|
|
|
} else {
|
2013-04-29 15:20:45 -04:00
|
|
|
let dev = this._mainConnection._primaryDevice;
|
|
|
|
if (!dev) {
|
|
|
|
log('Active connection with no primary device?');
|
|
|
|
return;
|
2011-01-25 16:08:12 -05:00
|
|
|
}
|
2013-06-06 17:27:25 -04:00
|
|
|
this._primaryIndicator.icon_name = dev.getIndicatorIcon(mc);
|
2011-01-25 16:08:12 -05:00
|
|
|
}
|
|
|
|
|
2013-06-06 17:27:25 -04:00
|
|
|
this._vpnIndicator.icon_name = this._vpnSection.getIndicatorIcon();
|
|
|
|
this._vpnIndicator.visible = (this._vpnIndicator.icon_name != '');
|
2011-01-25 16:08:12 -05:00
|
|
|
}
|
2011-11-20 09:38:48 -05:00
|
|
|
});
|