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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
#!/usr/bin/python
# Authors:
# Endi S. Dewata <edewata@redhat.com>
#
# 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.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright (C) 2013 Red Hat, Inc.
# All rights reserved.
#
import pki.encoder as encoder
import xml.etree.ElementTree as ETree
import os
SYSTEM_TYPE = "Fedora/RHEL"
if os.path.exists("/etc/debian_version"):
SYSTEM_TYPE = "debian"
class SecurityDomainHost(object):
def __init__(self):
""" constructor """
self.id = None
self.clone = False
self.domain_manager = False
self.hostname = None
self.unsecure_port = None
self.admin_port = None
self.agent_port = None
self.ee_client_auth_port = None
self.secure_port = None
self.subsystem_name = None
@classmethod
def from_json(cls, json_value):
host = cls()
host.admin_port = json_value['SecureAdminPort']
host.agent_port = json_value['SecureAgentPort']
host.clone = json_value['Clone']
host.domain_manager = json_value['DomainManager']
host.ee_client_auth_port = json_value['SecureEEClientAuthPort']
host.hostname = json_value['Hostname']
host.id = json_value['id']
host.secure_port = json_value['SecurePort']
host.subsystem_name = json_value['SubsystemName']
host.unsecure_port = json_value['Port']
return host
class SecurityDomainSubsystem(object):
def __init__(self):
self.name = None
self.hosts = {}
@classmethod
def from_json(cls, json_value):
ret = cls()
ret.name = json_value['id']
for host in json_value['Host']:
ret.hosts[host['id']] = SecurityDomainHost.from_json(host)
return ret
class SecurityDomainInfo(object):
def __init__(self):
self.name = None
self.systems = {}
@classmethod
def from_json(cls, json_value):
ret = cls()
ret.name = json_value['id']
for slist in json_value['Subsystem']:
subsystem = SecurityDomainSubsystem.from_json(slist)
ret.systems[slist['id']] = subsystem
return ret
class SecurityDomainClient(object):
def __init__(self, connection):
self.connection = connection
def get_security_domain_info(self):
response = self.connection.get('/rest/securityDomain/domainInfo')
info = SecurityDomainInfo.from_json(response.json())
return info
def get_old_security_domain_info(self):
response = self.connection.get('/admin/ca/getDomainXML')
root = ETree.fromstring(response.text)
domaininfo = ETree.fromstring(root.find("DomainInfo").text)
info = SecurityDomainInfo()
info.name = domaininfo.find("Name").text
return info
class ConfigurationRequest(object):
def __init__(self):
self.token = "Internal Key Storage Token"
self.isClone = "false"
self.secureConn = "off"
self.importAdminCert = "false"
self.generateServerCert = "true"
class ConfigurationResponse(object):
def __init__(self):
pass
class SystemCertData(object):
def __init__(self):
pass
class SystemConfigClient(object):
def __init__(self, connection):
self.connection = connection
def configure(self, data):
headers = {'Content-type': 'application/json',
'Accept': 'application/json'}
response = self.connection.post('/rest/installer/configure', data,
headers)
return response.json()
class SystemStatusClient(object):
def __init__(self, connection):
self.connection = connection
def get_status(self):
response = self.connection.get('/admin/' +
self.connection.subsystem + '/getStatus')
return response.text
encoder.NOTYPES['ConfigurationRequest'] = ConfigurationRequest
encoder.NOTYPES['ConfigurationResponse'] = ConfigurationResponse
encoder.NOTYPES['SystemCertData'] = SystemCertData
|