root / snf-astakos-app / astakos / im / register.py @ c94dcec3
History | View | Annotate | Download (6.5 kB)
1 |
# Copyright 2013 GRNET S.A. All rights reserved.
|
---|---|
2 |
#
|
3 |
# Redistribution and use in source and binary forms, with or
|
4 |
# without modification, are permitted provided that the following
|
5 |
# conditions are met:
|
6 |
#
|
7 |
# 1. Redistributions of source code must retain the above
|
8 |
# copyright notice, this list of conditions and the following
|
9 |
# disclaimer.
|
10 |
#
|
11 |
# 2. Redistributions in binary form must reproduce the above
|
12 |
# copyright notice, this list of conditions and the following
|
13 |
# disclaimer in the documentation and/or other materials
|
14 |
# provided with the distribution.
|
15 |
#
|
16 |
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
|
17 |
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
18 |
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
19 |
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
|
20 |
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
21 |
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
22 |
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
23 |
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
24 |
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
25 |
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
26 |
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
27 |
# POSSIBILITY OF SUCH DAMAGE.
|
28 |
#
|
29 |
# The views and conclusions contained in the software and
|
30 |
# documentation are those of the authors and should not be
|
31 |
# interpreted as representing official policies, either expressed
|
32 |
# or implied, of GRNET S.A.
|
33 |
|
34 |
from synnefo.util import units |
35 |
from astakos.im.models import Resource, Service, Endpoint, EndpointData |
36 |
from astakos.im import quotas |
37 |
import logging |
38 |
|
39 |
logger = logging.getLogger(__name__) |
40 |
|
41 |
main_fields = ['desc', 'unit'] |
42 |
config_fields = ['ui_visible', 'api_visible'] |
43 |
|
44 |
|
45 |
class RegisterException(Exception): |
46 |
pass
|
47 |
|
48 |
|
49 |
def different_component(service, resource): |
50 |
try:
|
51 |
registered_for = Service.objects.get(name=resource.service_origin) |
52 |
return registered_for.component != service.component
|
53 |
except Service.DoesNotExist:
|
54 |
return False |
55 |
|
56 |
|
57 |
def add_resource(resource_dict): |
58 |
name = resource_dict.get('name')
|
59 |
service_type = resource_dict.get('service_type')
|
60 |
service_origin = resource_dict.get('service_origin')
|
61 |
if not name or not service_type or not service_origin: |
62 |
raise RegisterException("Malformed resource dict.") |
63 |
|
64 |
try:
|
65 |
service = Service.objects.get(name=service_origin) |
66 |
except Service.DoesNotExist:
|
67 |
m = "There is no service %s." % service_origin
|
68 |
raise RegisterException(m)
|
69 |
|
70 |
try:
|
71 |
r = Resource.objects.select_for_update().get(name=name) |
72 |
exists = True
|
73 |
if r.service_type != service_type and \ |
74 |
different_component(service, r): |
75 |
m = ("There already exists a resource named %s with service "
|
76 |
"type %s." % (name, r.service_type))
|
77 |
raise RegisterException(m)
|
78 |
if r.service_origin != service_origin and \ |
79 |
different_component(service, r): |
80 |
m = ("There already exists a resource named %s registered for "
|
81 |
"service %s." % (name, r.service_origin))
|
82 |
raise RegisterException(m)
|
83 |
r.service_origin = service_origin |
84 |
r.service_type = service_type |
85 |
except Resource.DoesNotExist:
|
86 |
r = Resource(name=name, |
87 |
uplimit=units.PRACTICALLY_INFINITE, |
88 |
service_type=service_type, |
89 |
service_origin=service_origin) |
90 |
exists = False
|
91 |
for field in config_fields: |
92 |
value = resource_dict.get(field) |
93 |
if value is not None: |
94 |
setattr(r, field, value)
|
95 |
|
96 |
for field in main_fields: |
97 |
value = resource_dict.get(field) |
98 |
if value is not None: |
99 |
setattr(r, field, value)
|
100 |
|
101 |
if r.ui_visible and not r.api_visible: |
102 |
m = "Flag 'ui_visible' should entail 'api_visible'."
|
103 |
raise RegisterException(m)
|
104 |
|
105 |
r.save() |
106 |
if not exists: |
107 |
quotas.qh_sync_new_resource(r) |
108 |
|
109 |
if exists:
|
110 |
logger.info("Updated resource %s." % (name))
|
111 |
else:
|
112 |
logger.info("Added resource %s." % (name))
|
113 |
return r, exists
|
114 |
|
115 |
|
116 |
def update_resources(updates): |
117 |
resources = [] |
118 |
for resource, uplimit in updates: |
119 |
resources.append(resource) |
120 |
old_uplimit = resource.uplimit |
121 |
if uplimit == old_uplimit:
|
122 |
logger.info("Resource %s has limit %s; no need to update."
|
123 |
% (resource.name, uplimit)) |
124 |
else:
|
125 |
resource.uplimit = uplimit |
126 |
resource.save() |
127 |
logger.info("Updated resource %s with limit %s."
|
128 |
% (resource.name, uplimit)) |
129 |
|
130 |
|
131 |
def resources_to_dict(resources): |
132 |
resource_dict = {} |
133 |
for r in resources: |
134 |
resource_dict[r.name] = r.get_info() |
135 |
return resource_dict
|
136 |
|
137 |
|
138 |
def get_resources(resources=None, services=None): |
139 |
if resources is None: |
140 |
rs = Resource.objects.all() |
141 |
else:
|
142 |
rs = Resource.objects.filter(name__in=resources) |
143 |
|
144 |
if services is not None: |
145 |
rs = rs.filter(service__in=services) |
146 |
|
147 |
return rs
|
148 |
|
149 |
|
150 |
def get_api_visible_resources(resources=None, services=None): |
151 |
rs = get_resources(resources, services) |
152 |
return rs.filter(api_visible=True) |
153 |
|
154 |
|
155 |
def add_endpoint(component, service, endpoint_dict, out=None): |
156 |
endpoint = Endpoint.objects.create(service=service) |
157 |
for key, value in endpoint_dict.iteritems(): |
158 |
base_url = component.base_url |
159 |
if key == "publicURL" and (base_url is None or |
160 |
not value.startswith(base_url)):
|
161 |
warn = out.write if out is not None else logger.warning |
162 |
warn("Warning: Endpoint URL '%s' does not start with "
|
163 |
"assumed component base URL '%s'.\n" % (value, base_url))
|
164 |
EndpointData.objects.create( |
165 |
endpoint=endpoint, key=key, value=value) |
166 |
|
167 |
|
168 |
def add_service(component, name, service_type, endpoints, out=None): |
169 |
defaults = {'component': component,
|
170 |
'type': service_type,
|
171 |
} |
172 |
service, created = Service.objects.get_or_create( |
173 |
name=name, defaults=defaults) |
174 |
|
175 |
if not created: |
176 |
if service.component != component:
|
177 |
m = ("There is already a service named %s registered by %s." %
|
178 |
(name, service.component.name)) |
179 |
raise RegisterException(m)
|
180 |
service.endpoints.all().delete() |
181 |
for key, value in defaults.iteritems(): |
182 |
setattr(service, key, value)
|
183 |
service.save() |
184 |
|
185 |
for endpoint in endpoints: |
186 |
add_endpoint(component, service, endpoint, out=out) |
187 |
|
188 |
return not created |