blob: 880cf3f0452665a6d22b4df5a21b49fcb999030f [file] [log] [blame]
lombardoffb37bca2018-05-03 16:20:04 +02001#
2# Copyright 2018 CNIT - Consorzio Nazionale Interuniversitario per le Telecomunicazioni
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17from django.shortcuts import render, redirect
18from django.contrib.auth.decorators import login_required, permission_required
19from django.http import HttpResponse, JsonResponse
20from lib.osm.osmclient.client import Client
21import json
22import logging
23
24logging.basicConfig(level=logging.DEBUG)
25log = logging.getLogger('helper.py')
26
27@login_required
28def list(request):
29 client = Client()
30 result = client.vim_list()
31 print result
32 result = {
33 "datacenters": result
34 }
35 return __response_handler(request, result, 'vim_list.html')
36
37@login_required
38def create(request):
39 result = {}
40 if request.method == 'GET':
41 return __response_handler(request, result, 'vim_create.html')
42 else:
43 new_vim_dict = request.POST.dict()
44 client = Client()
45 keys = ["schema_version",
46 "schema_type",
47 "name",
48 "vim_url",
49 "vim_type",
50 "vim_user",
51 "vim_password",
52 "vim_tenant_name",
53 "description"]
54 vim_data = dict(filter(lambda i: i[0] in keys and len(i[1]) > 0, new_vim_dict.items()))
55 vim_data['config']={}
56 for k,v in new_vim_dict.items():
57 if str(k).startswith('config_') and len(v) > 0:
58 config_key = k[7:]
59 vim_data['config'][config_key] = v
lombardof1a6af282018-05-10 11:49:32 +020060 if 'additional_conf' in new_vim_dict:
lombardof04c0dc72018-05-10 19:00:49 +020061 try:
62 additional_conf_dict = json.loads(new_vim_dict['additional_conf'])
63 for k,v in additional_conf_dict.items():
64 vim_data['config'][k] = v
65 except Exception as e:
66 # TODO return error on json.loads exception
67 print e
68
lombardoffb37bca2018-05-03 16:20:04 +020069 result = client.vim_create(vim_data)
70 # TODO 'vim:show', to_redirect=True, vim_id=vim_id
71 return __response_handler(request, result, 'vim:list', to_redirect=True)
72
73@login_required
74def delete(request, vim_id=None):
75 try:
76 client = Client()
77 del_res = client.vim_delete(vim_id)
78 except Exception as e:
79 log.exception(e)
80 return __response_handler(request, {}, 'vim:list', to_redirect=True)
81
82@login_required
83def show(request, vim_id=None):
84 client = Client()
85 datacenter = client.vim_get(vim_id)
86 print datacenter
87 return __response_handler(request, {
88 "datacenter": datacenter
89 }, 'vim_show.html')
90
91
92def __response_handler(request, data_res, url=None, to_redirect=None, *args, **kwargs):
93 raw_content_types = request.META.get('HTTP_ACCEPT', '*/*').split(',')
94 if 'application/json' in raw_content_types:
95 return JsonResponse(data_res)
96 elif to_redirect:
97 return redirect(url, *args, **kwargs)
98 else:
99 return render(request, url, data_res)