first commit
[osm/LW-UI.git] / vimhandler / views.py
1 #
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
17 from django.shortcuts import render, redirect
18 from django.contrib.auth.decorators import login_required, permission_required
19 from django.http import HttpResponse, JsonResponse
20 from lib.osm.osmclient.client import Client
21 import json
22 import logging
23
24 logging.basicConfig(level=logging.DEBUG)
25 log = logging.getLogger('helper.py')
26
27 @login_required
28 def 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
38 def 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
60 print vim_data
61 result = client.vim_create(vim_data)
62 # TODO 'vim:show', to_redirect=True, vim_id=vim_id
63 return __response_handler(request, result, 'vim:list', to_redirect=True)
64
65 @login_required
66 def delete(request, vim_id=None):
67 try:
68 client = Client()
69 del_res = client.vim_delete(vim_id)
70 except Exception as e:
71 log.exception(e)
72 return __response_handler(request, {}, 'vim:list', to_redirect=True)
73
74 @login_required
75 def show(request, vim_id=None):
76 client = Client()
77 datacenter = client.vim_get(vim_id)
78 print datacenter
79 return __response_handler(request, {
80 "datacenter": datacenter
81 }, 'vim_show.html')
82
83
84 def __response_handler(request, data_res, url=None, to_redirect=None, *args, **kwargs):
85 raw_content_types = request.META.get('HTTP_ACCEPT', '*/*').split(',')
86 if 'application/json' in raw_content_types:
87 return JsonResponse(data_res)
88 elif to_redirect:
89 return redirect(url, *args, **kwargs)
90 else:
91 return render(request, url, data_res)