1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
##############################################################################
# Copyright (c) 2018 Sawyer Bergeron, Parker Berberian, and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import json
import os
from django.shortcuts import render
from django.http import HttpResponse
from liblaas.views import flavor_list_hosts, flavor_list_flavors
origin = "anuket" if os.environ.get("TEMPLATE_OVERRIDE_DIR") == 'laas' else "lfedge"
def host_list_view(request):
if request.method != "GET":
return HttpResponse(status=405)
host_list = flavor_list_hosts(origin)
flavor_list = flavor_list_flavors(origin)
flavor_map = {}
for flavor in flavor_list:
flavor_map[flavor['flavor_id']] = flavor['name']
# Apparently Django Templating lacks many features that regular Jinja offers, so I need to get creative
for host in host_list:
id = host["flavor"]
name = flavor_map[id]
host["flavor"] = {"id": id, "name": name}
template = "resource/hosts.html"
context = {
"hosts": host_list,
"flavor_map": flavor_map
}
return render(request, template, context)
def profile_view(request, resource_id):
if request.method != "GET":
return HttpResponse(status=405)
flavor_list = flavor_list_flavors(origin)
selected_flavor = {}
for flavor in flavor_list:
if flavor["flavor_id"] == resource_id:
selected_flavor = flavor
break
template = "resource/hostprofile_detail.html"
context = {
"flavor": selected_flavor
}
return render(request, template, context)
|