]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/controllers.py
Controller de AlumnoInscripto basico.
[z.facultad/75.52/sercom.git] / sercom / controllers.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 :
2
3 from turbogears import controllers, expose, view, url
4 from turbogears import widgets as W, validators as V
5 from turbogears import identity, redirect
6 from cherrypy import request, response
7 from model import InstanciaDeEntrega, Correccion, AND, DateTimeCol
8 # from sercom import json
9
10 from subcontrollers import *
11
12 import logging
13 log = logging.getLogger("sercom.controllers")
14
15 class LoginForm(W.TableForm):
16     class Fields(W.WidgetsList):
17         login_user = W.TextField(label=_(u'Usuario'),
18             validator=V.NotEmpty())
19         login_password = W.PasswordField(label=_(u'Contraseña'),
20             validator=V.NotEmpty())
21     fields = Fields()
22     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_login_user');")]
23     submit = W.SubmitButton(name='login_submit')
24     submit_text = _(u'Ingresar')
25
26 class Root(controllers.RootController):
27
28     @expose()
29     def index(self):
30         raise redirect(url('/dashboard'))
31
32     @expose(template='.templates.welcome')
33     @identity.require(identity.not_anonymous())
34     def dashboard(self):
35         if 'admin' in identity.current.permissions:
36             # TODO : Fijar el curso !!
37             correcciones = Correccion.selectBy(corrector=identity.current.user,
38                 nota=None).count()
39             now = DateTimeCol.now()
40             instancias = list(InstanciaDeEntrega.select(
41                 AND(InstanciaDeEntrega.q.inicio <= now,
42                     InstanciaDeEntrega.q.fin > now))
43                         .orderBy(InstanciaDeEntrega.q.fin))
44         return dict(a_corregir=correcciones,
45             instancias_activas=instancias, now=now)
46
47     @expose(template='.templates.login')
48     def login(self, forward_url=None, previous_url=None, tg_errors=None, *args,
49             **kw):
50
51         if tg_errors:
52             flash(_(u'Hubo un error en el formulario!'))
53
54         if not identity.current.anonymous \
55                 and identity.was_login_attempted() \
56                 and not identity.get_identity_errors():
57             raise redirect(forward_url)
58
59         forward_url = None
60         previous_url = request.path
61
62         if identity.was_login_attempted():
63             msg = _(u'Las credenciales proporcionadas no son correctas o no '
64                     'le dan acceso al recurso solicitado.')
65         elif identity.get_identity_errors():
66             msg = _(u'Debe proveer sus credenciales antes de acceder a este '
67                     'recurso.')
68         else:
69             msg = _(u'Por favor ingrese.')
70             forward_url = request.headers.get('Referer', '/')
71
72         fields = list(LoginForm.fields)
73         if forward_url:
74             fields.append(W.HiddenField(name='forward_url'))
75         fields.extend([W.HiddenField(name=name) for name in request.params
76                 if name not in ('login_user', 'login_password', 'login_submit',
77                                 'forward_url')])
78         login_form = LoginForm(fields=fields, action=previous_url)
79
80         values = dict(forward_url=forward_url)
81         values.update(request.params)
82
83         response.status=403
84         return dict(login_form=login_form, form_data=values, message=msg,
85                 logging_in=True)
86
87     @expose()
88     def logout(self):
89         identity.current.logout()
90         raise redirect(url('/'))
91
92     docente = DocenteController()
93
94     grupo = GrupoController()
95
96     alumno = AlumnoController()
97
98     enunciado = EnunciadoController()
99
100     ejercicio = EjercicioController()
101
102     caso_de_prueba = CasoDePruebaController()
103
104     curso = CursoController()
105
106     docente_inscripto = DocenteInscriptoController()
107
108     alumno_inscripto = AlumnoInscriptoController()
109
110     correccion = CorreccionController()
111
112
113 #{{{ Agrega summarize a namespace tg de KID
114 def summarize(text, size, concat=True, continuation='...'):
115     """Summarize a string if it's length is greater than a specified size. This
116     is useful for table listings where you don't want the table to grow because
117     of a large field.
118
119     >>> from sercome.controllers
120     >>> text = '''Why is it that nobody remembers the name of Johann
121     ... Gambolputty de von Ausfern-schplenden-schlitter-crasscrenbon-fried-
122     ... digger-dingle-dangle-dongle-dungle-burstein-von-knacker-thrasher-apple-
123     ... banger-horowitz-ticolensic-grander-knotty-spelltinkle-grandlich-
124     ... grumblemeyer-spelterwasser-kurstlich-himbleeisen-bahnwagen-gutenabend-
125     ... bitte-ein-nurnburger-bratwustle-gernspurten-mitz-weimache-luber-
126     ... hundsfut-gumberaber-shonedanker-kalbsfleisch-mittler-aucher von
127     ... Hautkopft of Ulm?'''
128     >>> summarize(text, 30)
129     'Why is it that nobody remem...'
130     >>> summarize(text, 68, False, ' [...]')
131     'Why is it that nobody remembers the name of Johann\nGambolputty [...]'
132     >>> summarize(text, 68, continuation=' >>')
133     'Why is it that nobody remembers the name of Johann Gambolputty de >>'
134     """
135     if text is not None:
136         if concat:
137             text = text.replace('\n', ' ')
138         if len(text) > size:
139             text = text[:size-len(continuation)] + continuation
140     return text
141
142 def add_custom_stdvars(vars):
143     return vars.update(dict(summarize=summarize))
144
145 view.variable_providers.append(add_custom_stdvars)
146 #}}}
147