Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / cyclades_settings.py @ 5858e64a

History | View | Annotate | Download (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
import logging
35

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

    
43
from copy import deepcopy
44

    
45

    
46
logger = logging.getLogger(__name__)
47

    
48
# --------------------------------------------------------------------
49
# Process Cyclades settings
50

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

    
56
CUSTOMIZE_SERVICES = getattr(settings, 'CYCLADES_CUSTOMIZE_SERVICES', ())
57
cyclades_services = deepcopy(vanilla_cyclades_services)
58
fill_endpoints(cyclades_services, BASE_URL)
59
for path, value in CUSTOMIZE_SERVICES:
60
    set_path(cyclades_services, path, value, createpath=True)
61

    
62
COMPUTE_PREFIX = get_path(cyclades_services, 'cyclades_compute.prefix')
63
NETWORK_PREFIX = get_path(cyclades_services, 'cyclades_network.prefix')
64
VMAPI_PREFIX = get_path(cyclades_services, 'cyclades_vmapi.prefix')
65
PLANKTON_PREFIX = get_path(cyclades_services, 'cyclades_plankton.prefix')
66
HELPDESK_PREFIX = get_path(cyclades_services, 'cyclades_helpdesk.prefix')
67
UI_PREFIX = get_path(cyclades_services, 'cyclades_ui.prefix')
68
USERDATA_PREFIX = get_path(cyclades_services, 'cyclades_userdata.prefix')
69
ADMIN_PREFIX = get_path(cyclades_services, 'cyclades_admin.prefix')
70

    
71
COMPUTE_ROOT_URL = join_urls(BASE_URL, COMPUTE_PREFIX)
72

    
73

    
74
# --------------------------------------------------------------------
75
# Process Astakos settings
76

    
77
ASTAKOS_AUTH_URL = getattr(
78
    settings, 'ASTAKOS_AUTH_URL',
79
    'https://accounts.example.synnefo.org/astakos/identity/v2.0')
80

    
81

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

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

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

    
111
# --------------------------------------
112
# Define Astakos prefixes
113
ASTAKOS_PROXY_PREFIX = getattr(settings, 'CYCLADES_PROXY_PREFIX', '_astakos')
114
ASTAKOS_AUTH_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'identity')
115
ASTAKOS_ACCOUNT_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'account')
116
ASTAKOS_UI_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'ui')
117

    
118
# --------------------------------------
119
# Define Astakos proxy paths
120
ASTAKOS_AUTH_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_AUTH_PREFIX)
121
ASTAKOS_ACCOUNT_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_ACCOUNT_PREFIX)
122
ASTAKOS_UI_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_UI_PREFIX)