]> git.llucax.com Git - z.facultad/75.52/sercom.git/blob - sercom/controllers.py
Muestro las entregas que se hicieron en Grupo o Individualmente.
[z.facultad/75.52/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 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             # Proximas instancias de entrega
52             instancias = list(InstanciaDeEntrega.select(
53                 AND(InstanciaDeEntrega.q.inicio <= now,
54                     InstanciaDeEntrega.q.fin > now)).orderBy(InstanciaDeEntrega.q.fin))
55             # Ultimas N entregas realizadas
56             # Grupos en los que el usuario formo parte
57             m = [i.grupo.id for i in Grupo.selectByAlumno(identity.current.user)]
58             entregador = AlumnoInscripto.selectByAlumno(identity.current.user)
59             m.append(entregador.id)
60             entregas = list(Entrega.select(IN(Entrega.q.entregadorID, m))[:5])
61             return dict(instancias_activas=instancias, now=now, entregas=entregas)
62         return dict()
63
64     @expose(template='.templates.login')
65     def login(self, forward_url=None, previous_url=None, tg_errors=None, *args,
66             **kw):
67
68         if tg_errors:
69             flash(_(u'Hubo un error en el formulario!'))
70
71         if not identity.current.anonymous \
72                 and identity.was_login_attempted() \
73                 and not identity.get_identity_errors():
74             raise redirect(forward_url)
75
76         forward_url = None
77         previous_url = request.path
78
79         if identity.was_login_attempted():
80             msg = _(u'Las credenciales proporcionadas no son correctas o no '
81                     'le dan acceso al recurso solicitado.')
82         elif identity.get_identity_errors():
83             msg = _(u'Debe proveer sus credenciales antes de acceder a este '
84                     'recurso.')
85         else:
86             msg = _(u'Por favor ingrese.')
87             forward_url = request.headers.get('Referer', '/')
88
89         fields = list(LoginForm.fields)
90         if forward_url:
91             fields.append(W.HiddenField(name='forward_url'))
92         fields.extend([W.HiddenField(name=name) for name in request.params
93                 if name not in ('login_user', 'login_password', 'login_submit',
94                                 'forward_url')])
95         login_form = LoginForm(fields=fields, action=previous_url)
96
97         values = dict(forward_url=forward_url)
98         values.update(request.params)
99
100         response.status=403
101         return dict(login_form=login_form, form_data=values, message=msg,
102                 logging_in=True)
103
104     @expose()
105     def logout(self):
106         identity.current.logout()
107         raise redirect(url('/'))
108
109     docente = DocenteController()
110
111     grupo = GrupoController()
112
113     alumno = AlumnoController()
114
115     enunciado = EnunciadoController()
116
117     ejercicio = EjercicioController()
118
119     caso_de_prueba = CasoDePruebaController()
120
121     curso = CursoController()
122
123     docente_inscripto = DocenteInscriptoController()
124
125     alumno_inscripto = AlumnoInscriptoController()
126
127     correccion = CorreccionController()
128
129     admin = identity.SecureObject(CatWalk(model), identity.has_permission('admin'))
130
131     mis_entregas = MisEntregasController()
132
133 #{{{ Agrega summarize a namespace tg de KID
134 def summarize(text, size, concat=True, continuation='...'):
135     """Summarize a string if it's length is greater than a specified size. This
136     is useful for table listings where you don't want the table to grow because
137     of a large field.
138
139     >>> from sercome.controllers
140     >>> text = '''Why is it that nobody remembers the name of Johann
141     ... Gambolputty de von Ausfern-schplenden-schlitter-crasscrenbon-fried-
142     ... digger-dingle-dangle-dongle-dungle-burstein-von-knacker-thrasher-apple-
143     ... banger-horowitz-ticolensic-grander-knotty-spelltinkle-grandlich-
144     ... grumblemeyer-spelterwasser-kurstlich-himbleeisen-bahnwagen-gutenabend-
145     ... bitte-ein-nurnburger-bratwustle-gernspurten-mitz-weimache-luber-
146     ... hundsfut-gumberaber-shonedanker-kalbsfleisch-mittler-aucher von
147     ... Hautkopft of Ulm?'''
148     >>> summarize(text, 30)
149     'Why is it that nobody remem...'
150     >>> summarize(text, 68, False, ' [...]')
151     'Why is it that nobody remembers the name of Johann\nGambolputty [...]'
152     >>> summarize(text, 68, continuation=' >>')
153     'Why is it that nobody remembers the name of Johann Gambolputty de >>'
154     """
155     if text is not None:
156         if concat:
157             text = text.replace('\n', ' ')
158         if len(text) > size:
159             text = text[:size-len(continuation)] + continuation
160     return text
161
162 def add_custom_stdvars(vars):
163     return vars.update(dict(summarize=summarize))
164
165 view.variable_providers.append(add_custom_stdvars)
166 #}}}
167