]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/enunciado/__init__.py
Muestro todos los datos en el SHOW de Enunciado.
[software/sercom.git] / sercom / subcontrollers / enunciado / __init__.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
2
3 #{{{ Imports
4 from turbogears import controllers, expose, redirect
5 from turbogears import validate, flash, error_handler
6 from turbogears import validators as V
7 from turbogears import widgets as W
8 from turbogears import identity
9 from turbogears import paginate
10 from docutils.core import publish_parts
11 from sercom.subcontrollers import validate as val
12 from sercom.model import Enunciado, Docente, Curso, Tarea
13 from cherrypy import request, response
14
15 #}}}
16
17 #{{{ Configuración
18 cls = Enunciado
19 name = 'enunciado'
20 namepl = name + 's'
21
22 fkcls = Docente
23 fkname = 'autor'
24 fknamepl = fkname + 'es'
25 #}}}
26
27 #{{{ Validación
28 def validate_fk(data):
29     fk = data.get(fkname + 'ID', None)
30     if fk == 0: fk = None
31     if fk is not None:
32         try:
33             fk = fkcls.get(fk)
34         except LookupError:
35             flash(_(u'No se pudo crear el nuevo %s porque el %s con '
36                 'identificador %d no existe.' % (name, fkname, fk)))
37             raise redirect('new', **data)
38     data.pop(fkname + 'ID', None)
39     data[fkname] = fk
40     return fk
41
42 def validate_get(id):
43     return val.validate_get(cls, name, id)
44
45 def validate_set(id, data):
46     validate_fk(data)
47     return val.validate_set(cls, name, id, data)
48
49 def validate_new(data):
50     validate_fk(data)
51     return val.validate_new(cls, name, data)
52 #}}}
53
54 #{{{ Formulario
55 def get_options():
56     return [(0, _(u'--'))] + [(fk.id, fk.shortrepr()) for fk in fkcls.select()]
57
58 def get_tareas_fuente():
59     return [(fk.id, fk.shortrepr()) for fk in Tarea.select()]
60
61 class EnunciadoForm(W.TableForm):
62     class Fields(W.WidgetsList):
63         anio = W.TextField(label=_(u'Año'),
64             help_text=_(u'Requerido.'),
65             validator=V.Number(min=4, max=4, strip=True))
66         cuatrimestre = W.TextField(label=_(u'Cuatrimestre'),
67             help_text=_(u'Requerido.'),
68             validator=V.Number(min=1, max=1, strip=True))
69         nombre = W.TextField(label=_(u'Nombre'),
70             help_text=_(u'Requerido y Único.'),
71             validator=V.UnicodeString(min=5, max=60, strip=True))
72         fk = W.SingleSelectField(name=fkname+'ID', label=_(fkname.capitalize()),
73             options=get_options, validator=V.Int(not_empty=False))
74         descripcion = W.TextField(label=_(u'Descripción'),
75             validator=V.UnicodeString(not_empty=False, max=255, strip=True))
76         archivo = W.FileField(label=_(u'Archivo'))
77         tareasList = W.MultipleSelectField(label=_(u'Tareas'),
78             attrs=dict(style='width:300px'),
79             options=get_tareas_fuente,
80             validator=V.Int(not_empty=True))
81     fields = Fields()
82     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_nombre');")]
83
84 form = EnunciadoForm()
85 #}}}
86
87 #{{{ Controlador
88 class EnunciadoController(controllers.Controller, identity.SecureResource):
89     """Basic model admin interface"""
90     require = identity.has_permission('entregar')
91
92     @expose()
93     def default(self, tg_errors=None):
94         """handle non exist urls"""
95         raise redirect('list')
96
97     @expose()
98     def index(self):
99         raise redirect('list')
100
101     @expose(template='kid:%s.templates.list' % __name__)
102     @validate(validators=dict(autor=V.Int))
103     @paginate('records')
104     def list(self, autor=None):
105         """List records in model"""
106         if autor is None:
107             r = cls.select()
108         else:
109             r = cls.selectBy(autorID=autor)
110         return dict(records=r, name=name, namepl=namepl, parcial=autor)
111
112     @expose(template='kid:%s.templates.new' % __name__)
113     @identity.require(identity.has_permission('admin'))
114     def new(self, **kw):
115         """Create new records in model"""
116         return dict(name=name, namepl=namepl, form=form, values=kw)
117
118     @validate(form=form)
119     @error_handler(new)
120     @expose()
121     @identity.require(identity.has_permission('admin'))
122     def create(self, archivo, **kw):
123         """Save or create record to model"""
124         kw['archivo'] = archivo.file.read()
125         kw['archivo_name'] = archivo.filename
126         kw['archivo_type'] = archivo.type
127         kw['tareas'] = kw['tareasList']
128         del(kw['tareasList'])
129         validate_new(kw)
130         flash(_(u'Se creó un nuevo %s.') % name)
131         raise redirect('list')
132
133     @expose(template='kid:%s.templates.edit' % __name__)
134     @identity.require(identity.has_permission('admin'))
135     def edit(self, id, **kw):
136         """Edit record in model"""
137         r = validate_get(id)
138         r.tareasList = [a.id for a in r.tareas]
139         return dict(name=name, namepl=namepl, record=r, form=form)
140
141     @validate(form=form)
142     @error_handler(edit)
143     @expose()
144     @identity.require(identity.has_permission('admin'))
145     def update(self, id, **kw):
146         """Save or create record to model"""
147         kw['tareas'] = kw['tareasList']
148         del(kw['tareasList'])
149         r = validate_set(id, kw)
150         flash(_(u'El %s fue actualizado.') % name)
151         raise redirect('../list')
152
153     @expose(template='kid:%s.templates.show' % __name__)
154     def show(self,id, **kw):
155         """Show record in model"""
156         r = validate_get(id)
157         if r.descripcion is None:
158             r.desc = ''
159         else:
160             r.desc = publish_parts(r.descripcion, writer_name='html')['html_body']
161         return dict(name=name, namepl=namepl, record=r)
162
163     @expose()
164     @identity.require(identity.has_permission('admin'))
165     def delete(self, id):
166         """Destroy record in model"""
167         r = validate_get(id)
168         r.destroySelf()
169         flash(_(u'El %s fue eliminado permanentemente.') % name)
170         raise redirect('../list')
171
172     @expose()
173     def files(self, id):
174         r = validate_get(id)
175         response.headers["Content-Type"] = r.archivo_type
176         response.headers["Content-disposition"] = "attachment;filename=%s" % (r.archivo_name)
177         flash(_(u'El %s fue eliminado permanentemente.') % name)
178         return r.archivo
179
180     @expose("json")
181     @identity.require(identity.has_permission('admin'))
182     def de_curso(self, curso_id):
183         c = Curso.get(curso_id)
184         e = Enunciado.selectByCurso(c)
185         return dict(enunciados=e)
186 #}}}
187