forked from dougsland/ovirt-restapi-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
searchDataCenters.py
67 lines (57 loc) · 2.39 KB
/
searchDataCenters.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
# Copyright (C) 2011
#
# Douglas Schilling Landgraf <[email protected]>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
import unittest
import base64
import urllib2
import sys
from xml.etree import ElementTree
ADDR = "192.168.123.176"
API_PORT = "8443"
USER = "[email protected]"
PASSWD = "T0pSecreT!"
if len(sys.argv) != 2:
print "Usage: %s datacenter_name" %(sys.argv[0])
print "Example: %s MyDataCenter" %(sys.argv[0])
sys.exit(1)
# Setting URL
URL = "https://" + ADDR + ":" + API_PORT + "/api/datacenters?search=" + sys.argv[1]
request = urllib2.Request(URL)
print "Connecting to: " + URL
base64string = base64.encodestring('%s:%s' % (USER, PASSWD)).strip()
request.add_header("Authorization", "Basic %s" % base64string)
request.add_header('Content-Type', 'application/xml')
try:
xmldata = urllib2.urlopen(request).read()
except urllib2.URLError, e:
print "%s" %(e)
sys.exit(-1)
tree = ElementTree.XML(xmldata)
lst = tree.findall("data_center")
if len(lst) == 0:
print "Cannot find [%s] DataCenter!" % (sys.argv[1])
sys.exit(-1)
for item in lst:
print "id: %s" % (item.attrib["id"])
print "href: %s " % (item.attrib["href"])
print "name: %s" % (item.find("name").text)
print "description: %s" % (item.find("description").text)
for subitem in item.findall("link"):
print "link ref: %s" % (subitem.attrib["rel"])
print "link href: %s" % (subitem.attrib["href"])
print "storage_type: %s" % (item.find("storage_type").text)
print "version minor: %s" % (item.find("version").attrib["minor"])
print "version major: %s" % (item.find("version").attrib["major"])
print "supported_versions minor: %s" % (item.find("supported_versions/version").attrib["minor"])
print "supported_versions major: %s" % (item.find("supported_versions/version").attrib["major"])
print "status: %s" % (item.find("status/state").text)
print "\n"