]> git.llucax.com Git - software/sercom.git/blobdiff - sercom/model.py
Reporar mejor los errores en subcontrollers.validate.
[software/sercom.git] / sercom / model.py
index 7354509203b0fefe0a388505c1e8bf696ff54d78..9124dde8dfbb06822493e6c6473ac4aae53f8023 100644 (file)
@@ -1,12 +1,15 @@
-# vim: set et sw=4 sts=4 encoding=utf-8 :
+# vim: set et sw=4 sts=4 encoding=utf-8 foldmethod=marker :
 
 from datetime import datetime
 from turbogears.database import PackageHub
 from sqlobject import *
 from sqlobject.sqlbuilder import *
 from sqlobject.inheritance import InheritableSQLObject
-from sqlobject.col import PickleValidator
+from sqlobject.col import PickleValidator, UnicodeStringValidator
 from turbogears import identity
+from turbogears.identity import encrypt_password as encryptpw
+from sercom.validators import params_to_list, ParseError
+from formencode import Invalid
 
 hub = PackageHub("sercom")
 __connection__ = hub
@@ -20,41 +23,72 @@ class TupleValidator(PickleValidator):
     Validator for tuple types.  A tuple type is simply a pickle type
     that validates that the represented type is a tuple.
     """
-
     def to_python(self, value, state):
         value = super(TupleValidator, self).to_python(value, state)
         if value is None:
             return None
         if isinstance(value, tuple):
             return value
-        raise validators.Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
+        raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
             (self.name, type(value), value), value, state)
-
     def from_python(self, value, state):
         if value is None:
             return None
         if not isinstance(value, tuple):
-            raise validators.Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
+            raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
                 (self.name, type(value), value), value, state)
         return super(TupleValidator, self).from_python(value, state)
 
 class SOTupleCol(SOPickleCol):
-
-    def __init__(self, **kw):
-        super(SOTupleCol, self).__init__(**kw)
-
     def createValidators(self):
-        return [TupleValidator(name=self.name)] \
-            super(SOPickleCol, self).createValidators()
+        return [TupleValidator(name=self.name)] \
+            super(SOPickleCol, self).createValidators()
 
 class TupleCol(PickleCol):
     baseClass = SOTupleCol
 
+class ParamsValidator(UnicodeStringValidator):
+    def to_python(self, value, state):
+        if isinstance(value, basestring) or value is None:
+            value = super(ParamsValidator, self).to_python(value, state)
+            try:
+                value = params_to_list(value)
+            except ParseError, e:
+                raise Invalid("invalid parameters in the ParamsCol '%s', parse "
+                    "error: %s" % (self.name, e), value, state)
+        elif not isinstance(value, (list, tuple)):
+            raise Invalid("expected a tuple, list or valid string in the "
+                "ParamsCol '%s', got %s %r instead"
+                    % (self.name, type(value), value), value, state)
+        return value
+    def from_python(self, value, state):
+        if isinstance(value, (list, tuple)):
+            value = ' '.join([repr(p) for p in value])
+        elif isinstance(value, basestring) or value is None:
+            value = super(ParamsValidator, self).to_python(value, state)
+            try:
+                params_to_list(value)
+            except ParseError, e:
+                raise Invalid("invalid parameters in the ParamsCol '%s', parse "
+                    "error: %s" % (self.name, e), value, state)
+        else:
+            raise Invalid("expected a tuple, list or valid string in the "
+                "ParamsCol '%s', got %s %r instead"
+                    % (self.name, type(value), value), value, state)
+        return value
+
+class SOParamsCol(SOUnicodeCol):
+    def createValidators(self):
+        return [ParamsValidator(db_encoding=self.dbEncoding, name=self.name)] \
+            + super(SOParamsCol, self).createValidators()
+
+class ParamsCol(UnicodeCol):
+    baseClass = SOParamsCol
+
 #}}}
 
 #{{{ Tablas intermedias
 
-
 # BUG en SQLObject, SQLExpression no tiene cálculo de hash pero se usa como
 # key de un dict. Workarround hasta que lo arreglen.
 SQLExpression.__hash__ = lambda self: hash(str(self))
@@ -98,22 +132,24 @@ class Curso(SQLObject, ByObject): #{{{
     grupos          = MultipleJoin('Grupo')
     ejercicios      = MultipleJoin('Ejercicio', orderBy='numero')
 
-    def add_docente(self, docente, **opts):
-        return DocenteInscripto(cursoID=self.id, docenteID=docente.id, **opts)
+    def __init__(self, docentes=[], ejercicios=[], **kargs):
+        super(Curso, self).__init__(**kargs)
+        for d in docentes:
+            self.add_docente(d)
+        for (n, e) in enumerate(ejercicios):
+            self.add_ejercicio(n, e)
+
+    def add_docente(self, docente, **kargs):
+        return DocenteInscripto(curso=self, docente=docente, **kargs)
 
-    def add_alumno(self, alumno, tutor=None, **opts):
-        tutor_id = tutor and tutor.id
-        return AlumnoInscripto(cursoID=self.id, alumnoID=alumno.id,
-            tutorID=tutor_id, **opts)
+    def add_alumno(self, alumno, **kargs):
+        return AlumnoInscripto(curso=self, alumno=alumno, **kargs)
 
-    def add_grupo(self, nombre, responsable=None, **opts):
-        resp_id = responsable and responsable.id
-        return Grupo(cursoID=self.id, nombre=unicode(nombre),
-            responsableID=resp_id, **opts)
+    def add_grupo(self, nombre, **kargs):
+        return Grupo(curso=self, nombre=unicode(nombre), **kargs)
 
-    def add_ejercicio(self, numero, enunciado, **opts):
-        return Ejercicio(cursoID=self.id, numero=numero,
-            enunciadoID=enunciado.id, **opts)
+    def add_ejercicio(self, numero, enunciado, **kargs):
+        return Ejercicio(curso=self, numero=numero, enunciado=enunciado, **kargs)
 
     def __repr__(self):
         return 'Curso(id=%s, anio=%s, cuatrimestre=%s, numero=%s, ' \
@@ -123,7 +159,7 @@ class Curso(SQLObject, ByObject): #{{{
 
     def shortrepr(self):
         return '%s.%s.%s' \
-            % (self.anio, self.cuatrimestre, self.numero, self.descripcion)
+            % (self.anio, self.cuatrimestre, self.numero)
 #}}}
 
 class Usuario(InheritableSQLObject, ByObject): #{{{
@@ -138,9 +174,14 @@ class Usuario(InheritableSQLObject, ByObject): #{{{
     observaciones   = UnicodeCol(default=None)
     activo          = BoolCol(notNone=True, default=True)
     # Joins
-    grupos          = RelatedJoin('Grupo')
     roles           = RelatedJoin('Rol')
 
+    def __init__(self, password=None, roles=[], **kargs):
+        passwd = password and encryptpw(password)
+        super(Usuario, self).__init__(contrasenia=passwd, **kargs)
+        for r in roles:
+            self.addRol(r)
+
     def _get_user_name(self): # para identity
         return self.usuario
 
@@ -157,18 +198,20 @@ class Usuario(InheritableSQLObject, ByObject): #{{{
 
     def _get_permissions(self): # para identity
         perms = set()
-        for g in self.groups:
-            perms.update(g.permisos)
+        for r in self.roles:
+            perms.update(r.permisos)
         return perms
 
+    _get_permisos = _get_permissions
+
     def _set_password(self, cleartext_password): # para identity
-        self.contrasenia = identity.encrypt_password(cleartext_password)
+        self.contrasenia = encryptpw(cleartext_password)
 
     def _get_password(self): # para identity
         return self.contrasenia
 
     def __repr__(self):
-        raise NotImplementedError, 'Clase abstracta!'
+        raise NotImplementedError, _('Clase abstracta!')
 
     def shortrepr(self):
         return '%s (%s)' % (self.usuario, self.nombre)
@@ -182,11 +225,15 @@ class Docente(Usuario): #{{{
     enunciados      = MultipleJoin('Enunciado', joinColumn='autor_id')
     inscripciones   = MultipleJoin('DocenteInscripto')
 
-    def add_entrega(self, instancia, **opts):
-        return Entrega(instanciaID=instancia.id, **opts)
+    def __init__(self, **kargs):
+        super(Docente, self).__init__(**kargs)
 
-    def add_enunciado(self, nombre, **opts):
-        return Enunciado(autorID=self.id, nombre=nombre, **opts)
+    def add_entrega(self, instancia, **kargs):
+        return Entrega(instancia=instancia, **kargs)
+
+    def add_enunciado(self, nombre, anio, cuatrimestre, **kargs):
+        return Enunciado(nombre=nombre, anio=anio, cuatrimestre=cuatrimestre,
+            autor=self, **kargs)
 
     def __repr__(self):
         return 'Docente(id=%s, usuario=%s, nombre=%s, password=%s, email=%s, ' \
@@ -203,6 +250,10 @@ class Alumno(Usuario): #{{{
     # Joins
     inscripciones   = MultipleJoin('AlumnoInscripto')
 
+    def __init__(self, padron=None, **kargs):
+        if padron: kargs['usuario'] = padron
+        super(Alumno, self).__init__(**kargs)
+
     def _get_padron(self): # alias para poder referirse al alumno por padron
         return self.usuario
 
@@ -217,12 +268,27 @@ class Alumno(Usuario): #{{{
 #}}}
 
 class Tarea(InheritableSQLObject, ByObject): #{{{
+    class sqlmeta:
+        createSQL = r'''
+CREATE TABLE dependencia (
+    padre_id INTEGER NOT NULL CONSTRAINT tarea_id_exists
+        REFERENCES tarea(id),
+    hijo_id INTEGER NOT NULL CONSTRAINT tarea_id_exists
+        REFERENCES tarea(id),
+    orden INT,
+    PRIMARY KEY (padre_id, hijo_id)
+)'''
     # Clave
     nombre          = UnicodeCol(length=30, alternateID=True)
     # Campos
     descripcion     = UnicodeCol(length=255, default=None)
     # Joins
 
+    def __init__(self, dependencias=(), **kargs):
+        super(Tarea, self).__init__(**kargs)
+        if dependencias:
+            self.dependencias = dependencias
+
     def _get_dependencias(self):
         OtherTarea = Alias(Tarea, 'other_tarea')
         self.__dependencias = tuple(Tarea.select(
@@ -267,18 +333,43 @@ class Tarea(InheritableSQLObject, ByObject): #{{{
 #}}}
 
 class Enunciado(SQLObject, ByObject): #{{{
+    class sqlmeta:
+        createSQL = r'''
+CREATE TABLE enunciado_tarea (
+    enunciado_id INTEGER NOT NULL CONSTRAINT enunciado_id_exists
+        REFERENCES enunciado(id),
+    tarea_id INTEGER NOT NULL CONSTRAINT tarea_id_exists
+        REFERENCES tarea(id),
+    orden INT,
+    PRIMARY KEY (enunciado_id, tarea_id)
+)'''
     # Clave
-    nombre          = UnicodeCol(length=60, alternateID=True)
+    nombre          = UnicodeCol(length=60)
+    anio            = IntCol(notNone=True)
+    cuatrimestre    = IntCol(notNone=True)
+    pk              = DatabaseIndex(nombre, anio, cuatrimestre, unique=True)
     # Campos
+    autor           = ForeignKey('Docente')
     descripcion     = UnicodeCol(length=255, default=None)
-    autor           = ForeignKey('Docente', default=None)
     creado          = DateTimeCol(notNone=True, default=DateTimeCol.now)
+    archivo         = BLOBCol(default=None)
+    archivo_name    = UnicodeCol(length=255, default=None)
+    archivo_type    = UnicodeCol(length=255, default=None)
     # Joins
     ejercicios      = MultipleJoin('Ejercicio')
     casos_de_prueba = MultipleJoin('CasoDePrueba')
 
-    def add_caso_de_prueba(self, nombre, **opts):
-        return CasoDePrueba(enunciadoID=self.id, nombre=nombre, **opts)
+    def __init__(self, tareas=(), **kargs):
+        super(Enunciado, self).__init__(**kargs)
+        if tareas:
+            self.tareas = tareas
+
+    @classmethod
+    def selectByCurso(self, curso):
+        return Enunciado.selectBy(cuatrimestre=curso.cuatrimestre, anio=curso.anio)
+
+    def add_caso_de_prueba(self, nombre, **kargs):
+        return CasoDePrueba(enunciado=self, nombre=nombre, **kargs)
 
     def _get_tareas(self):
         self.__tareas = tuple(Tarea.select(
@@ -331,7 +422,7 @@ class CasoDePrueba(SQLObject): #{{{
     pk              = DatabaseIndex(enunciado, nombre, unique=True)
     # Campos
 #    privado         = IntCol(default=None) TODO iria en instancia_de_entrega_caso_de_prueba
-    parametros      = TupleCol(notNone=True, default=())
+    parametros      = ParamsCol(length=255, default=None)
     retorno         = IntCol(default=None)
     tiempo_cpu      = FloatCol(default=None)
     descripcion     = UnicodeCol(length=255, default=None)
@@ -341,7 +432,7 @@ class CasoDePrueba(SQLObject): #{{{
     def __repr__(self):
         return 'CasoDePrueba(enunciado=%s, nombre=%s, parametros=%s, ' \
             'retorno=%s, tiempo_cpu=%s, descripcion=%s)' \
-                % (self.enunciado.shortrepr(), self.nombre, self.parametros,
+                % (srepr(self.enunciado), self.nombre, self.parametros,
                     self.retorno, self.tiempo_cpu, self.descripcion)
 
     def shortrepr(self):
@@ -359,9 +450,9 @@ class Ejercicio(SQLObject, ByObject): #{{{
     # Joins
     instancias      = MultipleJoin('InstanciaDeEntrega')
 
-    def add_instancia(self, numero, inicio, fin, **opts):
-        return InstanciaDeEntrega(ejercicioID=self.id, numero=numero,
-            inicio=inicio, fin=fin, **opts)
+    def add_instancia(self, numero, inicio, fin, **kargs):
+        return InstanciaDeEntrega(ejercicio=self, numero=numero, inicio=inicio,
+            fin=fin, **kargs)
 
     def __repr__(self):
         return 'Ejercicio(id=%s, curso=%s, numero=%s, enunciado=%s, ' \
@@ -371,11 +462,21 @@ class Ejercicio(SQLObject, ByObject): #{{{
 
     def shortrepr(self):
         return '(%s, %s, %s)' \
-            % (self.curso.shortrepr(), self.nombre, \
+            % (self.curso.shortrepr(), str(self.numero), \
                 self.enunciado.shortrepr())
 #}}}
 
 class InstanciaDeEntrega(SQLObject, ByObject): #{{{
+    class sqlmeta:
+        createSQL = r'''
+CREATE TABLE instancia_tarea (
+    instancia_id INTEGER NOT NULL CONSTRAINT instancia_id_exists
+        REFERENCES instancia_de_entrega(id),
+    tarea_id INTEGER NOT NULL CONSTRAINT tarea_id_exists
+        REFERENCES tarea(id),
+    orden INT,
+    PRIMARY KEY (instancia_id, tarea_id)
+)'''
     # Clave
     ejercicio       = ForeignKey('Ejercicio', notNone=True)
     numero          = IntCol(notNone=True)
@@ -390,6 +491,11 @@ class InstanciaDeEntrega(SQLObject, ByObject): #{{{
     correcciones    = MultipleJoin('Correccion', joinColumn='instancia_id')
     casos_de_prueba = RelatedJoin('CasoDePrueba') # TODO CasoInstancia -> private
 
+    def __init__(self, tareas=(), **kargs):
+        super(InstanciaDeEntrega, self).__init__(**kargs)
+        if tareas:
+            self.tareas = tareas
+
     def _get_tareas(self):
         self.__tareas = tuple(Tarea.select(
             AND(
@@ -448,9 +554,9 @@ class DocenteInscripto(SQLObject, ByObject): #{{{
     entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
     correcciones    = MultipleJoin('Correccion', joinColumn='corrector_id')
 
-    def add_correccion(self, entrega, **opts):
-        return Correccion(correctorID=self.id, instanciaID=entrega.instancia.id,
-            entregadorID=entrega.entregador.id, entregaID=entrega.id, **opts)
+    def add_correccion(self, entrega, **kargs):
+        return Correccion(instancia=entrega.instancia, entrega=entrega,
+            entregador=entrega.entregador, corrector=self, **kargs)
 
     def __repr__(self):
         return 'DocenteInscripto(id=%s, docente=%s, corrige=%s, ' \
@@ -472,8 +578,8 @@ class Entregador(InheritableSQLObject, ByObject): #{{{
     entregas        = MultipleJoin('Entrega')
     correcciones    = MultipleJoin('Correccion')
 
-    def add_entrega(self, instancia, **opts):
-        return Entrega(entregadorID=self.id, instanciaID=instancia.id, **opts)
+    def add_entrega(self, instancia, **kargs):
+        return Entrega(instancia=instancia, entregador=self, **kargs)
 
     def __repr__(self):
         raise NotImplementedError, 'Clase abstracta!'
@@ -490,11 +596,18 @@ class Grupo(Entregador): #{{{
     miembros        = MultipleJoin('Miembro')
     tutores         = MultipleJoin('Tutor')
 
-    def add_alumno(self, alumno, **opts):
-        return Miembro(grupoID=self.id, alumnoID=alumno.id, **opts)
+    def __init__(self, miembros=[], tutores=[], **kargs):
+        super(Grupo, self).__init__(**kargs)
+        for a in miembros:
+            self.add_miembro(a)
+        for d in tutores:
+            self.add_tutor(d)
+
+    def add_miembro(self, alumno, **kargs):
+        return Miembro(grupo=self, alumno=alumno, **kargs)
 
-    def add_docente(self, docente, **opts):
-        return Tutor(grupoID=self.id, docenteID=docente.id, **opts)
+    def add_tutor(self, docente, **kargs):
+        return Tutor(grupo=self, docente=docente, **kargs)
 
     def __repr__(self):
         return 'Grupo(id=%s, nombre=%s, responsable=%s, nota=%s, ' \
@@ -584,8 +697,8 @@ class Entrega(SQLObject, ByObject): #{{{
     codigo_dict     = r'0123456789abcdefghijklmnopqrstuvwxyz_.,*@#+'
     codigo_format   = r'%m%d%H%M%S'
 
-    def add_tarea_ejecutada(self, tarea, **opts):
-        return TareaEjecutada(entregaID=self.id, tareaID=tarea.id, **opts)
+    def add_tarea_ejecutada(self, tarea, **kargs):
+        return TareaEjecutada(tarea=tarea, entrega=self, **kargs)
 
     def _get_codigo(self):
         if not hasattr(self, '_codigo'): # cache
@@ -652,9 +765,9 @@ class TareaEjecutada(InheritableSQLObject, ByObject): #{{{
     # Joins
     pruebas         = MultipleJoin('Prueba')
 
-    def add_prueba(self, caso_de_prueba, **opts):
-        return Prueba(tarea_ejecutadaID=self.id,
-            caso_de_pruebaID=caso_de_prueba.id, **opts)
+    def add_prueba(self, caso_de_prueba, **kargs):
+        return Prueba(tarea_ejecutada=self, caso_de_prueba=caso_de_prueba,
+            **kargs)
 
     def __repr__(self):
         return 'TareaEjecutada(tarea=%s, entrega=%s, inicio=%s, fin=%s, ' \
@@ -713,7 +826,6 @@ class VisitaUsuario(SQLObject): #{{{
     user_id     = IntCol() # Negrada de identity
 #}}}
 
-
 class Rol(SQLObject): #{{{
     # Clave
     nombre      = UnicodeCol(length=255, alternateID=True,
@@ -729,7 +841,10 @@ class Rol(SQLObject): #{{{
 # No es un SQLObject porque no tiene sentido agregar/sacar permisos, están
 # hardcodeados en el código
 class Permiso(object): #{{{
+    max_valor = 1
     def __init__(self, nombre, descripcion):
+        self.valor = Permiso.max_valor
+        Permiso.max_valor <<= 1
         self.nombre = nombre
         self.descripcion = descripcion
 
@@ -741,6 +856,12 @@ class Permiso(object): #{{{
     def permission_name(self): # para identity
         return self.nombre
 
+    def __and__(self, other):
+        return self.valor & other.valor
+
+    def __or__(self, other):
+        return self.valor | other.valor
+
     def __repr__(self):
         return self.nombre
 #}}}