blob: 8105f61cfa1e86c788d2d2d16509d3e13029d3b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
#!/usr/bin/python
import dbus
def extract_values(values):
val = "{"
for key in values.keys():
val += " " + key + "="
val += str(values[key])
val += " }"
return val
bus = dbus.SystemBus()
manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
"org.moblin.connman.Manager")
properties = manager.GetProperties()
for path in properties["Services"]:
service = dbus.Interface(bus.get_object("org.moblin.connman", path),
"org.moblin.connman.Service")
properties = service.GetProperties()
print "[ %s ]" % (path)
for key in properties.keys():
if key in ["IPv4", "IPv4.Configuration", "Proxy", "Ethernet"]:
val = extract_values(properties[key])
elif key in ["Favorite", "Immutable", "AutoConnect",
"SetupRequired", "PassphraseRequired"]:
if properties[key] == dbus.Boolean(1):
val = "true"
else:
val = "false"
elif key in ["Strength"]:
val = int(properties[key])
else:
val = str(properties[key])
print " %s = %s" % (key, val)
print
|