Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / register.py @ 2dc27ac1

History | View | Annotate | Download (6.2 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
resource_fields = ['desc', 'unit', 'ui_visible', 'api_visible']
42

    
43

    
44
class RegisterException(Exception):
45
    pass
46

    
47

    
48
def different_component(service, resource):
49
    try:
50
        registered_for = Service.objects.get(name=resource.service_origin)
51
        return registered_for.component != service.component
52
    except Service.DoesNotExist:
53
        return False
54

    
55

    
56
def add_resource(resource_dict):
57
    name = resource_dict.get('name')
58
    service_type = resource_dict.get('service_type')
59
    service_origin = resource_dict.get('service_origin')
60
    if not name or not service_type or not service_origin:
61
        raise RegisterException("Malformed resource dict.")
62

    
63
    try:
64
        service = Service.objects.get(name=service_origin)
65
    except Service.DoesNotExist:
66
        m = "There is no service %s." % service_origin
67
        raise RegisterException(m)
68

    
69
    try:
70
        r = Resource.objects.select_for_update().get(name=name)
71
        exists = True
72
        if r.service_type != service_type and \
73
                different_component(service, r):
74
            m = ("There already exists a resource named %s with service "
75
                 "type %s." % (name, r.service_type))
76
            raise RegisterException(m)
77
        if r.service_origin != service_origin and \
78
                different_component(service, r):
79
            m = ("There already exists a resource named %s registered for "
80
                 "service %s." % (name, r.service_origin))
81
            raise RegisterException(m)
82
        r.service_origin = service_origin
83
        r.service_type = service_type
84
    except Resource.DoesNotExist:
85
        r = Resource(name=name,
86
                     uplimit=units.PRACTICALLY_INFINITE,
87
                     service_type=service_type,
88
                     service_origin=service_origin)
89
        exists = False
90

    
91
    for field in resource_fields:
92
        value = resource_dict.get(field)
93
        if value is not None:
94
            setattr(r, field, value)
95

    
96
    if r.ui_visible and not r.api_visible:
97
        m = "Flag 'ui_visible' should entail 'api_visible'."
98
        raise RegisterException(m)
99

    
100
    r.save()
101
    if not exists:
102
        quotas.qh_sync_new_resource(r)
103

    
104
    if exists:
105
        logger.info("Updated resource %s." % (name))
106
    else:
107
        logger.info("Added resource %s." % (name))
108
    return r, exists
109

    
110

    
111
def update_resources(updates):
112
    resources = []
113
    for resource, uplimit in updates:
114
        resources.append(resource)
115
        old_uplimit = resource.uplimit
116
        if uplimit == old_uplimit:
117
            logger.info("Resource %s has limit %s; no need to update."
118
                        % (resource.name, uplimit))
119
        else:
120
            resource.uplimit = uplimit
121
            resource.save()
122
            logger.info("Updated resource %s with limit %s."
123
                        % (resource.name, uplimit))
124

    
125

    
126
def get_resources(resources=None, services=None):
127
    if resources is None:
128
        rs = Resource.objects.all()
129
    else:
130
        rs = Resource.objects.filter(name__in=resources)
131

    
132
    if services is not None:
133
        rs = rs.filter(service__in=services)
134

    
135
    resource_dict = {}
136
    for r in rs:
137
        resource_dict[r.full_name()] = r.get_info()
138

    
139
    return resource_dict
140

    
141

    
142
def add_endpoint(component, service, endpoint_dict, out=None):
143
    endpoint = Endpoint.objects.create(service=service)
144
    for key, value in endpoint_dict.iteritems():
145
        base_url = component.base_url
146
        if key == "publicURL" and (base_url is None or
147
                                   not value.startswith(base_url)):
148
            warn = out.write if out is not None else logger.warning
149
            warn("Warning: Endpoint URL '%s' does not start with "
150
                 "assumed component base URL '%s'.\n" % (value, base_url))
151
        EndpointData.objects.create(
152
            endpoint=endpoint, key=key, value=value)
153

    
154

    
155
def add_service(component, name, service_type, endpoints, out=None):
156
    defaults = {'component': component,
157
                'type': service_type,
158
                }
159
    service, created = Service.objects.get_or_create(
160
        name=name, defaults=defaults)
161

    
162
    if not created:
163
        if service.component != component:
164
            m = ("There is already a service named %s registered by %s." %
165
                 (name, service.component.name))
166
            raise RegisterException(m)
167
        service.endpoints.all().delete()
168
        for key, value in defaults.iteritems():
169
            setattr(service, key, value)
170
        service.save()
171

    
172
    for endpoint in endpoints:
173
        add_endpoint(component, service, endpoint, out=out)
174

    
175
    return not created