summaryrefslogtreecommitdiff
path: root/test/connect-network
blob: 37cf60bdc44a0a69b3632636bed0b5eb8525e660 (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
#!/usr/bin/python

import sys
import dbus

if (len(sys.argv) < 2):
	print "Usage: %s <network>" % (sys.argv[0])
	sys.exit(1)

bus = dbus.SystemBus()

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

properties = manager.GetProperties()

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

	properties = device.GetProperties()

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

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

		properties = network.GetProperties()

		dev = path[path.rfind("/") + 1:]

		if "Name" not in properties.keys():
			continue

		if dev == sys.argv[1] or properties["Name"] == sys.argv[1]:
			print "Connecting %s" % (path)
			network.Connect()