From aefcdf003c62e1f20f66db160fb69a70b7fda7eb Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Tue, 6 Feb 2007 03:32:22 +0000 Subject: [PATCH] =?utf8?q?Manejar=20bien=20errores=20en=20controlador=20de?= =?utf8?q?=20docente.=20Informar=20mejor=20al=20usuario=20cuando=20un=20id?= =?utf8?q?=20no=20es=20v=C3=A1lido,=20o=20no=20existe=20es=20el=20objeto,?= =?utf8?q?=20al=20editar,=20activar,=20ver=20o=20borrar=20docentes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- sercom/subcontrollers/docente/__init__.py | 76 ++++++++++++++++++++--- 1 file changed, 68 insertions(+), 8 deletions(-) diff --git a/sercom/subcontrollers/docente/__init__.py b/sercom/subcontrollers/docente/__init__.py index c4dcfc5..df41ae9 100644 --- a/sercom/subcontrollers/docente/__init__.py +++ b/sercom/subcontrollers/docente/__init__.py @@ -63,7 +63,19 @@ class DocenteController(controllers.Controller, identity.SecureResource): @expose() def activate(self, id, activo): """Save or create record to model""" - cls.get(int(id)).activo = int(activo) + try: + id = int(id) + 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') @@ -91,19 +103,44 @@ class DocenteController(controllers.Controller, identity.SecureResource): def edit(self, id, **kw): """Edit record in model""" try: - r = cls.get(int(id)) + 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: - flash = _('No existe el docente con identificador %d.') % id + 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) + return dict(name=name, namepl=namepl, record=r, form=form, tg_flash=f) @validate(form=form) @error_handler(edit) @expose() def update(self, id, **kw): """Save or create record to model""" - record = cls.get(int(id)) - record.set(**kw) + 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) @@ -111,7 +148,19 @@ class DocenteController(controllers.Controller, identity.SecureResource): @expose(template='kid:sercom.subcontrollers.%s.templates.show' % name) def show(self,id, **kw): """Show record in model""" - r = cls.get(int(id)) + 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'] return dict(name=name, namepl=namepl, record=r) @@ -119,7 +168,18 @@ class DocenteController(controllers.Controller, identity.SecureResource): @expose() def delete(self, id): """Destroy record in model""" - cls.delete(int(id)) + 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) -- 2.43.0