-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdomain.py
More file actions
80 lines (67 loc) · 2.69 KB
/
domain.py
File metadata and controls
80 lines (67 loc) · 2.69 KB
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
#
# This file is protected by Copyright. Please refer to the COPYRIGHT file
# distributed with this source distribution.
#
# This file is part of REDHAWK rest-python.
#
# REDHAWK rest-python is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# REDHAWK rest-python 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
"""
Rest handlers for Domains
Classes:
DomainInfo -- Get info of all or a specific domain
DomainProperties -- Manipulate the properties of a domain
"""
from tornado import gen
from handler import JsonHandler
from helper import PropertyHelper
from model.domain import parse_domainref
class DomainInfo(JsonHandler, PropertyHelper):
@gen.coroutine
def get(self, domain_ref=None):
domain_name = location = None
if domain_ref:
location, domain_name = parse_domainref(domain_ref)
if domain_name:
dom_info = yield self.redhawk.get_domain_info(domain_ref)
properties = yield self.redhawk.get_domain_properties(domain_ref)
apps = yield self.redhawk.get_application_list(domain_ref)
device_managers = yield self.redhawk.get_device_manager_list(domain_ref)
info = {
'id': dom_info._get_identifier(),
'name': dom_info.name,
'properties': self.format_properties(properties),
'applications': apps,
'deviceManagers': device_managers
}
else:
domains = yield self.redhawk.get_domain_list(location)
info = {'domains': domains}
self._render_json(info)
class DomainProperties(JsonHandler, PropertyHelper):
@gen.coroutine
def get(self, domain_name, prop_name=None):
properties = yield self.redhawk.get_domain_properties(domain_name)
info = self.format_properties(properties)
if prop_name:
value = None
for item in info:
if item['id'] == prop_name:
value = item
if value:
self._render_json(value)
else:
self._render_json({'error': "Could not find property"})
else:
self._render_json({'properties': info})