Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / synnefo / cyclades_settings.py @ 7b438672

History | View | Annotate | Download (4.6 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
NETWORK_PREFIX = get_path(cyclades_services, 'cyclades_network.prefix')
60
VMAPI_PREFIX = get_path(cyclades_services, 'cyclades_vmapi.prefix')
61
PLANKTON_PREFIX = get_path(cyclades_services, 'cyclades_plankton.prefix')
62
HELPDESK_PREFIX = get_path(cyclades_services, 'cyclades_helpdesk.prefix')
63
UI_PREFIX = get_path(cyclades_services, 'cyclades_ui.prefix')
64
USERDATA_PREFIX = get_path(cyclades_services, 'cyclades_userdata.prefix')
65
ADMIN_PREFIX = get_path(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
class LazyAstakosUrl(object):
81
    def __init__(self, endpoints_name):
82
        self.endpoints_name = endpoints_name
83

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

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

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

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