]> git.llucax.com Git - software/sercom.git/blob - sercom/model.py
Grupos
[software/sercom.git] / sercom / model.py
1 # vim: set et sw=4 sts=4 encoding=utf-8 :
2
3 from datetime import datetime
4 from turbogears.database import PackageHub
5 from sqlobject import *
6 from sqlobject.sqlbuilder import *
7 from sqlobject.inheritance import InheritableSQLObject
8 from sqlobject.col import PickleValidator, UnicodeStringValidator
9 from turbogears import identity
10 from turbogears.identity import encrypt_password as encryptpw
11 from sercom.validators import params_to_list, ParseError
12 from formencode import Invalid
13
14 hub = PackageHub("sercom")
15 __connection__ = hub
16
17 __all__ = ('Curso', 'Usuario', 'Docente', 'Alumno', 'Tarea', 'CasoDePrueba')
18
19 #{{{ Custom Columns
20
21 class TupleValidator(PickleValidator):
22     """
23     Validator for tuple types.  A tuple type is simply a pickle type
24     that validates that the represented type is a tuple.
25     """
26     def to_python(self, value, state):
27         value = super(TupleValidator, self).to_python(value, state)
28         if value is None:
29             return None
30         if isinstance(value, tuple):
31             return value
32         raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
33             (self.name, type(value), value), value, state)
34     def from_python(self, value, state):
35         if value is None:
36             return None
37         if not isinstance(value, tuple):
38             raise Invalid("expected a tuple in the TupleCol '%s', got %s %r instead" % \
39                 (self.name, type(value), value), value, state)
40         return super(TupleValidator, self).from_python(value, state)
41
42 class SOTupleCol(SOPickleCol):
43     def createValidators(self):
44         return [TupleValidator(name=self.name)] \
45             + super(SOPickleCol, self).createValidators()
46
47 class TupleCol(PickleCol):
48     baseClass = SOTupleCol
49
50 class ParamsValidator(UnicodeStringValidator):
51     def to_python(self, value, state):
52         if isinstance(value, basestring):
53             value = super(ParamsValidator, self).to_python(value, state)
54             try:
55                 value = params_to_list(value)
56             except ParseError, e:
57                 raise Invalid("invalid parameters in the ParamsCol '%s', parse "
58                     "error: %s" % (self.name, e), value, state)
59         elif not isinstance(value, (list, tuple)):
60             raise Invalid("expected a tuple, list or valid string in the "
61                 "ParamsCol '%s', got %s %r instead"
62                     % (self.name, type(value), value), value, state)
63         return value
64     def from_python(self, value, state):
65         if isinstance(value, (list, tuple)):
66             value = ' '.join([repr(p) for p in value])
67         elif isinstance(value, basestring):
68             value = super(ParamsValidator, self).to_python(value, state)
69             try:
70                 params_to_list(value)
71             except ParseError, e:
72                 raise Invalid("invalid parameters in the ParamsCol '%s', parse "
73                     "error: %s" % (self.name, e), value, state)
74         else:
75             raise Invalid("expected a tuple, list or valid string in the "
76                 "ParamsCol '%s', got %s %r instead"
77                     % (self.name, type(value), value), value, state)
78         return value
79
80 class SOParamsCol(SOUnicodeCol):
81     def createValidators(self):
82         return [ParamsValidator(db_encoding=self.dbEncoding, name=self.name)] \
83             + super(SOParamsCol, self).createValidators()
84
85 class ParamsCol(UnicodeCol):
86     baseClass = SOParamsCol
87
88 #}}}
89
90 #{{{ Tablas intermedias
91
92 # BUG en SQLObject, SQLExpression no tiene cálculo de hash pero se usa como
93 # key de un dict. Workarround hasta que lo arreglen.
94 SQLExpression.__hash__ = lambda self: hash(str(self))
95
96 instancia_tarea_t = table.instancia_tarea
97
98 enunciado_tarea_t = table.enunciado_tarea
99
100 dependencia_t = table.dependencia
101
102 #}}}
103
104 #{{{ Clases
105
106 def srepr(obj): #{{{
107     if obj is not None:
108         return obj.shortrepr()
109     return obj
110 #}}}
111
112 class ByObject(object): #{{{
113     @classmethod
114     def by(cls, **kw):
115         try:
116             return cls.selectBy(**kw)[0]
117         except IndexError:
118             raise SQLObjectNotFound, "The object %s with columns %s does not exist" % (cls.__name__, kw)
119 #}}}
120
121 class Curso(SQLObject, ByObject): #{{{
122     # Clave
123     anio            = IntCol(notNone=True)
124     cuatrimestre    = IntCol(notNone=True)
125     numero          = IntCol(notNone=True)
126     pk              = DatabaseIndex(anio, cuatrimestre, numero, unique=True)
127     # Campos
128     descripcion     = UnicodeCol(length=255, default=None)
129     # Joins
130     docentes        = MultipleJoin('DocenteInscripto')
131     alumnos         = MultipleJoin('AlumnoInscripto')
132     grupos          = MultipleJoin('Grupo')
133     ejercicios      = MultipleJoin('Ejercicio', orderBy='numero')
134
135     def __init__(self, anio=None, cuatrimestre=None, numero=None,
136             descripcion=None, docentes=[], ejercicios=[], **kargs):
137         SQLObject.__init__(self, anio=anio, cuatrimestre=cuatrimestre,
138             numero=numero, descripcion=descripcion, **kargs)
139         for d in docentes:
140             self.add_docente(d)
141         for (n, e) in enumerate(ejercicios):
142             self.add_ejercicio(n, e)
143
144     def add_docente(self, docente, *args, **kargs):
145         return DocenteInscripto(self, docente, *args, **kargs)
146
147     def add_alumno(self, alumno, *args, **kargs):
148         return AlumnoInscripto(self, alumno, *args, **kargs)
149
150     def add_grupo(self, nombre, *args, **kargs):
151         return Grupo(self, unicode(nombre), *args, **kargs)
152
153     def add_ejercicio(self, numero, enunciado, *args, **kargs):
154         return Ejercicio(self, numero, enunciado, *args, **kargs)
155
156     def __repr__(self):
157         return 'Curso(id=%s, anio=%s, cuatrimestre=%s, numero=%s, ' \
158             'descripcion=%s)' \
159                 % (self.id, self.anio, self.cuatrimestre, self.numero,
160                     self.descripcion)
161
162     def shortrepr(self):
163         return '%s.%s.%s' \
164             % (self.anio, self.cuatrimestre, self.numero)
165 #}}}
166
167 class Usuario(InheritableSQLObject, ByObject): #{{{
168     # Clave (para docentes puede ser un nombre de usuario arbitrario)
169     usuario         = UnicodeCol(length=10, alternateID=True)
170     # Campos
171     contrasenia     = UnicodeCol(length=255, default=None)
172     nombre          = UnicodeCol(length=255, notNone=True)
173     email           = UnicodeCol(length=255, default=None)
174     telefono        = UnicodeCol(length=255, default=None)
175     creado          = DateTimeCol(notNone=True, default=DateTimeCol.now)
176     observaciones   = UnicodeCol(default=None)
177     activo          = BoolCol(notNone=True, default=True)
178     # Joins
179     roles           = RelatedJoin('Rol')
180
181     def _get_user_name(self): # para identity
182         return self.usuario
183
184     @classmethod
185     def by_user_name(cls, user_name): # para identity
186         user = cls.byUsuario(user_name)
187         if not user.activo:
188             raise SQLObjectNotFound, "The object %s with user_name %s is " \
189                 "not active" % (cls.__name__, user_name)
190         return user
191
192     def _get_groups(self): # para identity
193         return self.roles
194
195     def _get_permissions(self): # para identity
196         perms = set()
197         for r in self.roles:
198             perms.update(r.permisos)
199         return perms
200
201     _get_permisos = _get_permissions
202
203     def _set_password(self, cleartext_password): # para identity
204         self.contrasenia = encryptpw(cleartext_password)
205
206     def _get_password(self): # para identity
207         return self.contrasenia
208
209     def __repr__(self):
210         raise NotImplementedError, 'Clase abstracta!'
211
212     def shortrepr(self):
213         return '%s (%s)' % (self.usuario, self.nombre)
214 #}}}
215
216 class Docente(Usuario): #{{{
217     _inheritable = False
218     # Campos
219     nombrado        = BoolCol(notNone=True, default=True)
220     # Joins
221     enunciados      = MultipleJoin('Enunciado', joinColumn='autor_id')
222     inscripciones   = MultipleJoin('DocenteInscripto')
223
224     def __init__(self, usuario=None, nombre=None, password=None, email=None,
225             telefono=None, nombrado=True, activo=False, observaciones=None,
226             roles=[], **kargs):
227         passwd = password and encryptpw(password)
228         InheritableSQLObject.__init__(self, usuario=usuario, nombre=nombre,
229             contrasenia=passwd, email=email, telefono=telefono,
230             nombrado=nombrado, activo=activo, observaciones=observaciones,
231             **kargs)
232         for r in roles:
233             self.addRol(r)
234
235     def add_entrega(self, instancia, *args, **kargs):
236         return Entrega(instancia, *args, **kargs)
237
238     def add_enunciado(self, nombre, *args, **kargs):
239         return Enunciado(nombre, self, *args, **kargs)
240
241     def __repr__(self):
242         return 'Docente(id=%s, usuario=%s, nombre=%s, password=%s, email=%s, ' \
243             'telefono=%s, activo=%s, creado=%s, observaciones=%s)' \
244                 % (self.id, self.usuario, self.nombre, self.password,
245                     self.email, self.telefono, self.activo, self.creado,
246                     self.observaciones)
247 #}}}
248
249 class Alumno(Usuario): #{{{
250     _inheritable = False
251     # Campos
252     nota            = DecimalCol(size=3, precision=1, default=None)
253     # Joins
254     inscripciones   = MultipleJoin('AlumnoInscripto')
255
256     def __init__(self, padron=None, nombre=None, password=None, email=None,
257             telefono=None, activo=False, observaciones=None, roles=[], **kargs):
258         passwd = password and encryptpw(password)
259         InheritableSQLObject.__init__(self, usuario=padron, nombre=nombre,
260             email=email, contrasenia=passwd, telefono=telefono, activo=activo,
261             observaciones=observaciones, **kargs)
262         for r in roles:
263             self.addRol(r)
264
265     def _get_padron(self): # alias para poder referirse al alumno por padron
266         return self.usuario
267
268     def _set_padron(self, padron):
269         self.usuario = padron
270
271     def __repr__(self):
272         return 'Alumno(id=%s, padron=%s, nombre=%s, password=%s, email=%s, ' \
273             'telefono=%s, activo=%s, creado=%s, observaciones=%s)' \
274                 % (self.id, self.padron, self.nombre, self.password, self.email,
275                     self.telefono, self.activo, self.creado, self.observaciones)
276 #}}}
277
278 class Tarea(InheritableSQLObject, ByObject): #{{{
279     # Clave
280     nombre          = UnicodeCol(length=30, alternateID=True)
281     # Campos
282     descripcion     = UnicodeCol(length=255, default=None)
283     # Joins
284
285     def __init__(self, nombre=None, descripcion=None, dependencias=(), **kargs):
286         InheritableSQLObject.__init__(self, nombre=nombre,
287             descripcion=descripcion, **kargs)
288         if dependencias:
289             self.dependencias = dependencias
290
291     def _get_dependencias(self):
292         OtherTarea = Alias(Tarea, 'other_tarea')
293         self.__dependencias = tuple(Tarea.select(
294             AND(
295                 Tarea.q.id == dependencia_t.hijo_id,
296                 OtherTarea.q.id == dependencia_t.padre_id,
297                 self.id == dependencia_t.padre_id,
298             ),
299             clauseTables=(dependencia_t,),
300             orderBy=dependencia_t.orden,
301         ))
302         return self.__dependencias
303
304     def _set_dependencias(self, dependencias):
305         orden = {}
306         for i, t in enumerate(dependencias):
307             orden[t.id] = i
308         new = frozenset([t.id for t in dependencias])
309         old = frozenset([t.id for t in self.dependencias])
310         dependencias = dict([(t.id, t) for t in dependencias])
311         for tid in old - new: # eliminadas
312             self._connection.query(str(Delete(dependencia_t, where=AND(
313                 dependencia_t.padre_id == self.id,
314                 dependencia_t.hijo_id == tid))))
315         for tid in new - old: # creadas
316             self._connection.query(str(Insert(dependencia_t, values=dict(
317                 padre_id=self.id, hijo_id=tid, orden=orden[tid]
318             ))))
319         for tid in new & old: # actualizados
320             self._connection.query(str(Update(dependencia_t,
321                 values=dict(orden=orden[tid]), where=AND(
322                     dependencia_t.padre_id == self.id,
323                     dependencia_t.hijo_id == tid,
324                 ))))
325
326     def __repr__(self):
327         return 'Tarea(id=%s, nombre=%s, descripcion=%s)' \
328                 % (self.id, self.nombre, self.descripcion)
329
330     def shortrepr(self):
331         return self.nombre
332 #}}}
333
334 class Enunciado(SQLObject, ByObject): #{{{
335     # Clave
336     nombre          = UnicodeCol(length=60, alternateID=True)
337     # Campos
338     autor           = ForeignKey('Docente')
339     descripcion     = UnicodeCol(length=255, default=None)
340     creado          = DateTimeCol(notNone=True, default=DateTimeCol.now)
341     archivo         = BLOBCol(default=None)
342     archivo_name    = UnicodeCol(length=255, default=None)
343     archivo_type    = UnicodeCol(length=255, default=None)
344     # Joins
345     ejercicios      = MultipleJoin('Ejercicio')
346     casos_de_prueba = MultipleJoin('CasoDePrueba')
347
348     def __init__(self, nombre=None, autor=None, descripcion=None, tareas=(),
349             **kargs):
350         SQLObject.__init__(self, nombre=nombre, autorID=autor and autor.id,
351             descripcion=descripcion, **kargs)
352         if tareas:
353             self.tareas = tareas
354
355     def add_caso_de_prueba(self, nombre, *args, **kargs):
356         return CasoDePrueba(self, nombre, *args, **kargs)
357
358     def _get_tareas(self):
359         self.__tareas = tuple(Tarea.select(
360             AND(
361                 Tarea.q.id == enunciado_tarea_t.tarea_id,
362                 Enunciado.q.id == enunciado_tarea_t.enunciado_id,
363                 Enunciado.q.id == self.id
364             ),
365             clauseTables=(enunciado_tarea_t, Enunciado.sqlmeta.table),
366             orderBy=enunciado_tarea_t.orden,
367         ))
368         return self.__tareas
369
370     def _set_tareas(self, tareas):
371         orden = {}
372         for i, t in enumerate(tareas):
373             orden[t.id] = i
374         new = frozenset([t.id for t in tareas])
375         old = frozenset([t.id for t in self.tareas])
376         tareas = dict([(t.id, t) for t in tareas])
377         for tid in old - new: # eliminadas
378             self._connection.query(str(Delete(enunciado_tarea_t, where=AND(
379                 enunciado_tarea_t.enunciado_id == self.id,
380                 enunciado_tarea_t.tarea_id == tid))))
381         for tid in new - old: # creadas
382             self._connection.query(str(Insert(enunciado_tarea_t, values=dict(
383                 enunciado_id=self.id, tarea_id=tid, orden=orden[tid]
384             ))))
385         for tid in new & old: # actualizados
386             self._connection.query(str(Update(enunciado_tarea_t,
387                 values=dict(orden=orden[tid]), where=AND(
388                     enunciado_tarea_t.enunciado_id == self.id,
389                     enunciado_tarea_t.tarea_id == tid,
390                 ))))
391
392     def __repr__(self):
393         return 'Enunciado(id=%s, autor=%s, nombre=%s, descripcion=%s, ' \
394             'creado=%s)' \
395                 % (self.id, srepr(self.autor), self.nombre, self.descripcion, \
396                     self.creado)
397
398     def shortrepr(self):
399         return self.nombre
400 #}}}
401
402 class CasoDePrueba(SQLObject): #{{{
403     # Clave
404     enunciado       = ForeignKey('Enunciado')
405     nombre          = UnicodeCol(length=40, notNone=True)
406     pk              = DatabaseIndex(enunciado, nombre, unique=True)
407     # Campos
408 #    privado         = IntCol(default=None) TODO iria en instancia_de_entrega_caso_de_prueba
409     parametros      = ParamsCol(length=255, default=None)
410     retorno         = IntCol(default=None)
411     tiempo_cpu      = FloatCol(default=None)
412     descripcion     = UnicodeCol(length=255, default=None)
413     # Joins
414     pruebas         = MultipleJoin('Prueba')
415
416     def __init__(self, enunciado=None, nombre=None, parametros=None,
417             retorno=None, tiempo_cpu=None, descripcion=None, **kargs):
418         SQLObject.__init__(self, enunciadoID=enunciado and enunciado.id,
419             nombre=nombre, parametros=parametros, retorno=retorno,
420             tiempo_cpu=tiempo_cpu, descripcion=descripcion, **kargs)
421
422     def __repr__(self):
423         return 'CasoDePrueba(enunciado=%s, nombre=%s, parametros=%s, ' \
424             'retorno=%s, tiempo_cpu=%s, descripcion=%s)' \
425                 % (srepr(self.enunciado), self.nombre, self.parametros,
426                     self.retorno, self.tiempo_cpu, self.descripcion)
427
428     def shortrepr(self):
429         return '%s:%s' % (self.enunciado.shortrepr(), self.nombre)
430 #}}}
431
432 class Ejercicio(SQLObject, ByObject): #{{{
433     # Clave
434     curso           = ForeignKey('Curso', notNone=True)
435     numero          = IntCol(notNone=True)
436     pk              = DatabaseIndex(curso, numero, unique=True)
437     # Campos
438     enunciado       = ForeignKey('Enunciado', notNone=True)
439     grupal          = BoolCol(notNone=True, default=False)
440     # Joins
441     instancias      = MultipleJoin('InstanciaDeEntrega')
442
443     def __init__(self, curso=None, numero=None, enunciado=None, grupal=False,
444             **kargs):
445         if curso and enunciado:
446             SQLObject.__init__(self, cursoID=curso.id, numero=numero,
447                 enunciadoID=enunciado.id, grupal=grupal, **kargs)
448
449     def add_instancia(self, numero, inicio, fin, *args, **kargs):
450         return InstanciaDeEntrega(self, numero, inicio, fin, *args, **kargs)
451
452     def __repr__(self):
453         return 'Ejercicio(id=%s, curso=%s, numero=%s, enunciado=%s, ' \
454             'grupal=%s)' \
455                 % (self.id, self.curso.shortrepr(), self.numero,
456                     self.enunciado.shortrepr(), self.grupal)
457
458     def shortrepr(self):
459         return '(%s, %s, %s)' \
460             % (self.curso.shortrepr(), str(self.numero), \
461                 self.enunciado.shortrepr())
462 #}}}
463
464 class InstanciaDeEntrega(SQLObject, ByObject): #{{{
465     # Clave
466     ejercicio       = ForeignKey('Ejercicio', notNone=True)
467     numero          = IntCol(notNone=True)
468     # Campos
469     inicio          = DateTimeCol(notNone=True)
470     fin             = DateTimeCol(notNone=True)
471     procesada       = BoolCol(notNone=True, default=False)
472     observaciones   = UnicodeCol(default=None)
473     activo          = BoolCol(notNone=True, default=True)
474     # Joins
475     entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
476     correcciones    = MultipleJoin('Correccion', joinColumn='instancia_id')
477     casos_de_prueba = RelatedJoin('CasoDePrueba') # TODO CasoInstancia -> private
478
479     def __init__(self, ejercicio=None, numero=None, inicio=None, fin=None,
480             observaciones=None, activo=True, tareas=(), **kargs):
481         if ejercicio:
482             SQLObject.__init__(self, ejercicioID=ejercicio.id, numero=numero,
483                 fin=fin, inicio=inicio, observaciones=observaciones, activo=activo,
484                 **kargs)
485         if tareas:
486             self.tareas = tareas
487
488     def _get_tareas(self):
489         self.__tareas = tuple(Tarea.select(
490             AND(
491                 Tarea.q.id == instancia_tarea_t.tarea_id,
492                 InstanciaDeEntrega.q.id == instancia_tarea_t.instancia_id,
493                 InstanciaDeEntrega.q.id == self.id,
494             ),
495             clauseTables=(instancia_tarea_t, InstanciaDeEntrega.sqlmeta.table),
496             orderBy=instancia_tarea_t.orden,
497         ))
498         return self.__tareas
499
500     def _set_tareas(self, tareas):
501         orden = {}
502         for i, t in enumerate(tareas):
503             orden[t.id] = i
504         new = frozenset([t.id for t in tareas])
505         old = frozenset([t.id for t in self.tareas])
506         tareas = dict([(t.id, t) for t in tareas])
507         for tid in old - new: # eliminadas
508             self._connection.query(str(Delete(instancia_tarea_t, where=AND(
509                 instancia_tarea_t.instancia_id == self.id,
510                 instancia_tarea_t.tarea_id == tid))))
511         for tid in new - old: # creadas
512             self._connection.query(str(Insert(instancia_tarea_t, values=dict(
513                 instancia_id=self.id, tarea_id=tid, orden=orden[tid]
514             ))))
515         for tid in new & old: # actualizados
516             self._connection.query(str(Update(instancia_tarea_t,
517                 values=dict(orden=orden[tid]), where=AND(
518                     instancia_tarea_t.instancia_id == self.id,
519                     instancia_tarea_t.tarea_id == tid,
520                 ))))
521
522     def __repr__(self):
523         return 'InstanciaDeEntrega(id=%s, numero=%s, inicio=%s, fin=%s, ' \
524             'procesada=%s, observaciones=%s, activo=%s)' \
525                 % (self.id, self.numero, self.inicio, self.fin,
526                     self.procesada, self.observaciones, self.activo)
527
528     def shortrepr(self):
529         return self.numero
530 #}}}
531
532 class DocenteInscripto(SQLObject, ByObject): #{{{
533     # Clave
534     curso           = ForeignKey('Curso', notNone=True)
535     docente         = ForeignKey('Docente', notNone=True)
536     pk              = DatabaseIndex(curso, docente, unique=True)
537     # Campos
538     corrige         = BoolCol(notNone=True, default=True)
539     observaciones   = UnicodeCol(default=None)
540     # Joins
541     alumnos         = MultipleJoin('AlumnoInscripto', joinColumn='tutor_id')
542     tutorias        = MultipleJoin('Tutor', joinColumn='docente_id')
543     entregas        = MultipleJoin('Entrega', joinColumn='instancia_id')
544     correcciones    = MultipleJoin('Correccion', joinColumn='corrector_id')
545
546     def __init__(self, curso=None, docente=None, corrige=True,
547             observaciones=None, **kargs):
548         SQLObject.__init__(self, cursoID=curso.id, docenteID=docente.id,
549             corrige=corrige, observaciones=observaciones, **kargs)
550
551     def add_correccion(self, entrega, *args, **kargs):
552         return Correccion(entrega.instancia, entrega.entregador, entrega,
553             self, *args, **kargs)
554
555     def __repr__(self):
556         return 'DocenteInscripto(id=%s, docente=%s, corrige=%s, ' \
557             'observaciones=%s' \
558                 % (self.id, self.docente.shortrepr(), self.corrige,
559                     self.observaciones)
560
561     def shortrepr(self):
562         return self.docente.shortrepr()
563 #}}}
564
565 class Entregador(InheritableSQLObject, ByObject): #{{{
566     # Campos
567     nota            = DecimalCol(size=3, precision=1, default=None)
568     nota_cursada    = DecimalCol(size=3, precision=1, default=None)
569     observaciones   = UnicodeCol(default=None)
570     activo          = BoolCol(notNone=True, default=True)
571     # Joins
572     entregas        = MultipleJoin('Entrega')
573     correcciones    = MultipleJoin('Correccion')
574
575     def add_entrega(self, instancia, *args, **kargs):
576         return Entrega(instancia, self, *args, **kargs)
577
578     def __repr__(self):
579         raise NotImplementedError, 'Clase abstracta!'
580 #}}}
581
582 class Grupo(Entregador): #{{{
583     _inheritable = False
584     # Clave
585     curso           = ForeignKey('Curso', notNone=True)
586     nombre          = UnicodeCol(length=20, notNone=True)
587     # Campos
588     responsable     = ForeignKey('AlumnoInscripto', default=None)
589     # Joins
590     miembros        = MultipleJoin('Miembro')
591     tutores         = MultipleJoin('Tutor')
592
593     def __init__(self, curso=None, nombre=None, responsable=None, **kargs):
594         resp_id = responsable and responsable.id
595         curso_id = curso and curso.id
596         InheritableSQLObject.__init__(self, cursoID=curso_id, nombre=nombre,
597             responsableID=resp_id, **kargs)
598
599     def add_alumno(self, alumno, *args, **kargs):
600         return Miembro(self, alumno, *args, **kargs)
601
602     def add_docente(self, docente, *args, **kargs):
603         return Tutor(self, docente, *args, **kargs)
604
605     def __repr__(self):
606         return 'Grupo(id=%s, nombre=%s, responsable=%s, nota=%s, ' \
607             'nota_cursada=%s, observaciones=%s, activo=%s)' \
608                 % (self.id, self.nombre, srepr(self.responsable), self.nota,
609                     self.nota_cursada, self.observaciones, self.activo)
610
611     def shortrepr(self):
612         return 'grupo:' + self.nombre
613 #}}}
614
615 class AlumnoInscripto(Entregador): #{{{
616     _inheritable = False
617     # Clave
618     curso               = ForeignKey('Curso', notNone=True)
619     alumno              = ForeignKey('Alumno', notNone=True)
620     pk                  = DatabaseIndex(curso, alumno, unique=True)
621     # Campos
622     condicional         = BoolCol(notNone=True, default=False)
623     tutor               = ForeignKey('DocenteInscripto', default=None)
624     # Joins
625     responsabilidades   = MultipleJoin('Grupo', joinColumn='responsable_id')
626     membresias          = MultipleJoin('Miembro', joinColumn='alumno_id')
627     entregas            = MultipleJoin('Entrega', joinColumn='alumno_id')
628     correcciones        = MultipleJoin('Correccion', joinColumn='alumno_id')
629
630     def __init__(self, curso=None, alumno=None, condicional=False, tutor=None,
631             **kargs):
632         tutor_id = tutor and tutor.id
633         InheritableSQLObject.__init__(self, cursoID=curso.id, tutorID=tutor_id,
634             alumnoID=alumno.id, condicional=condicional, **kargs)
635
636     def __repr__(self):
637         return 'AlumnoInscripto(id=%s, alumno=%s, condicional=%s, nota=%s, ' \
638             'nota_cursada=%s, tutor=%s, observaciones=%s, activo=%s)' \
639                 % (self.id, self.alumno.shortrepr(), self.condicional,
640                     self.nota, self.nota_cursada, srepr(self.tutor),
641                     self.observaciones, self.activo)
642
643     def shortrepr(self):
644         return self.alumno.shortrepr()
645 #}}}
646
647 class Tutor(SQLObject, ByObject): #{{{
648     # Clave
649     grupo           = ForeignKey('Grupo', notNone=True)
650     docente         = ForeignKey('DocenteInscripto', notNone=True)
651     pk              = DatabaseIndex(grupo, docente, unique=True)
652     # Campos
653     alta            = DateTimeCol(notNone=True, default=DateTimeCol.now)
654     baja            = DateTimeCol(default=None)
655
656     def __init__(self, grupo=None, docente=None, **kargs):
657         SQLObject.__init__(self, grupoID=grupo.id, docenteID=docente.id,
658             **kargs)
659
660     def __repr__(self):
661         return 'Tutor(docente=%s, grupo=%s, alta=%s, baja=%s)' \
662                 % (self.docente.shortrepr(), self.grupo.shortrepr(),
663                     self.alta, self.baja)
664
665     def shortrepr(self):
666         return '%s-%s' % (self.docente.shortrepr(), self.grupo.shortrepr())
667 #}}}
668
669 class Miembro(SQLObject, ByObject): #{{{
670     # Clave
671     grupo           = ForeignKey('Grupo', notNone=True)
672     alumno          = ForeignKey('AlumnoInscripto', notNone=True)
673     pk              = DatabaseIndex(grupo, alumno, unique=True)
674     # Campos
675     nota            = DecimalCol(size=3, precision=1, default=None)
676     alta            = DateTimeCol(notNone=True, default=DateTimeCol.now)
677     baja            = DateTimeCol(default=None)
678
679     def __init__(self, grupo=None, alumno=None, **kargs):
680         SQLObject.__init__(self, grupoID=grupo.id, alumnoID=alumno.id, **kargs)
681
682     def __repr__(self):
683         return 'Miembro(alumno=%s, grupo=%s, nota=%s, alta=%s, baja=%s)' \
684                 % (self.alumno.shortrepr(), self.grupo.shortrepr(),
685                     self.nota, self.alta, self.baja)
686
687     def shortrepr(self):
688         return '%s-%s' % (self.alumno.shortrepr(), self.grupo.shortrepr())
689 #}}}
690
691 class Entrega(SQLObject, ByObject): #{{{
692     # Clave
693     instancia       = ForeignKey('InstanciaDeEntrega', notNone=True)
694     entregador      = ForeignKey('Entregador', default=None) # Si es None era un Docente
695     fecha           = DateTimeCol(notNone=True, default=DateTimeCol.now)
696     pk              = DatabaseIndex(instancia, entregador, fecha, unique=True)
697     # Campos
698     correcta        = BoolCol(notNone=True, default=False)
699     observaciones   = UnicodeCol(default=None)
700     # Joins
701     tareas          = MultipleJoin('TareaEjecutada')
702     # Para generar código
703     codigo_dict     = r'0123456789abcdefghijklmnopqrstuvwxyz_.,*@#+'
704     codigo_format   = r'%m%d%H%M%S'
705
706     def __init__(self, instancia=None, entregador=None, observaciones=None,
707             **kargs):
708         entregador_id = entregador and entregador.id
709         SQLObject.__init__(self, instanciaID=instancia.id,
710             entregadorID=entregador_id, observaciones=observaciones, **kargs)
711
712     def add_tarea_ejecutada(self, tarea, *args, **kargs):
713         return TareaEjecutada(tarea, self, *args, **kargs)
714
715     def _get_codigo(self):
716         if not hasattr(self, '_codigo'): # cache
717             n = long(self.fecha.strftime(Entrega.codigo_format))
718             d = Entrega.codigo_dict
719             l = len(d)
720             res = ''
721             while n:
722                     res += d[n % l]
723                     n /= l
724             self._codigo = res
725         return self._codigo
726
727     def _set_fecha(self, fecha):
728         self._SO_set_fecha(fecha)
729         if hasattr(self, '_codigo'): del self._codigo # bye, bye cache!
730
731     def __repr__(self):
732         return 'Entrega(instancia=%s, entregador=%s, codigo=%s, fecha=%s, ' \
733             'correcta=%s, observaciones=%s)' \
734                 % (self.instancia.shortrepr(), srepr(self.entregador),
735                     self.codigo, self.fecha, self.correcta, self.observaciones)
736
737     def shortrepr(self):
738         return '%s-%s-%s' % (self.instancia.shortrepr(), srepr(self.entregador),
739             self.codigo)
740 #}}}
741
742 class Correccion(SQLObject, ByObject): #{{{
743     # Clave
744     instancia       = ForeignKey('InstanciaDeEntrega', notNone=True)
745     entregador      = ForeignKey('Entregador', notNone=True) # Docente no tiene
746     pk              = DatabaseIndex(instancia, entregador, unique=True)
747     # Campos
748     entrega         = ForeignKey('Entrega', notNone=True)
749     corrector       = ForeignKey('DocenteInscripto', notNone=True)
750     asignado        = DateTimeCol(notNone=True, default=DateTimeCol.now)
751     corregido       = DateTimeCol(default=None)
752     nota            = DecimalCol(size=3, precision=1, default=None)
753     observaciones   = UnicodeCol(default=None)
754
755     def __init__(self, instancia=None, entregador=None, entrega=None,
756             corrector=None, observaciones=None, **kargs):
757         SQLObject.__init__(self, instanciaID=instancia.id, entregaID=entrega.id,
758             entregadorID=entregador.id, correctorID=corrector.id,
759             observaciones=observaciones, **kargs)
760
761     def __repr__(self):
762         return 'Correccion(instancia=%s, entregador=%s, entrega=%s, ' \
763             'corrector=%s, asignado=%s, corregido=%s, nota=%s, ' \
764             'observaciones=%s)' \
765                 % (self.instancia.shortrepr(), self.entregador.shortrepr(),
766                     self.entrega.shortrepr(), self.corrector, self.asignado,
767                     self.corregido, self.nota, self.observaciones)
768
769     def shortrepr(self):
770         return '%s,%s' % (self.entrega.shortrepr(), self.corrector.shortrepr())
771 #}}}
772
773 class TareaEjecutada(InheritableSQLObject, ByObject): #{{{
774     # Clave
775     tarea           = ForeignKey('Tarea', notNone=True)
776     entrega         = ForeignKey('Entrega', notNone=True)
777     pk              = DatabaseIndex(tarea, entrega, unique=True)
778     # Campos
779     inicio          = DateTimeCol(notNone=True, default=DateTimeCol.now)
780     fin             = DateTimeCol(default=None)
781     exito           = IntCol(default=None)
782     observaciones   = UnicodeCol(default=None)
783     # Joins
784     pruebas         = MultipleJoin('Prueba')
785
786     def __init__(self, tarea=None, entrega=None, observaciones=None, **kargs):
787         InheritableSQLObject.__init__(self, tareaID=tarea.id,
788             entregaID=entrega.id, observaciones=observaciones, **kargs)
789
790     def add_prueba(self, caso_de_prueba, *args, **kargs):
791         return Prueba(self, caso_de_prueba, *args, **kargs)
792
793     def __repr__(self):
794         return 'TareaEjecutada(tarea=%s, entrega=%s, inicio=%s, fin=%s, ' \
795             'exito=%s, observaciones=%s)' \
796                 % (self.tarea.shortrepr(), self.entrega.shortrepr(),
797                     self.inicio, self.fin, self.exito, self.observaciones)
798
799     def shortrepr(self):
800         return '%s-%s' % (self.tarea.shortrepr(), self.entrega.shortrepr())
801 #}}}
802
803 class Prueba(SQLObject): #{{{
804     # Clave
805     tarea_ejecutada = ForeignKey('TareaEjecutada', notNone=True)
806     caso_de_prueba  = ForeignKey('CasoDePrueba', notNone=True)
807     pk              = DatabaseIndex(tarea_ejecutada, caso_de_prueba, unique=True)
808     # Campos
809     inicio          = DateTimeCol(notNone=True, default=DateTimeCol.now)
810     fin             = DateTimeCol(default=None)
811     pasada          = IntCol(default=None)
812     observaciones   = UnicodeCol(default=None)
813
814     def __init__(self, tarea_ejecutada=None, caso_de_prueba=None,
815             observaciones=None, **kargs):
816         SQLObject.__init__(self, tarea_ejecutadaID=tarea_ejecutada.id,
817             caso_de_pruebaID=caso_de_prueba.id, observaciones=observaciones,
818             **kargs)
819
820     def __repr__(self):
821         return 'Prueba(tarea_ejecutada=%s, caso_de_prueba=%s, inicio=%s, ' \
822             'fin=%s, pasada=%s, observaciones=%s)' \
823                 % (self.tarea_ejecutada.shortrepr(),
824                     self.caso_de_prueba.shortrepr(), self.inicio, self.fin,
825                     self.pasada, self.observaciones)
826
827     def shortrepr(self):
828         return '%s:%s' % (self.tarea_ejecutada.shortrepr(),
829             self.caso_de_prueba.shortrerp())
830 #}}}
831
832 #{{{ Específico de Identity
833
834 class Visita(SQLObject): #{{{
835     visit_key   = StringCol(length=40, alternateID=True,
836                     alternateMethodName="by_visit_key")
837     created     = DateTimeCol(notNone=True, default=datetime.now)
838     expiry      = DateTimeCol()
839
840     @classmethod
841     def lookup_visit(cls, visit_key):
842         try:
843             return cls.by_visit_key(visit_key)
844         except SQLObjectNotFound:
845             return None
846 #}}}
847
848 class VisitaUsuario(SQLObject): #{{{
849     # Clave
850     visit_key   = StringCol(length=40, alternateID=True,
851                           alternateMethodName="by_visit_key")
852     # Campos
853     user_id     = IntCol() # Negrada de identity
854 #}}}
855
856 class Rol(SQLObject): #{{{
857     # Clave
858     nombre      = UnicodeCol(length=255, alternateID=True,
859                     alternateMethodName="by_group_name")
860     # Campos
861     descripcion = UnicodeCol(length=255, default=None)
862     creado      = DateTimeCol(notNone=True, default=datetime.now)
863     permisos    = TupleCol(notNone=True)
864     # Joins
865     usuarios    = RelatedJoin('Usuario')
866
867     def __init__(self, nombre=None, permisos=(), descripcion=None, **kargs):
868         SQLObject.__init__(self, nombre=nombre, permisos=permisos,
869             descripcion=descripcion, **kargs)
870 #}}}
871
872 # No es un SQLObject porque no tiene sentido agregar/sacar permisos, están
873 # hardcodeados en el código
874 class Permiso(object): #{{{
875     def __init__(self, nombre, descripcion):
876         self.nombre = nombre
877         self.descripcion = descripcion
878
879     @classmethod
880     def createTable(cls, ifNotExists): # para identity
881         pass
882
883     @property
884     def permission_name(self): # para identity
885         return self.nombre
886
887     def __repr__(self):
888         return self.nombre
889 #}}}
890
891 # TODO ejemplos
892 entregar_tp = Permiso(u'entregar', u'Permite entregar trabajos prácticos')
893 admin = Permiso(u'admin', u'Permite hacer ABMs arbitrarios')
894
895 #}}} Identity
896
897 #}}} Clases
898