-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsat6api.py
73 lines (60 loc) · 2.42 KB
/
sat6api.py
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
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/python
import json
import sys
try:
import requests
except ImportError:
print "Please install the python-requests module."
sys.exit(-1)
SAT_API = 'https://satellite6demo.mlc.dom/api/v2/'
USERNAME = "admin"
PASSWORD = "1qaz2wsX"
SSL_VERIFY = False # Ignore SSL for now
def get_json(url):
# Performs a GET using the passed URL location
r = requests.get(url, auth=(USERNAME, PASSWORD), verify=SSL_VERIFY)
return r.json()
def get_results(url):
jsn = get_json(url)
if jsn.get('error'):
print "Error: " + jsn['error']['message']
else:
if jsn.get('results'):
return jsn['results']
elif 'results' not in jsn:
return jsn
else:
print "No results found"
return None
def display_all_results(url):
results = get_results(url)
if results:
print json.dumps(results, indent=4, sort_keys=True)
def display_info_for_hosts(url):
hosts = get_results(url)
if hosts:
for host in hosts:
print "ID: %-10d Name: %-30s IP: %-20s OS: %-30s" % (host['id'], host['name'], host['ip'], host['operatingsystem_name'])
def main():
host = 'satellite6demo.mlc.dom'
# print "Displaying all info for host %s ..." % host
# display_all_results(SAT_API + 'hosts/' + host)
# print "Displaying all facts for host %s ..." % host
# display_all_results(SAT_API + 'hosts/%s/facts' % host)
# host_pattern = 'example'
# print "Displaying basic info for hosts matching pattern '%s'..." % host_pattern
# display_info_for_hosts(SAT_API + 'hosts?search=' + host_pattern)
environment = 'production'
print "Displaying basic info for hosts in environment %s..." % environment
display_info_for_hosts(SAT_API + 'hosts?search=environment=' + environment)
# environment = 'KT_mlc_Devlopment_RHEL7_SOE_4'
# print "Displaying basic info for hosts in environment %s..." % environment
# display_info_for_hosts(SAT_API + 'hosts?search=environment=' + environment)
lifecycle_environment = 'Development'
print "Displaying basic info for hosts in lifecycle environment %s..." % lifecycle_environment
display_info_for_hosts(SAT_API + 'hosts?search=lifecycle_environment=' + lifecycle_environment)
# model = 'RHEV Hypervisor'
# print "Displaying basic info for hosts with model name %s..." % model
# display_info_for_hosts(SAT_API + 'hosts?search=model="' + model + '"')
if __name__ == "__main__":
main()