]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/enunciado/caso_de_prueba/__init__.py
Muevo CasoDePrueba a /enunciado y ajusto todo para que ande.
[software/sercom.git] / sercom / subcontrollers / enunciado / caso_de_prueba / __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 CasoDePrueba, Enunciado
13 #}}}
14
15 #{{{ Configuración
16 cls = CasoDePrueba
17 name = 'caso de prueba'
18 namepl = 'casos de prueba'
19
20 fkcls = Enunciado
21 fkname = 'enunciado'
22 fknamepl = fkname + 's'
23 #}}}
24
25 #{{{ Validación
26 def validate_fk(data):
27     fk = data.get(fkname + 'ID', None)
28     if fk == 0: fk = None
29     if fk is not None:
30         try:
31             fk = fkcls.get(fk)
32         except LookupError:
33             flash(_(u'No se pudo crear el nuevo %s porque el %s con '
34                 'identificador %d no existe.' % (name, fkname, fk)))
35             raise redirect('new', **data)
36     else:
37         flash(_(u'No se pudo crear el nuevo %s porque el %s con '
38             'identificador %d no existe.' % (name, fkname, fk)))
39         raise redirect('new', **data)
40     data.pop(fkname + 'ID', None)
41     data[fkname] = fk
42     return fk
43
44 def validate_get(id):
45     return val.validate_get(cls, name, id)
46
47 def validate_set(id, data):
48     validate_fk(data)
49     return val.validate_set(cls, name, id, data)
50
51 def validate_new(data):
52     validate_fk(data)
53     return val.validate_new(cls, name, data)
54
55 def validate_del(id):
56     return val.validate_del(cls, name, id)
57 #}}}
58
59 #{{{ Formulario
60 class CasoDePruebaForm(W.TableForm):
61     class Fields(W.WidgetsList):
62         enunciadoID = W.HiddenField()
63         nombre = W.TextField(label=_(u'Nombre'),
64             help_text=_(u'Requerido y único.'),
65             validator=V.UnicodeString(min=5, max=60, strip=True))
66         descripcion = W.TextField(label=_(u'Descripción'),
67             validator=V.UnicodeString(not_empty=False, max=255,
68                 strip=True))
69         comando = W.TextField(label=_(u'Comando'),
70             validator=V.UnicodeString(not_empty=False, strip=True))
71         retorno = W.TextField(label=_(u'Código de retorno'),
72             validator=V.Int(not_empty=False, strip=True))
73         max_tiempo_cpu = W.TextField(label=_(u'Máximo tiempo de CPU'),
74             validator=V.Number(not_empty=False, strip=True))
75     fields = Fields()
76     javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_nombre');")]
77
78 form = CasoDePruebaForm()
79 #}}}
80
81 #{{{ Controlador
82
83 class CasoDePruebaController(controllers.Controller, identity.SecureResource):
84     """Basic model admin interface"""
85     require = identity.has_permission('admin')
86
87     @expose(template='kid:%s.templates.list' % __name__)
88     @validate(validators=dict(enunciado=V.Int))
89     @paginate('records')
90     def list(self, enunciado):
91         """List records in model"""
92         r = cls.selectBy(enunciadoID=enunciado)
93         return dict(records=r, name=name, namepl=namepl, enunciado=enunciado)
94
95     @expose(template='kid:%s.templates.new' % __name__)
96     def new(self, enunciado=0, **kw):
97         """Create new records in model"""
98         form.fields[0].attrs['value'] = enunciado or kw['enunciadoID']
99         return dict(name=name, namepl=namepl, form=form, values=kw, enunciado=int(enunciado))
100
101     @validate(form=form)
102     @error_handler(new)
103     @expose()
104     def create(self, **kw):
105         """Save or create record to model"""
106         r = validate_new(kw)
107         flash(_(u'Se creó un nuevo %s.') % name)
108         raise redirect('list/%d' % r.enunciado.id)
109
110     @expose(template='kid:%s.templates.edit' % __name__)
111     def edit(self, id, **kw):
112         """Edit record in model"""
113         r = validate_get(id)
114         form.fields[0].attrs['value'] = r.enunciado.id
115         return dict(name=name, namepl=namepl, record=r, form=form)
116
117     @validate(form=form)
118     @error_handler(edit)
119     @expose()
120     def update(self, id, **kw):
121         """Save or create record to model"""
122         r = validate_set(id, kw)
123         flash(_(u'El %s fue actualizado.') % name)
124         raise redirect('../list/%d' % r.enunciado.id)
125
126     @expose(template='kid:%s.templates.show' % __name__)
127     def show(self, id, **kw):
128         """Show record in model"""
129         r = validate_get(id)
130         if r.descripcion is None:
131             r.desc = ''
132         else:
133             r.desc = publish_parts(r.descripcion, writer_name='html')['html_body']
134         return dict(name=name, namepl=namepl, record=r)
135
136     @expose()
137     def delete(self, enunciado, id):
138         """Destroy record in model"""
139         validate_del(id)
140         flash(_(u'El %s fue eliminado permanentemente.') % name)
141         raise redirect('../../list/%d' % int(enunciado))
142 #}}}
143