X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ui%2Ftopmenu.py;h=860e180b70956d76fb36f19a3c21bf4c1a0cf3ec;hb=1e05d200f9cdd0c8965f66be87962bf19c9c69e0;hp=3a94a212825e338dc1d00d1ea481d5fde453fd3d;hpb=3fd39627f0b94e34c4667430b932cf1ff4635223;p=myslice.git diff --git a/ui/topmenu.py b/ui/topmenu.py index 3a94a212..860e180b 100644 --- a/ui/topmenu.py +++ b/ui/topmenu.py @@ -1,3 +1,6 @@ +from pprint import pprint +from manifold.manifoldapi import execute_query +from manifold.core.query import Query # a set of utilities to help make the global layout consistent across views # dropdowns are kind of ad hoc for now, and limited to one level @@ -15,8 +18,21 @@ def topmenu_items (current,request=None): if has_user: result.append({'label':'Dashboard', 'href': '/portal/dashboard/'}) result.append({'label':'Request a slice', 'href': '/portal/slice_request/'}) - result.append({'label':'Validation', 'href': '/portal/validate/'}) + # ** Where am I a PI ** + # For this we need to ask SFA (of all authorities) = PI function + pi_authorities_query = Query.get('ple:user').filter_by('user_hrn', '==', '$user_hrn').select('pi_authorities') + try: + pi_authorities_tmp = execute_query(request, pi_authorities_query) + except: + pi_authorities_tmp = set() + pi_authorities = set() + for pa in pi_authorities_tmp: + pi_authorities |= set(pa['pi_authorities']) + print "pi_authorities =", pi_authorities + if len(pi_authorities) > 0: + result.append({'label':'Validation', 'href': '/portal/validate/'}) dropdown = [] + dropdown.append({'label':'Platforms', 'href': '/portal/platforms/'}) dropdown.append({'label':'My Account', 'href': '/portal/account/'}) dropdown.append({'label':'Contact Support', 'href': '/portal/contact/'}) result.append({'label': 'More', 'href':"#", 'dropdown':True, 'contents':dropdown})