summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJiří Klimeš <jklimes@redhat.com>2013-09-24 12:18:45 +0200
committerJiří Klimeš <jklimes@redhat.com>2013-09-24 12:48:55 +0200
commit217cb5fbca79bd21f5305ba8911be37c81fc4c8a (patch)
treeca0966fd029b1f01969529d6b5c0e551b1dac43e /examples
parent2b72214e5219c2e99dcc3a9891cf40d2e065c39a (diff)
examples: add a python example getting/setting zone property using GI
Diffstat (limited to 'examples')
-rw-r--r--examples/python/Makefile.am3
-rwxr-xr-xexamples/python/goi-firewall-zone.py87
2 files changed, 89 insertions, 1 deletions
diff --git a/examples/python/Makefile.am b/examples/python/Makefile.am
index 4c0f9c745e..ade9497814 100644
--- a/examples/python/Makefile.am
+++ b/examples/python/Makefile.am
@@ -10,4 +10,5 @@ EXTRA_DIST = \
get-active-connection-uuids.py \
list-devices.py \
goi-list-connections.py \
- goi-device-state-ip4config.py
+ goi-device-state-ip4config.py \
+ goi-firewall-zone.py
diff --git a/examples/python/goi-firewall-zone.py b/examples/python/goi-firewall-zone.py
new file mode 100755
index 0000000000..9a9751d1e2
--- /dev/null
+++ b/examples/python/goi-firewall-zone.py
@@ -0,0 +1,87 @@
+#!/usr/bin/env python
+# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
+# vim: ft=python ts=4 sts=4 sw=4 et ai
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+# Copyright (C) 2013 Red Hat, Inc.
+#
+
+import sys
+from gi.repository import GObject, NetworkManager, NMClient
+
+#
+# This example demonstrates how to get and change firewall zone in a
+# connection. It uses GObject Introspection instead of direct D-Bus calls.
+# 'zone' is a property of 'connection' setting in a connection. You can't
+# get/set individual properties directly. Rather you ask for the whole
+# connection, change a property and update the connection back into
+# NetworkManager.
+# If you used D-Bus calls, you would call GetSettings() and then Update().
+#
+# Links:
+# https://projects.gnome.org/NetworkManager/developers/libnm-glib/09/index.html
+# https://wiki.gnome.org/GObjectIntrospection
+# https://wiki.gnome.org/PyGObject
+#
+
+main_loop = None
+
+def connection_saved(connection, error, data):
+ print ("Connection '%s' saved.") % (connection.get_id())
+ main_loop.quit()
+
+def connections_read(settings, data):
+ con_name = sys.argv[1]
+ if len(sys.argv) == 3:
+ new_zone = sys.argv[2]
+ else:
+ new_zone = None
+
+ found = False
+ connections = settings.list_connections()
+ for c in connections:
+ if c.get_id() == con_name or c.get_uuid() == con_name:
+ found = True
+ s_con = c.get_setting_connection()
+ if new_zone is None:
+ zone = s_con.get_zone()
+ if zone is not None:
+ print("'%s' zone is '%s'") % (c.get_id(), zone)
+ else:
+ print("'%s' zone is empty") % (c.get_id())
+ main_loop.quit()
+ else:
+ s_con.set_property("zone", new_zone)
+ c.commit_changes(connection_saved, None)
+ print("'%s' zone set to '%s'") % (c.get_id(), new_zone)
+ break
+ if not found:
+ print ("Error: connection '%s' not found.") % (con_name)
+ main_loop.quit()
+
+
+if __name__ == "__main__":
+ if len(sys.argv) != 2 and len(sys.argv) != 3:
+ sys.exit('Usage: %s <connection name or UUID> [new zone]' % sys.argv[0])
+
+ main_loop = GObject.MainLoop()
+ settings = NMClient.RemoteSettings.new(None);
+
+ # Connections are read asynchronously, so we have to wait for the
+ # 'settings' object to tell us that all connections have been read.
+ settings.connect("connections-read", connections_read, None)
+ main_loop.run()
+