]> git.llucax.com Git - software/sercom.git/blob - sercom/subcontrollers/caso_de_prueba/__init__.py
Cambiar forma de obtener listados parciales.
[software/sercom.git] / sercom / subcontrollers / caso_de_prueba / __init__.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 :
2
3 from turbogears import controllers, expose, redirect
4 from turbogears import validate, validators, flash, error_handler
5 from turbogears.widgets import *
6 from turbogears import identity
7 from turbogears import paginate
8 from docutils.core import publish_parts
9 from sercom.subcontrollers import validate as val
10 from sercom.model import CasoDePrueba, Enunciado
11
12 cls = CasoDePrueba
13 name = 'caso de prueba'
14 namepl = 'casos de prueba'
15
16 fkcls = Enunciado
17 fkname = 'enunciado'
18 fknamepl = fkname + 's'
19
20 def validate_fk(data):
21     fk = data.get(fkname + 'ID', None)
22     if fk == 0: fk = None
23     if fk is not None:
24         try:
25             fk = fkcls.get(fk)
26         except LookupError:
27             raise redirect('new', tg_flash=_(u'No se pudo crear el nuevo ' \
28                 '%s porque el %s con identificador %d no existe.'
29                     % (name, fkname, fk)), **data)
30     data.pop(fkname + 'ID', None)
31     data[fkname] = fk
32     return fk
33
34 def validate_get(id):
35     return val.validate_get(cls, name, id)
36
37 def validate_set(id, data):
38     validate_fk(data)
39     return val.validate_set(cls, name, id, data)
40
41 def validate_new(data):
42     validate_fk(data)
43     return val.validate_new(cls, name, data)
44
45 def get_options():
46     return [(0, _(u'<<General>>'))] + [(fk.id, fk.shortrepr())
47         for fk in fkcls.select()]
48
49 form = TableForm(fields=[
50     TextField(name='nombre', label=_(u'Nombre'),
51         help_text=_(u'Requerido y único.'),
52         validator=validators.UnicodeString(min=5, max=60, strip=True)),
53     SingleSelectField(name=fkname+'ID', label=_(fkname.capitalize()),
54         options=get_options, validator=validators.Int(not_empty=False)),
55     TextField(name='descripcion', label=_(u'Descripción'),
56         validator=validators.UnicodeString(not_empty=False, max=255, strip=True)),
57     TextField(name='retorno', label=_(u'Código de retorno'),
58         validator=validators.Int(not_empty=False, strip=True)),
59     TextField(name='tiempo_cpu', label=_(u'Tiempo de CPU'),
60         validator=validators.Number(not_empty=False, strip=True)),
61 ])
62
63 class CasoDePruebaController(controllers.Controller, identity.SecureResource):
64     """Basic model admin interface"""
65     require = identity.has_permission('admin')
66
67     @expose()
68     def default(self, tg_errors=None):
69         """handle non exist urls"""
70         raise redirect('list')
71
72     @expose()
73     def index(self):
74         raise redirect('list')
75
76     @expose(template='kid:%s.templates.list' % __name__)
77     @validate(validators=dict(enunciado=validators.Int))
78     @paginate('records')
79     def list(self, enunciado=None, tg_flash=None):
80         """List records in model"""
81         if enunciado is None:
82             r = cls.select()
83         else:
84             r = cls.selectBy(enunciadoID=enunciado)
85         return dict(records=r, name=name, namepl=namepl, tg_flash=tg_flash)
86
87     @expose(template='kid:%s.templates.new' % __name__)
88     def new(self, **kw):
89         """Create new records in model"""
90         f = kw.get('tg_flash', None)
91         return dict(name=name, namepl=namepl, form=form, tg_flash=f, values=kw)
92
93     @validate(form=form)
94     @error_handler(new)
95     @expose()
96     def create(self, **kw):
97         """Save or create record to model"""
98         validate_new(kw)
99         raise redirect('list', tg_flash=_(u'Se creó un nuevo %s.') % name)
100
101     @expose(template='kid:%s.templates.edit' % __name__)
102     def edit(self, id, **kw):
103         """Edit record in model"""
104         r = validate_get(id)
105         return dict(name=name, namepl=namepl, record=r, form=form,
106             tg_flash=kw.get('tg_flash', None))
107
108     @validate(form=form)
109     @error_handler(edit)
110     @expose()
111     def update(self, id, **kw):
112         """Save or create record to model"""
113         r = validate_set(id, kw)
114         raise redirect('../list',
115             tg_flash=_(u'El %s fue actualizado.') % name)
116
117     @expose(template='kid:%s.templates.show' % __name__)
118     def show(self, id, **kw):
119         """Show record in model"""
120         r = validate_get(id)
121         if r.descripcion is None:
122             r.desc = ''
123         else:
124             r.desc = publish_parts(r.descripcion, writer_name='html')['html_body']
125         return dict(name=name, namepl=namepl, record=r)
126
127     @expose()
128     def delete(self, id):
129         """Destroy record in model"""
130         r = validate_get(id)
131         r.destroySelf()
132         raise redirect('../list',
133             tg_flash=_(u'El %s fue eliminado permanentemente.') % name)
134