Accepting request 202468 from home:gary_lin:branches:GNOME:Factory

- Rebase gnome-shell-private-connection.patch (bnc#751211)

OBS-URL: https://build.opensuse.org/request/show/202468
OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=184
This commit is contained in:
Dominique Leuenberger 2013-10-07 08:46:47 +00:00 committed by Git OBS Bridge
parent 1a797e1ddf
commit de71adf3e5
3 changed files with 92 additions and 148 deletions

View File

@ -1,4 +1,4 @@
From 53b3dc5944c595e143fb0fb848c566d6aecb4bb9 Mon Sep 17 00:00:00 2001
From 16ef77fd194f2f10ae81f273a5dea2a3c06904b6 Mon Sep 17 00:00:00 2001
From: Giovanni Campagna <gcampagna@src.gnome.org>
Date: Thu, 31 Mar 2011 15:56:13 +0200
Subject: [PATCH] NetworkMenu: create private connections if the user is not
@ -11,166 +11,102 @@ if the system administrator decides so.
https://bugzilla.gnome.org/show_bug.cgi?id=646187
---
js/ui/status/network.js | 59 +++++++++++++++++++++++++++++++++--------------
1 file changed, 42 insertions(+), 17 deletions(-)
js/ui/status/network.js | 39 +++++++++++++++++++++++++++++++++++----
1 file changed, 35 insertions(+), 4 deletions(-)
Index: gnome-shell-3.7.3.1/js/ui/status/network.js
===================================================================
--- gnome-shell-3.7.3.1.orig/js/ui/status/network.js
+++ gnome-shell-3.7.3.1/js/ui/status/network.js
@@ -5,8 +5,10 @@ const Gio = imports.gi.Gio;
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index b7e6bf9..9367a26 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -7,6 +7,7 @@ const Gtk = imports.gi.Gtk;
const Lang = imports.lang;
const NetworkManager = imports.gi.NetworkManager;
const NMClient = imports.gi.NMClient;
+const Polkit = imports.gi.Polkit;
const NMGtk = imports.gi.NMGtk;
const Signals = imports.signals;
const St = imports.gi.St;
+const System = imports.system;
@@ -477,6 +478,11 @@ const NMDeviceBluetooth = new Lang.Class({
Extends: NMConnectionDevice,
category: NMConnectionCategory.WWAN,
const Main = imports.ui.main;
const PanelMenu = imports.ui.panelMenu;
@@ -338,13 +340,14 @@ const NMDevice = new Lang.Class({
Abstract: true,
Extends: NMConnectionBased,
+ _init: function(client, device, settings, privateConnections) {
+ this._privateConnections = privateConnections;
+ this.parent(client, device);
+ },
+
_autoConnect: function() {
// FIXME: DUN devices are configured like modems, so
// We need to spawn the mobile wizard
@@ -485,6 +491,11 @@ const NMDeviceBluetooth = new Lang.Class({
// that this phone supports PAN
- _init: function(client, device, connections) {
+ _init: function(client, device, connections, privateConnections) {
this.device = device;
this.device._delegate = this;
this._stateChangedId = this.device.connect('state-changed', Lang.bind(this, this._deviceStateChanged));
let connection = new NetworkManager.Connection();
+ if (this._privateConnections) {
+ let connectionSetting = new NetworkManager.SettingConnection();
+ connectionSetting.add_permission('user', GLib.get_user_name(), null);
+ connection.add_setting(connectionSetting);
+ }
this._client.add_and_activate_connection(connection, this._device, null, null);
return true;
},
@@ -571,11 +582,12 @@ const NMWirelessDialog = new Lang.Class({
Name: 'NMWirelessDialog',
Extends: ModalDialog.ModalDialog,
- _init: function(client, device, settings) {
+ _init: function(client, device, settings, privateConnections) {
this.parent({ styleClass: 'nm-dialog' });
// protected
this._client = client;
this._device = device;
+ this._privateConnections = privateConnections;
this.parent(connections);
this._activeConnection = null;
this._activeConnectionItem = null;
@@ -691,23 +694,26 @@ const NMDeviceWired = new Lang.Class({
Name: 'NMDeviceWired',
Extends: NMDeviceSimple,
- _init: function(client, device, connections) {
+ _init: function(client, device, connections, privateConnections) {
this._autoConnectionName = _("Auto Ethernet");
this.category = NMConnectionCategory.WIRED;
- this.parent(client, device, connections);
+ this.parent(client, device, connections, privateConnections);
},
_createAutomaticConnection: function() {
let connection = new NetworkManager.Connection();
let uuid = NetworkManager.utils_uuid_generate();
connection.add_setting(new NetworkManager.SettingWired());
- connection.add_setting(new NetworkManager.SettingConnection({
+ let connectionSetting = new NetworkManager.SettingConnection({
uuid: uuid,
id: this._autoConnectionName,
type: NetworkManager.SETTING_WIRED_SETTING_NAME,
autoconnect: true
- }));
+ });
+ if (this._privateConnections)
+ connectionSetting.add_permission('user', GLib.get_user_name(), null);
+ connection.add_setting(connectionSetting);
return connection;
}
});
@@ -716,7 +722,7 @@ const NMDeviceModem = new Lang.Class({
Name: 'NMDeviceModem',
Extends: NMDevice,
- _init: function(client, device, connections) {
+ _init: function(client, device, connections, privateConnections) {
let is_wwan = false;
this._enabled = true;
@@ -763,7 +769,7 @@ const NMDeviceModem = new Lang.Class({
}));
this._networks = [];
this._buildLayout();
@@ -713,6 +725,11 @@ const NMWirelessDialog = new Lang.Class({
this._device.get_path(), accessPoints[0].dbus_path]);
} else {
let connection = new NetworkManager.Connection();
+ if (this._privateConnections) {
+ let connectionSetting = new NetworkManager.SettingConnection();
+ connectionSetting.add_permission('user', GLib.get_user_name(), null);
+ connection.add_setting(connectionSetting);
+ }
this._client.add_and_activate_connection(connection, this._device, accessPoints[0].dbus_path, null)
}
}
- this.parent(client, device, connections);
+ this.parent(client, device, connections, privateConnections);
},
setEnabled: function(enabled) {
@@ -836,25 +842,28 @@ const NMDeviceBluetooth = new Lang.Class
Name: 'NMDeviceBluetooth',
Extends: NMDevice,
- _init: function(client, device, connections) {
+ _init: function(client, device, connections, privateConnections) {
this._autoConnectionName = this._makeConnectionName(device);
device.connect('notify::name', Lang.bind(this, this._updateAutoConnectionName));
this.category = NMConnectionCategory.WWAN;
- this.parent(client, device, connections);
+ this.parent(client, device, connections, privateConnections);
},
_createAutomaticConnection: function() {
let connection = new NetworkManager.Connection;
let uuid = NetworkManager.utils_uuid_generate();
connection.add_setting(new NetworkManager.SettingBluetooth);
- connection.add_setting(new NetworkManager.SettingConnection({
+ let connectionSetting = new NetworkManager.SettingConnection({
uuid: uuid,
id: this._autoConnectionName,
type: NetworkManager.SETTING_BLUETOOTH_SETTING_NAME,
autoconnect: false
- }));
+ });
+ if (this._privateConnections)
+ connectionSetting.add_permission('user', GLib.get_user_name(), null);
+ connection.add_setting(connectionSetting);
return connection;
},
@@ -893,7 +902,7 @@ const NMDeviceWireless = new Lang.Class(
@@ -938,10 +955,11 @@ const NMDeviceWireless = new Lang.Class({
Name: 'NMDeviceWireless',
Extends: NMDevice,
category: NMConnectionCategory.WIRELESS,
- _init: function(client, device, connections) {
+ _init: function(client, device, connections, privateConnections) {
this.category = NMConnectionCategory.WIRELESS;
- _init: function(client, device, settings) {
+ _init: function(client, device, settings, privateConnections) {
this._client = client;
this._device = device;
this._settings = settings;
+ this._privateConnections = privateConnections;
this._overflowItem = null;
@@ -968,7 +977,7 @@ const NMDeviceWireless = new Lang.Class(
this._apAddedId = device.connect('access-point-added', Lang.bind(this, this._accessPointAdded));
this._apRemovedId = device.connect('access-point-removed', Lang.bind(this, this._accessPointRemoved));
this._description = '';
- this.parent(client, device, validConnections);
+ this.parent(client, device, validConnections, privateConnections);
@@ -1000,7 +1018,7 @@ const NMDeviceWireless = new Lang.Class({
},
destroy: function() {
@@ -1411,12 +1420,15 @@ const NMDeviceWireless = new Lang.Class(
let connection = new NetworkManager.Connection();
connection.add_setting(new NetworkManager.SettingWireless());
- connection.add_setting(new NetworkManager.SettingConnection({
+ let connectionSetting = new NetworkManager.SettingConnection({
id: name,
autoconnect: true, // NetworkManager will know to ignore this if appropriate
uuid: NetworkManager.utils_uuid_generate(),
type: NetworkManager.SETTING_WIRELESS_SETTING_NAME
- }));
+ });
+ if (this._privateConnections)
+ connectionSetting.add_permission('user', GLib.get_user_name(), null);
+ connection.add_setting(connectionSetting);
return connection;
_showDialog: function() {
- this._dialog = new NMWirelessDialog(this._client, this._device, this._settings);
+ this._dialog = new NMWirelessDialog(this._client, this._device, this._settings, this._privateConnections);
this._dialog.connect('closed', Lang.bind(this, this._dialogClosed));
this._dialog.open();
},
@@ -1647,6 +1659,18 @@ const NMApplet = new Lang.Class({
this._client = NMClient.Client.new();
@@ -1251,6 +1269,19 @@ const NMApplet = new Lang.Class({
if (!this._client || !this._settings)
return;
+ // Check if newly created connections should be private or not
+ this._privateConnections = true;
+ let authority = Polkit.Authority.get_sync(null);
+ let subject = new Polkit.UnixProcess({ pid: System.getpid(), uid: System.getuid() });
+ let credential = new Gio.Credentials();
+ let subject = new Polkit.UnixProcess({ pid: credential.get_unix_pid(), uid: credential.get_unix_user() });
+ let authResult = authority.check_authorization_sync(subject,
+ 'org.freedesktop.NetworkManager.settings.modify.system',
+ null /* details */,
@ -179,15 +115,18 @@ Index: gnome-shell-3.7.3.1/js/ui/status/network.js
+ if (authResult)
+ this._privateConnections = !authResult.get_is_authorized();
+
this._statusSection = new PopupMenu.PopupMenuSection();
this._statusItem = new PopupMenu.PopupMenuItem('', { reactive: false });
this._statusSection.addMenuItem(this._statusItem);
@@ -1830,7 +1854,7 @@ const NMApplet = new Lang.Class({
},
this._activeConnections = [ ];
this._connections = [ ];
_makeWrapperDevice: function(wrapperClass, device) {
- let wrapper = new wrapperClass(this._client, device, this._connections);
+ let wrapper = new wrapperClass(this._client, device, this._connections, this._privateConnections);
@@ -1366,7 +1397,7 @@ const NMApplet = new Lang.Class({
wrapper._activationFailedId = wrapper.connect('activation-failed',
Lang.bind(this, this._onActivationFailed));
let wrapperClass = this._dtypes[device.get_device_type()];
if (wrapperClass) {
- let wrapper = new wrapperClass(this._client, device, this._settings);
+ let wrapper = new wrapperClass(this._client, device, this._settings, this._privateConnections);
device._delegate = wrapper;
this._addDeviceWrapper(wrapper);
--
1.8.1.4

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Oct 2 03:47:39 UTC 2013 - glin@suse.com
- Rebase gnome-shell-private-connection.patch (bnc#751211)
-------------------------------------------------------------------
Tue Sep 24 21:51:33 UTC 2013 - dimstar@opensuse.org

View File

@ -24,7 +24,7 @@ License: GPL-2.0+
Group: System/GUI/GNOME
Url: http://live.gnome.org/GnomeShell
Source: http://download.gnome.org/sources/gnome-shell/3.10/%{name}-%{version}.tar.xz
# PATCH-NEEDS-REBASE PATCH-FIX-UPSTREAM gnome-shell-private-connection.patch bnc#751211 bgo#646187 dimstar@opensuse.org -- create private connections if the user is not authorized
# PATCH-FIX-UPSTREAM gnome-shell-private-connection.patch bnc#751211 bgo#646187 dimstar@opensuse.org -- create private connections if the user is not authorized
Patch1: gnome-shell-private-connection.patch
BuildRequires: docbook-xsl-stylesheets
BuildRequires: intltool
@ -134,7 +134,7 @@ to enable, disable and install them.
%lang_package
%prep
%setup -q
#patch1 -p1
%patch1 -p1
translation-update-upstream
%build