Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / cyclades_settings.py @ e407f159

History | View | Annotate | Download (4.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 django.conf import settings
35
from synnefo.lib import join_urls, parse_base_url
36
from synnefo.util.keypath import get_path, set_path
37
from synnefo.api.services import cyclades_services as vanilla_cyclades_services
38
from synnefo.lib.services import fill_endpoints
39
from astakosclient import AstakosClient
40

    
41
from copy import deepcopy
42

    
43

    
44
# --------------------------------------------------------------------
45
# Process Cyclades settings
46

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

    
52
CUSTOMIZE_SERVICES = getattr(settings, 'CYCLADES_CUSTOMIZE_SERVICES', ())
53
cyclades_services = deepcopy(vanilla_cyclades_services)
54
fill_endpoints(cyclades_services, BASE_URL)
55
for path, value in CUSTOMIZE_SERVICES:
56
    set_path(cyclades_services, path, value, createpath=True)
57

    
58
COMPUTE_PREFIX = get_path(cyclades_services, 'cyclades_compute.prefix')
59
VMAPI_PREFIX = get_path(cyclades_services, 'cyclades_vmapi.prefix')
60
PLANKTON_PREFIX = get_path(cyclades_services, 'cyclades_plankton.prefix')
61
HELPDESK_PREFIX = get_path(cyclades_services, 'cyclades_helpdesk.prefix')
62
UI_PREFIX = get_path(cyclades_services, 'cyclades_ui.prefix')
63
USERDATA_PREFIX = get_path(cyclades_services, 'cyclades_userdata.prefix')
64
ADMIN_PREFIX = get_path(cyclades_services, 'cyclades_admin.prefix')
65

    
66
COMPUTE_ROOT_URL = join_urls(BASE_URL, COMPUTE_PREFIX)
67

    
68

    
69
# --------------------------------------------------------------------
70
# Process Astakos settings
71

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

    
76

    
77
# --------------------------------------
78
# Define a LazyAstakosUrl
79
class LazyAstakosUrl(object):
80
    def __init__(self, endpoints_name):
81
        self.endpoints_name = endpoints_name
82

    
83
    def __str__(self):
84
        if not hasattr(self, 'str'):
85
            try:
86
                astakos_client = \
87
                    AstakosClient(SERVICE_TOKEN, ASTAKOS_AUTH_URL)
88
                self.str = getattr(astakos_client, self.endpoints_name)
89
            except:
90
                return None
91
        return self.str
92

    
93
# --------------------------------------
94
# Define ASTAKOS_UI_URL and ASTAKOS_ACCOUNT_URL as LazyAstakosUrl
95
ASTAKOS_ACCOUNT_URL = LazyAstakosUrl('account_url')
96
ASTAKOS_UI_URL = LazyAstakosUrl('ui_url')
97

    
98
# --------------------------------------
99
# Define Astakos prefixes
100
ASTAKOS_PROXY_PREFIX = getattr(settings, 'CYCLADES_PROXY_PREFIX', '_astakos')
101
ASTAKOS_AUTH_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'identity')
102
ASTAKOS_ACCOUNT_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'account')
103
ASTAKOS_UI_PREFIX = join_urls('/', ASTAKOS_PROXY_PREFIX, 'ui')
104

    
105
# --------------------------------------
106
# Define Astakos proxy paths
107
ASTAKOS_AUTH_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_AUTH_PREFIX)
108
ASTAKOS_ACCOUNT_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_ACCOUNT_PREFIX)
109
ASTAKOS_UI_PROXY_PATH = join_urls(BASE_PATH, ASTAKOS_UI_PREFIX)