Tools page using REST SFA API
[unfold.git] / portal / slicetabexperiment.py
1 # this somehow is not used anymore - should it not be ?
2 from django.core.context_processors import csrf
3 from django.http import HttpResponseRedirect
4 from django.contrib.auth import authenticate, login, logout
5 from django.template import RequestContext
6 from django.shortcuts import render_to_response
7 from django.shortcuts import render
8
9 from unfold.loginrequired import FreeAccessView
10
11 from manifold.core.query        import Query
12 from manifoldapi.manifoldapi    import execute_query
13 from manifoldapi.manifoldresult import ManifoldResult
14 from ui.topmenu import topmenu_items, the_user
15 from myslice.configengine import ConfigEngine
16
17 from myslice.theme import ThemeView
18 from myslice.configengine import ConfigEngine
19 from myslice.settings import logger
20
21 from sfa.planetlab.plxrn import hash_loginbase
22
23 import urllib2,json
24
25 class ExperimentView (FreeAccessView, ThemeView):
26     # parent View is portal/sliceview.py
27
28     template_name = 'slice-tab-experiment.html'
29
30     def get (self, request, slicename, state=None):
31   
32         username = self.request.user    
33         
34         pf_query = Query().get('local:platform').filter_by('disabled', '==', '0').filter_by('gateway_type', '==', 'sfa').select('platform')
35         res_platforms = execute_query(request, pf_query)
36         platforms = [p['platform'] for p in res_platforms]
37         #query_current_resources = Query.get('slice').select('resource','parent_authority').filter_by('slice_hrn','==',slicename)
38         #current_resources = execute_query(request, query_current_resources)
39
40         #parent_authority = current_resources[0]['parent_authority']
41         #
42         #split_slicename = slicename.split('.')
43         #ple_slicename = hash_loginbase(parent_authority) + '_' + split_slicename[-1]
44
45         #ple_resource_list=[]
46         #nitos_resource_list=[]
47         #nitos_paris_resource_list=[]
48         #iotlab_resource_list=[]
49         #try:
50         #    for resources in current_resources:
51         #        list_res = resources['resource']
52         #        for res in list_res:
53         #            split_list = res.split('+') # split the resource urn
54         #            if [s for s in split_list if 'ple' in s]: # find ple resources
55         #                res_hrn = split_list[-1] # last element is resource hrn
56         #                ple_resource_list.append(res_hrn)
57         #            if [s for s in split_list if 'omf:paris.fit-nitos.fr' in s]: # find nitos_paris resources
58         #                res_hrn = split_list[-1] # last element is resource hrn
59         #                nitos_paris_resource_list.append(res_hrn)
60         #            if [s for s in split_list if 'iotlab' in s]: # find iotlab resources
61         #                res_hrn = split_list[-1] # last element is resource hrn
62         #                iotlab_resource_list.append(res_hrn)
63         #            if [s for s in split_list if 'omf:nitos.indoor' in s]: # find nitos_indoor resources
64         #                res_hrn = split_list[-1] # last element is resource hrn
65         #                nitos_resource_list.append(res_hrn)
66         #            if [s for s in split_list if 'omf:nitos.outdoor' in s]: # find nitos_outdoor resources
67         #                res_hrn = split_list[-1] # last element is resource hrn
68         #                nitos_resource_list.append(res_hrn)
69
70
71         #except Exception as e:
72         #    logger.error("Exception in slicetabexperiment.py in OneLab resource search {}".format(e))
73         #
74         ##logger.debug("list of ple res hrns")
75         ##logger.debug(ple_resource_list)
76         ##logger.debug("list of nit_paris res hrns")
77         ##logger.debug(nitos_paris_resource_list)
78         ##logger.debug("list of iotLab res hrns")
79         ##logger.debug(iotlab_resource_list)
80         ##logger.debug("list of nitos res hrns")
81         ##logger.debug(nitos_resource_list)
82
83         #all_users = list() 
84         ##get all  iotlab users
85         #all_users = list() 
86         #try:
87         #    engine = ConfigEngine()
88         #    userData = "Basic " + (engine.iotlab_admin_user() + ":" + engine.iotlab_admin_password()).encode("base64").rstrip()
89         #    req = urllib2.Request(engine.iotlab_url())
90         #    req.add_header('Accept', 'application/json')
91         #    req.add_header("Content-type", "application/x-www-form-urlencoded")
92         #    req.add_header('Authorization', userData)
93         #    # make the request and print the results
94         #    res = urllib2.urlopen(req)
95         #    all_users = json.load(res) 
96         #except urllib2.URLError as e:
97         #    logger.error("There is a problem in getting iotlab users {}".format(e.reason))
98        
99
100         ##getting the login from email
101         ##initial value  no-account == contact_admin
102         #iot_login = 'contact_admin'
103         #username = str(username)
104         #for user in all_users:
105         #    if user['email'] == username:
106         #        iot_login = user['login']
107         env = { 'theme' : self.theme,
108                 'slicename':slicename, 
109                 'platforms':platforms,
110                 #'ple_slicename':ple_slicename, 
111                 #'username':username, 
112                 #'ple_resources':ple_resource_list, 
113                 #'nitos_resources': nitos_resource_list, 
114                 #'nitos_paris_resources':nitos_paris_resource_list, 
115                 #'iotlab_resources':iotlab_resource_list, 
116                 #'iot_login':iot_login,
117                 'request':self.request,
118               }
119         return render_to_response(self.template, env, context_instance=RequestContext(request))
120