Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / cyclades_settings.py @ 1ec2f17e

History | View | Annotate | Download (4.7 kB)

1
# Copyright 2013-2014 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
import logging
35

    
36
from django.conf import settings
37
from synnefo.lib import join_urls, parse_base_url
38
from synnefo.api.services import cyclades_services as vanilla_cyclades_services
39
from synnefo.lib.services import fill_endpoints
40
from astakosclient import AstakosClient
41

    
42
from copy import deepcopy
43

    
44

    
45
logger = logging.getLogger(__name__)
46

    
47
# --------------------------------------------------------------------
48
# Process Cyclades settings
49

    
50
BASE_URL = getattr(settings, 'CYCLADES_BASE_URL',
51
                   'https://compute.example.synnefo.org/compute/')
52
BASE_HOST, BASE_PATH = parse_base_url(BASE_URL)
53
SERVICE_TOKEN = getattr(settings, 'CYCLADES_SERVICE_TOKEN', "")
54

    
55
cyclades_services = deepcopy(vanilla_cyclades_services)
56
fill_endpoints(cyclades_services, BASE_URL)
57

    
58
COMPUTE_PREFIX = cyclades_services['cyclades_compute']['prefix']
59
NETWORK_PREFIX = cyclades_services['cyclades_network']['prefix']
60
VMAPI_PREFIX = cyclades_services['cyclades_vmapi']['prefix']
61
PLANKTON_PREFIX = cyclades_services['cyclades_plankton']['prefix']
62
HELPDESK_PREFIX = cyclades_services['cyclades_helpdesk']['prefix']
63
UI_PREFIX = cyclades_services['cyclades_ui']['prefix']
64
USERDATA_PREFIX = cyclades_services['cyclades_userdata']['prefix']
65
ADMIN_PREFIX = cyclades_services['cyclades_admin']['prefix']
66

    
67
COMPUTE_ROOT_URL = join_urls(BASE_URL, COMPUTE_PREFIX)
68

    
69

    
70
# --------------------------------------------------------------------
71
# Process Astakos settings
72

    
73
ASTAKOS_AUTH_URL = getattr(
74
    settings, 'ASTAKOS_AUTH_URL',
75
    'https://accounts.example.synnefo.org/astakos/identity/v2.0')
76

    
77

    
78
# --------------------------------------
79
# Define a LazyAstakosUrl
80
# This is used to define ASTAKOS_ACCOUNT_URL and
81
# ASTAKOS_UI_URL and should never be used as is.
82
class LazyAstakosUrl(object):
83
    def __init__(self, endpoints_name):
84
        self.endpoints_name = endpoints_name
85

    
86
    def __str__(self):
87
        if not hasattr(self, 'str'):
88
            try:
89
                astakos_client = \
90
                    AstakosClient(SERVICE_TOKEN, ASTAKOS_AUTH_URL)
91
                self.str = getattr(astakos_client, self.endpoints_name)
92
            except Exception as excpt:
93
                logger.exception(
94
                    "Could not retrieve endpoints from Astakos url %s: %s",
95
                    ASTAKOS_AUTH_URL, excpt)
96
                return ""
97
        return self.str
98

    
99
# --------------------------------------
100
# Define ASTAKOS_UI_URL and ASTAKOS_ACCOUNT_URL as LazyAstakosUrl
101
# These are used to define the proxy paths.
102
# These have to be resolved lazily (by the proxy function) so
103
# they should not be used as is.
104
ASTAKOS_ACCOUNT_URL = LazyAstakosUrl('account_url')
105
ASTAKOS_UI_URL = LazyAstakosUrl('ui_url')
106

    
107
# --------------------------------------
108
# Define Astakos prefixes
109
ASTAKOS_PROXY_PREFIX = getattr(settings, 'CYCLADES_PROXY_PREFIX', '_astakos')
110
ASTAKOS_AUTH_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'identity')
111
ASTAKOS_ACCOUNT_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'account')
112
ASTAKOS_UI_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'ui')
113

    
114
# --------------------------------------
115
# Define Astakos proxy paths
116
ASTAKOS_AUTH_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_AUTH_PREFIX)
117
ASTAKOS_ACCOUNT_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_ACCOUNT_PREFIX)
118
ASTAKOS_UI_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_UI_PREFIX)