-# vim: set et sw=4 sts=4 encoding=utf-8 :
+# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
+#{{{ Imports
+import cherrypy
from turbogears import controllers, expose, redirect
-from turbogears import validate, validators, flash, error_handler
-from sercom.model import Docente
-from turbogears.widgets import *
+from turbogears import validate, flash, error_handler
+from turbogears import validators as V
+from turbogears import widgets as W
from turbogears import identity
from turbogears import paginate
from docutils.core import publish_parts
+from sercom.subcontrollers import validate as val
+from sercom.model import Docente
+#}}}
+#{{{ Configuración
cls = Docente
name = 'docente'
namepl = name + 's'
-
-form = TableForm(fields=[
- TextField(name='usuario', label=_(u'Usuario'),
- help_text=_(u'Requerido.'),
- validator=validators.UnicodeString(min=3, max=10, strip=True)),
- TextField(name='nombre', label=_(u'Nombre'),
- help_text=_(u'Requerido.'),
- validator=validators.UnicodeString(min=10, max=255, strip=True)),
- TextField(name='email', label=_(u'E-Mail'),
- #help_text=_(u'Dirección de e-mail.'),
- validator=validators.All(
- validators.Email(not_empty=False, resolve_domain=True),
- validators.UnicodeString(not_empty=False, max=255, strip=True))),
- TextField(name='telefono', label=_(u'Teléfono'),
- #help_text=_(u'Texto libre para teléfono, se puede incluir horarios o varias entradas.'),
- validator=validators.UnicodeString(not_empty=False, min=7, max=255, strip=True)),
- TextArea(name='observaciones', label=_(u'Observaciones'),
- #help_text=_(u'Observaciones.'),
- validator=validators.UnicodeString(not_empty=False, strip=True)),
- CheckBox(name='nombrado', label=_(u'Nombrado'), default=1,
- #help_text=_(u'Indica si tiene cargo.'),
- validator=validators.Bool(if_empty=1)),
- CheckBox(name='activo', label=_(u'Activo'), default=1,
- #help_text=_(u'Si no está activo no puede ingresar al sistema.'),
- validator=validators.Bool(if_empty=1)),
-])
-
+#}}}
+
+#{{{ Validación
+def validate_get(id):
+ return val.validate_get(cls, name, id)
+
+def validate_set(id, data):
+ return val.validate_set(cls, name, id, data)
+
+def validate_new(data):
+ return val.validate_new(cls, name, data)
+#}}}
+
+#{{{ Formulario
+class DocenteForm(W.TableForm):
+ class Fields(W.WidgetsList):
+ usuario = W.TextField(label=_(u'Usuario'),
+ help_text=_(u'Requerido y único.'),
+ validator=V.UnicodeString(min=3, max=10, strip=True)),
+ nombre = W.TextField(label=_(u'Nombre'),
+ help_text=_(u'Requerido.'),
+ validator=V.UnicodeString(min=10, max=255, strip=True)),
+ email = W.TextField(label=_(u'E-Mail'),
+ #help_text=_(u'Dirección de e-mail.'),
+ validator=V.All(
+ V.Email(not_empty=False, resolve_domain=True),
+ V.UnicodeString(not_empty=False, max=255, strip=True))),
+ telefono = W.TextField(label=_(u'Teléfono'),
+ #help_text=_(u'Texto libre para teléfono, se puede incluir '
+ # 'horarios o varias entradas.'),
+ validator=V.UnicodeString(not_empty=False, min=7, max=255,
+ strip=True)),
+ observaciones = W.TextArea(label=_(u'Observaciones'),
+ #help_text=_(u'Observaciones.'),
+ validator=V.UnicodeString(not_empty=False, strip=True)),
+ nombrado = W.CheckBox(label=_(u'Nombrado'), default=1,
+ #help_text=_(u'Indica si tiene cargo.'),
+ validator=V.Bool(if_empty=1)),
+ activo = W.CheckBox(label=_(u'Activo'), default=1,
+ #help_text=_(u'Si no está activo no puede ingresar al sistema.'),
+ validator=V.Bool(if_empty=1)),
+ fields = Fields()
+ javascript = [W.JSSource("MochiKit.DOM.focusOnLoad('form_usuario');")]
+
+form = DocenteForm()
+#}}}
+
+#{{{ Controlador
class DocenteController(controllers.Controller, identity.SecureResource):
"""Basic model admin interface"""
require = identity.has_permission('admin')
def index(self):
raise redirect('list')
- @expose(template='kid:sercom.subcontrollers.%s.templates.list' % name)
+ @expose(template='kid:%s.templates.list' % __name__)
@paginate('records')
- def list(self, **kw):
+ def list(self):
"""List records in model"""
- f = kw.get('tg_flash', None)
r = cls.select()
-
- return dict(records=r, name=name, namepl=namepl, tg_flash=f)
+ return dict(records=r, name=name, namepl=namepl)
@expose()
def activate(self, id, activo):
"""Save or create record to model"""
+ r = validate_get(id)
try:
- id = int(id)
+ r.activo = bool(int(activo))
except ValueError:
- raise redirect('../list',
- tg_flash=_(u'Identificador inválido: %s.') % id)
-
- try:
- r = cls.get(id)
- except LookupError:
- f = _(u'No existe el %s con identificador %d.') % (name, id)
- raise redirect('../list', tg_flash=f)
-
- r.activo = bool(int(activo))
-
- raise redirect('../list')
+ raise cherrypy.NotFound
+ raise redirect('../../list')
- @expose(template='kid:sercom.subcontrollers.%s.templates.new' % name)
+ @expose(template='kid:%s.templates.new' % __name__)
def new(self, **kw):
"""Create new records in model"""
- f = kw.get('tg_flash', None)
- return dict(name=name, namepl=namepl, form=form, tg_flash=f, values=kw)
+ return dict(name=name, namepl=namepl, form=form, values=kw)
@validate(form=form)
@error_handler(new)
@expose()
def create(self, **kw):
"""Save or create record to model"""
- try:
- cls(**kw)
- except Exception, e:
- raise redirect('new', tg_flash=_(u'No se pudo crear el nuevo %s, ' \
- 'probablemente ya existe uno con el mismo usuario (error: %s).'
- % (name, e)), **kw)
-
- raise redirect('list', tg_flash=_(u'Se creó un nuevo %s.') % name)
+ validate_new(kw)
+ flash(_(u'Se creó un nuevo %s.') % name)
+ raise redirect('list')
- @expose(template='kid:sercom.subcontrollers.%s.templates.edit' % name)
+ @expose(template='kid:%s.templates.edit' % __name__)
def edit(self, id, **kw):
"""Edit record in model"""
- try:
- id = int(id)
- except ValueError:
- raise redirect('../list',
- tg_flash=_(u'Identificador inválido: %s.') % id)
-
- f = kw.get('tg_flash', None)
- try:
- r = cls.get(id)
- except LookupError:
- f = _(u'No existe el %s con identificador %d.') % (name, id)
- raise redirect('../list', tg_flash=f)
-
- return dict(name=name, namepl=namepl, record=r, form=form, tg_flash=f)
+ r = validate_get(id)
+ return dict(name=name, namepl=namepl, record=r, form=form)
@validate(form=form)
@error_handler(edit)
@expose()
def update(self, id, **kw):
"""Save or create record to model"""
- try:
- id = int(id)
- except ValueError:
- raise redirect('../list',
- tg_flash=_(u'Identificador inválido: %s.') % id)
-
- try:
- record = cls.get(id)
- except LookupError:
- raise redirect('../list',
- tg_flash=_(u'No existe el %s con identificador %d.')
- % (name, id))
-
- try:
- record.set(**kw)
- except Exception, e:
- raise redirect('../edit/%d' % id, tg_flash=_(u'No se pudo ' \
- 'modificar el %s, probablemente ya existe uno con el mismo ' \
- 'usuario (error: %s).' % (name, e)), **kw)
-
- raise redirect('../list',
- tg_flash=_(u'El %s fue actualizado.') % name)
+ r = validate_set(id, kw)
+ flash(_(u'El %s fue actualizado.') % name)
+ raise redirect('../list')
- @expose(template='kid:sercom.subcontrollers.%s.templates.show' % name)
+ @expose(template='kid:%s.templates.show' % __name__)
def show(self,id, **kw):
"""Show record in model"""
- try:
- id = int(id)
- except ValueError:
- raise redirect('../list',
- tg_flash=_(u'Identificador inválido: %s.') % id)
-
- try:
- r = cls.get(id)
- except LookupError:
- raise redirect('../list',
- tg_flash=_(u'No existe el %s con identificador %d.')
- % (name, id))
-
- r.obs = publish_parts(r.observaciones, writer_name='html')['html_body']
-
+ r = validate_get(id)
+ if r.observaciones is None:
+ r.obs = ''
+ else:
+ r.obs = publish_parts(r.observaciones, writer_name='html')['html_body']
return dict(name=name, namepl=namepl, record=r)
@expose()
def delete(self, id):
"""Destroy record in model"""
- try:
- id = int(id)
- except ValueError:
- raise redirect('../list',
- tg_flash=_(u'Identificador inválido: %s.') % id)
-
- try:
- cls.delete(id)
- except LookupError:
- raise redirect('../list',
- tg_flash=_(u'No existe el %s con identificador %d.')
- % (name, id))
-
- raise redirect('../list',
- tg_flash=_(u'El %s fue eliminado permanentemente.') % name)
+ r = validate_get(id)
+ r.destroySelf()
+ flash(_(u'El %s fue eliminado permanentemente.') % name)
+ raise redirect('../list')
+#}}}