]> git.llucax.com Git - z.facultad/75.52/sercom.git/blobdiff - sercom/menu.py
se aprueba con 7 o mas.
[z.facultad/75.52/sercom.git] / sercom / menu.py
index acaf4989872b033e78b3ab4c5fc183e68c924a0e..1d90c8929ee649adede1e9b01fc55a69854f6895 100644 (file)
@@ -1,25 +1,35 @@
+# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
 
 from turbogears import url
-from turbogears.controllers import Controller
+from turbogears.identity import SecureResource
+from turbogears import identity
 
 class Menu:
     def __init__(self, base):
-        # Armo la lista de subcontrollers
-        self.items = filter(lambda i: isinstance(getattr(base, i), Controller), base.__dict__)
+        self.base = base
+        self.items = [i for i in dir(base)
+            if isinstance(getattr(base, i), SecureResource)]
         self.items.sort()
+        self.items = ['dashboard'] + self.items
+
+    def _check(self, c):
+        if hasattr(c, 'hide_to_admin') and 'admin' in identity.current.permissions: return False
+        if hasattr(c, 'hide_to_entregar') and 'admin' not in identity.current.permissions: return False
+        return c.require.eval_with_object(identity.current)
 
     def __repr__(self):
         option = u"""<option value="%s">%s</option>" """
         template = """
         <div id="navbar">
-                       Ir a :
-                       <select OnChange="window.location=this.options[this.selectedIndex].value;">
-                               %s
-                       </select>
-               </div>
+                Ir a :
+                <select OnChange="window.location=this.options[this.selectedIndex].value;">
+                    %s
+                </select>
+            </div>
         """
-        s = ''
+        s = option % ('', '-----')
         for i in self.items:
-            s + = option % (url('/' + i), i.capitalize().replace('_', ' '))
-        return t % s
+            if i == 'dashboard' or self._check(getattr(self.base, i)):
+                s += option % (url('/' + i), i.capitalize().replace('_', ' '))
+        return template % s