summaryrefslogtreecommitdiff
path: root/test/list-networks
blob: 052d318e3e9d52e14b7e9c5d3c2cdbee614c7c17 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/python

import dbus
import string

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object("org.moblin.connman", "/"),
					"org.moblin.connman.Manager")

properties = manager.GetProperties()

def convert_ssid(ssid_list):
	ssid = ""
	for byte in ssid_list:
		if (str(byte) in string.printable):
			ssid = ssid + str(byte)
		else:
			ssid = ssid + "."
	return ssid

for path in properties["Technologies"]:
	technology = dbus.Interface(bus.get_object("org.moblin.connman", path),
						"org.moblin.connman.Technology")

	properties = technology.GetProperties()

	for path in properties["Devices"]:
                device = dbus.Interface(bus.get_object("org.moblin.connman", path),
                                                        "org.moblin.connman.Device")

                properties = device.GetProperties()

                try:
                        if properties["Type"] not in ["ethernet", "wifi", "wimax",
                                                        "bluetooth", "cellular"]:
                                continue
                except:
                        continue

                print "[ %s ]" % (path)

                for path in properties["Networks"]:
                        network = dbus.Interface(bus.get_object("org.moblin.connman", path),
                                                        "org.moblin.connman.Network")

                        properties = network.GetProperties()

                        print "    [ %s ]" % (path)

                        for key in properties.keys():
                                if key == "WiFi.SSID":
                                        ssid = convert_ssid(properties[key])
                                        print "        %s = [ %s ]" % (key, ssid)
                                elif key in ["Strength", "Priority"]:
                                        print "        %s = %d" % (key, properties[key])
                                else:
                                        print "        %s = %s" % (key, properties[key])

                print