72904f9bd4703bf7c82d21dfa47e541887d66740
[myslice.git] / ui / topmenu.py
1 # a set of utilities to help make the global layout consistent across views
2
3 # dropdowns are kind of ad hoc for now, and limited to one level
4 # [ 
5 # ### a regular first-level button
6 # {'label':...,'href':...}, 
7 # ### a dropdown
8 # { 'label': ..., 'href'=..., 'dropdown':True, 'contents': [ { 'label':.., 'href'} ] }
9 # , ..]
10 def topmenu_items (current,request=None):
11     has_user=request.user.is_authenticated()
12     result=[]
13     if has_user:
14         result.append({'label':'Dashboard', 'href': '/portal/dashboard/'})
15         result.append({'label':'Request a slice', 'href': '/portal/slice_request/'})
16         result.append({'label':'My Account', 'href': '/portal/account/'})
17         result.append({'label':'Contact Support', 'href': '/portal/contact/'})
18 # Not really useful at this point, is it ?
19 # This should probably go into dashboard at some point
20 #        result.append({'label':'Platforms', 'href': '/portal/platforms/'})
21 # the code for building a dropdown instead - but somehow this is broken
22 #        dropdown = [ {'label':'..', 'href': '..'}, ...]
23 #        result.append({'label': 'More', 'href':"#", 'dropdown':True, 'contents':dropdown})
24     else:
25         result.append({'label':'Home', 'href': '/login'})
26         # looks like this is accessible to non-logged users
27         result.append({'label':'Platforms', 'href': '/portal/platforms/'})
28         result.append({'label':'Register', 'href': '/portal/register/'})
29         result.append({'label':'Contact Support', 'href': '/portal/contact/'})
30     # mark active
31     for d in result:
32         if 'dropdown' in d:
33             for dd in d['contents']:
34                 if dd['label'] == current: dd['is_active']=True
35         else:
36             if d['label'] == current: d['is_active']=True
37     return result
38
39 def the_user (request):
40     "retrieves logged in user's email, or empty string"
41     if not request.user.is_authenticated (): 
42         return ''
43     else: 
44         return request.user.email