]> git.llucax.com Git - software/sercom.git/blob - sercom/controllers.py
Permitir cambiar/especificar password al crear un docente.
[software/sercom.git] / sercom / controllers.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
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 turbogears.toolbox.catwalk import CatWalk
8 import model
9 from model import Visita, VisitaUsuario, InstanciaDeEntrega, Correccion, AND, DateTimeCol, Entrega, Grupo, AlumnoInscripto
10 from sqlobject import *
11 # from sercom import json
12
13 from subcontrollers import *
14
15 import logging
16 log = logging.getLogger("sercom.controllers")
17
18 class LoginForm(W.TableForm):
19     class Fields(W.WidgetsList):
20         login_user = W.TextField(label=_(u'Usuario'),
21             validator=V.NotEmpty())
22         login_password = W.PasswordField(label=_(u'Contraseña'),
23             validator=V.NotEmpty())
24     fields = Fields()
25     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_login_user');")]
26     submit = W.SubmitButton(name='login_submit')
27     submit_text = _(u'Ingresar')
28
29 class Root(controllers.RootController):
30
31     @expose()
32     def index(self):
33         raise redirect(url('/dashboard'))
34
35     @expose(template='.templates.welcome')
36     @identity.require(identity.not_anonymous())
37     def dashboard(self):
38         now = DateTimeCol.now()
39         if 'admin' in identity.current.permissions:
40             # TODO : Fijar el curso !!
41             correcciones = Correccion.selectBy(corrector=identity.current.user,
42                 corregido=None).count()
43             instancias = list(InstanciaDeEntrega.select(
44                 AND(InstanciaDeEntrega.q.inicio <= now,
45                     InstanciaDeEntrega.q.fin > now))
46                         .orderBy(InstanciaDeEntrega.q.fin))
47             return dict(a_corregir=correcciones,
48                 instancias_activas=instancias, now=now)
49
50         if 'entregar' in identity.current.permissions:
51             last_login = Visita.select(AND(VisitaUsuario.q.user_id == identity.current.user.id, Visita.q.visit_key == VisitaUsuario.q.visit_key))[-1:][0].created
52             # Proximas instancias de entrega
53             instancias = list(InstanciaDeEntrega.select(
54                 AND(InstanciaDeEntrega.q.inicio <= now,
55                     InstanciaDeEntrega.q.fin > now)).orderBy(InstanciaDeEntrega.q.fin))
56             # Ultimas N entregas realizadas
57             # Grupos en los que el usuario formo parte
58             m = [i.grupo.id for i in Grupo.selectByAlumno(identity.current.user)]
59             try:
60                 entregador = AlumnoInscripto.selectByAlumno(identity.current.user)
61                 m.append(entregador.id)
62             except:
63                 pass
64             entregas = list(Entrega.select(IN(Entrega.q.entregadorID, m))[:5])
65             
66             # Ultimas correcciones
67             correcciones = list(Correccion.select(AND(IN(Correccion.q.entregadorID, m), Correccion.q.corregido >= last_login)))
68             return dict(instancias_activas=instancias, now=now, entregas=entregas, correcciones=correcciones)
69         return dict()
70
71     @expose(template='.templates.login')
72     def login(self, forward_url=None, previous_url=None, tg_errors=None, *args,
73             **kw):
74
75         if tg_errors:
76             flash(_(u'Hubo un error en el formulario!'))
77
78         if not identity.current.anonymous \
79                 and identity.was_login_attempted() \
80                 and not identity.get_identity_errors():
81             raise redirect(forward_url)
82
83         forward_url = None
84         previous_url = request.path
85
86         if identity.was_login_attempted():
87             msg = _(u'Las credenciales proporcionadas no son correctas o no '
88                     'le dan acceso al recurso solicitado.')
89         elif identity.get_identity_errors():
90             msg = _(u'Debe proveer sus credenciales antes de acceder a este '
91                     'recurso.')
92         else:
93             msg = _(u'Por favor ingrese.')
94             forward_url = request.headers.get('Referer', '/')
95
96         fields = list(LoginForm.fields)
97         if forward_url:
98             fields.append(W.HiddenField(name='forward_url'))
99         fields.extend([W.HiddenField(name=name) for name in request.params
100                 if name not in ('login_user', 'login_password', 'login_submit',
101                                 'forward_url')])
102         login_form = LoginForm(fields=fields, action=previous_url)
103
104         values = dict(forward_url=forward_url)
105         values.update(request.params)
106
107         response.status=403
108         return dict(login_form=login_form, form_data=values, message=msg,
109                 logging_in=True)
110
111     @expose()
112     def logout(self):
113         identity.current.logout()
114         raise redirect(url('/'))
115
116     docente = DocenteController()
117
118     alumno = AlumnoController()
119
120     enunciado = EnunciadoController()
121
122     tarea_fuente = TareaFuenteController()
123
124     tarea_prueba = TareaPruebaController()
125
126     curso = CursoController()
127
128     correccion = CorreccionController()
129
130     admin = identity.SecureObject(CatWalk(model), identity.has_permission('admin'))
131
132     mis_entregas = MisEntregasController()
133
134     mis_correcciones = MisCorreccionesController()
135
136 #{{{ Agrega summarize a namespace tg de KID
137 def summarize(text, size, concat=True, continuation='...'):
138     """Summarize a string if it's length is greater than a specified size. This
139     is useful for table listings where you don't want the table to grow because
140     of a large field.
141
142     >>> from sercome.controllers
143     >>> text = '''Why is it that nobody remembers the name of Johann
144     ... Gambolputty de von Ausfern-schplenden-schlitter-crasscrenbon-fried-
145     ... digger-dingle-dangle-dongle-dungle-burstein-von-knacker-thrasher-apple-
146     ... banger-horowitz-ticolensic-grander-knotty-spelltinkle-grandlich-
147     ... grumblemeyer-spelterwasser-kurstlich-himbleeisen-bahnwagen-gutenabend-
148     ... bitte-ein-nurnburger-bratwustle-gernspurten-mitz-weimache-luber-
149     ... hundsfut-gumberaber-shonedanker-kalbsfleisch-mittler-aucher von
150     ... Hautkopft of Ulm?'''
151     >>> summarize(text, 30)
152     'Why is it that nobody remem...'
153     >>> summarize(text, 68, False, ' [...]')
154     'Why is it that nobody remembers the name of Johann\nGambolputty [...]'
155     >>> summarize(text, 68, continuation=' >>')
156     'Why is it that nobody remembers the name of Johann Gambolputty de >>'
157     """
158     if text is not None:
159         if concat:
160             text = text.replace('\n', ' ')
161         if len(text) > size:
162             text = text[:size-len(continuation)] + continuation
163     return text
164
165 def strbool(bool):
166     if bool:
167         return _(u'Sí')
168     return _(u'No')
169
170 def add_custom_stdvars(vars):
171     return vars.update(dict(summarize=summarize, strbool=strbool))
172
173 view.variable_providers.append(add_custom_stdvars)
174 #}}}
175