summaryrefslogtreecommitdiff
path: root/test/enable-tethering
blob: cbcd4e72651af319150f61a16c86a9907456ee90 (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
#!/usr/bin/python

import sys
import dbus

if (len(sys.argv) >= 3 and len(sys.argv) != 4 and sys.argv[1] == "wifi"):
	print "Usage: %s wifi [SSID] [passphrase]" % (sys.argv[0])
	sys.exit(1)
elif (len(sys.argv) < 2):
	print "Usage: %s type" % (sys.argv[0])
	sys.exit(1)

bus = dbus.SystemBus()

manager = dbus.Interface(bus.get_object('net.connman', "/"),
					'net.connman.Manager')

def technology_enable_tethering(path, tech_type, ssid, psk):
	tech = dbus.Interface(bus.get_object("net.connman", path),
						"net.connman.Technology")

	properties = tech.GetProperties()

	for key in properties.keys():
		if key in ["Type"]:
			if properties[key] == tech_type:
				if len(ssid) > 0:
					tech.SetProperty("TetheringIdentifier",
								ssid)
				if len(psk) > 0:
					tech.SetProperty("TetheringPassphrase",
								psk)
				print "Enabling %s tethering" % tech_type
				tech.SetProperty("Tethering", dbus.Boolean(1))

				return tech_type
			else:
				return None

technologies = manager.GetTechnologies()
tech = None

for path,_ in technologies:
	if (len(sys.argv) == 4):
		tech = technology_enable_tethering(path,
					sys.argv[1], sys.argv[2], sys.argv[3])
	else:
		tech = technology_enable_tethering(path, sys.argv[1], "", "")

	if tech != None:
		break;

if tech == None:
	print "Failed to enable %s tethering" % (sys.argv[1])