2014-01-24 02:53:17 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import subprocess
|
|
|
|
import json
|
|
|
|
|
|
|
|
class alfred:
|
|
|
|
def __init__(self,request_data_type = 158):
|
|
|
|
self.request_data_type = request_data_type
|
|
|
|
|
|
|
|
def aliases(self):
|
|
|
|
output = subprocess.check_output(["alfred-json","-r",str(self.request_data_type),"-f","json"])
|
|
|
|
alfred_data = json.loads(output.decode("utf-8"))
|
|
|
|
alias = {}
|
|
|
|
for mac,node in alfred_data.items():
|
|
|
|
node_alias = {}
|
2014-02-21 15:27:19 +01:00
|
|
|
for key in node:
|
|
|
|
node_alias[key] = node[key]
|
2014-02-02 23:28:09 +01:00
|
|
|
|
2014-03-19 23:26:28 +01:00
|
|
|
try:
|
2014-02-21 15:27:19 +01:00
|
|
|
node_alias['geo'] = [node['location']['latitude'], node['location']['longitude']]
|
2014-03-19 23:26:28 +01:00
|
|
|
except (TypeError, KeyError):
|
|
|
|
pass
|
2014-02-02 23:28:09 +01:00
|
|
|
|
2014-05-02 10:49:01 +02:00
|
|
|
try:
|
|
|
|
node_alias['id'] = node['network']['mac']
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
2014-01-24 02:53:17 +01:00
|
|
|
if 'hostname' in node:
|
|
|
|
node_alias['name'] = node['hostname']
|
|
|
|
if len(node_alias):
|
|
|
|
alias[mac] = node_alias
|
|
|
|
return alias
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
ad = alfred()
|
2014-05-31 14:53:28 +02:00
|
|
|
al = ad.aliases()
|
2014-01-24 02:53:17 +01:00
|
|
|
print(al)
|