1 #!/usr/bin/env python2.4
2 # -*- encoding: iso-8859-1 -*-
3 # vim: set et sw=4 sts=4 :
13 from sercom.sqlo import *
16 conf, conn, log = sercom.init('cgi')
19 import cgitb; cgitb.enable()
22 PASSWD = conf.get('general', 'cgipw')
24 def cmp_correccion_padron(e1, e2):
25 'Compara 2 entregas, según el padrón del alumno.'
26 return cmp(e1.inscripto.padron, e2.inscripto.padron)
28 def http_header_html(req):
29 return 'Content-type: text/html\r\n\r\n'
31 def http_header_zip(req, filename):
32 return 'Content-type: application/zip\r\n' \
33 'Content-Disposition: attachment;filename=%s\r\n' \
37 return '''<!DOCTYPE html
38 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
39 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
42 <title>SUWI - Sercom Ugly Web Interface</title>
43 <style type="text/css">
47 font-family: sans-serif;
48 background-color: rgb(255, 255, 255);
52 border: medium black solid;
53 border-collapse: collapse;
62 border: thin black solid;
64 background-color: navy;
67 vertical-align: middle;
71 border: thin black solid;
73 vertical-align: middle;
93 def form(req, submit, str=None):
95 if submit is not None:
96 r = '<form method="post">\n'
98 r += '<input type="submit" value="%s">\n' % submit
103 return '<pre>%s</pre>' % cgi.escape(str(s))
105 def input_login(req):
106 return '<input type="hidden" name="pw" value="%s" />\n' % PASSWD
108 def input_curso(req, curso_id):
109 return input_login(req) \
110 + '<input type="hidden" name="curso" value="%d" />\n' % curso_id
112 def input_entrega(req, entrega_id):
113 e = Entrega.get(entrega_id, connection=conn)
114 return input_curso(req, e.curso.id) \
115 + '<input type="hidden" name="entrega" value="%d" />\n' % entrega_id
117 def input_zip(req, entrega_id):
118 return input_entrega(req, entrega_id) \
119 + '<input type="hidden" name="zip" value="1" />\n'
121 def input_inscripto(req, inscripto_id=None):
122 if inscripto_id is not None:
123 return '<input type="hidden" name="inscripto" value="%d" />\n' \
127 def input_pruebas(req, intento_id, inscripto_id=None):
128 i = Intento.get(intento_id, connection=conn)
129 r = input_entrega(req, i.entrega.id)
130 r += '<input type="hidden" name="intento" value="%d" />\n' % intento_id
131 r += input_inscripto(req, inscripto_id)
134 def input_intentos(req, entrega_id, inscripto_id):
135 return input_entrega(req, entrega_id) + input_inscripto(req, inscripto_id)
138 r = '<h1>Bienvenido a ' \
139 '<acronym title="Sercom Ugly Web Interface">SUWI</acronym></h1>\n'
140 r += '<p>Debe ingresar la contraseña para seguir...</p>\n'
141 return r + form(req, 'Entrar',
142 '<p>Contraseña: <input type="password" name="pw" /></p>')
145 cursos = [c for c in Curso.select(connection=conn) if len(c.entregas)]
146 r = '<h1>Elegir curso</h1>\n'
148 r += '<p>Curso: <select name="curso">\n'
150 r += '\t<option value="%d">%d-%d-%d</option>\n' \
151 % (c.id, c.anio, c.cuatrimestre, c.curso)
152 r += '</select></p>\n'
154 r += '<p>No hay cursos con entregas</p>\n'
155 return form(req, 'Ver', r + input_login(req))
157 def entrega(req, curso_id):
158 c = Curso.get(curso_id, connection=conn)
159 r = '<h1>Elegir entrega del curso %d-%d-%d</h1>\n' \
160 % (c.anio, c.cuatrimestre, c.curso)
161 r += '<p>Entrega: <select name="entrega">\n'
163 r += '\t<option value="%d">%d-%d</option>\n' \
164 % (e.id, e.nroEjercicio, e.entrega)
165 r += '</select></p>\n'
166 return form(req, 'Ver', r + input_curso(req, curso_id))
168 def pruebas(req, intento_id, inscripto_id=None):
178 <th>Observaciones</th>
183 r = '</table>\n<p>\n'
184 r += form(req, 'Volver', input_entrega(req, i.entrega.id)
185 + input_inscripto(req, inscripto_id))
199 ''' % (p.casoDePrueba.nombre, p.pasada, p.casoDePrueba.privado,
200 p.casoDePrueba.activo, p.inicio, p.fin,
201 pre(p.observaciones))
203 i = Intento.get(intento_id, connection=conn)
204 r = '<h1>Pruebas del intento %d del alumno %d</h1>\n' \
205 % (i.numero, i.inscripto.padron)
212 def intentos(req, entrega_id, inscripto_id):
220 <th>Observaciones</th>
225 r = '</table>\n<p>\n'
226 r += form(req, 'Volver', input_entrega(req, entrega_id))
230 if i.pruebasPasadas: pruebas = 'BIEN'
231 elif not i.compila: pruebas = None
232 else: pruebas = 'MAL'
241 ''' % (i.numero, i.llegada, i.compila,
242 form(req, pruebas, input_pruebas(req, i.id, inscripto_id)),
243 pre(i.observaciones))
245 r = '<h1>Intentos del alumno %d</h1>\n' \
246 % Inscripto.get(inscripto_id, connection=conn).padron
248 for i in Intento.selectBy(entregaID=entrega_id, inscriptoID=inscripto_id,
254 def zip(req, entrega_id):
255 def zip_path(path, base, zipfd):
256 paths = os.listdir(path)
258 if os.path.isdir(os.path.join(path, p)):
259 zip_path(os.path.join(path, p), os.path.join(base, p), zipfd)
261 zipfd.write(os.path.join(path, p), os.path.join(base, p))
263 from zipfile import ZipFile, ZIP_DEFLATED
264 e = Entrega.get(entrega_id, connection=conn)
266 req.write(http_header_zip(req, 'entrega-%d.%d.%d-%d.%d.zip'
267 % (c.anio, c.cuatrimestre, c.curso, e.nroEjercicio, e.entrega)))
268 tmpfname = os.tmpnam()
269 zipfd = ZipFile(tmpfname, 'w', ZIP_DEFLATED)
270 for c in e.correcciones:
271 zip_path(os.path.join(conf.get('general', 'data_dir'), c.intento.path),
272 str(c.intento.inscripto.padron), zipfd)
274 req.write(file(tmpfname, 'r').read())
277 def correcciones(req, entrega_id):
278 def correccion_header():
280 <caption>Entregas aceptadas</caption>
291 def correccion_footer():
292 return ' </tbody>\n</table>\n'
293 def correccion_row(c):
294 if c.intento.pruebasPasadas: pruebas = 'BIEN'
295 elif not c.intento.compila: prubas = None
296 else: pruebas = 'MAL'
297 intentos = int(Intento.selectBy(inscriptoID=c.inscriptoID,
298 entregaID=c.entregaID, connection=conn).count())
305 ''' % (c.inscripto.padron,
306 form(req, pruebas, input_pruebas(req, c.intento.id)),
307 form(req, intentos, input_intentos(req, c.entrega.id, c.inscripto.id)))
308 def problematico_header():
310 <caption>Entregas rechazadas</caption>
320 def problematico_footer():
321 return ' </tbody>\n</table>\n'
322 def problematico_row(inscripto, entrega):
323 intentos = int(Intento.selectBy(inscriptoID=inscripto.id,
324 entregaID=entrega.id, connection=conn).count())
330 ''' % (inscripto.padron,
331 form(req, intentos, input_intentos(req, entrega.id, inscripto.id)))
334 r += form(req, 'Elegir curso', input_login(req))
335 r += form(req, 'Elegir entrega', input_curso(req, e.curso.id))
336 r += form(req, 'Bajar entrega en .zip', input_zip(req, entrega_id))
340 e = Entrega.get(entrega_id, connection=conn)
342 r = '<h1>Entrega %d.%d del curso %d-%d-%d</h1>\n' \
343 % (e.nroEjercicio, e.entrega, c.anio, c.cuatrimestre, c.curso)
344 correcciones = list(e.correcciones)
345 correcciones.sort(cmp_correccion_padron)
346 r += correccion_header()
347 for c in correcciones:
348 r += correccion_row(c)
349 r += correccion_footer()
350 inscriptos_ok = set([c.inscripto for c in correcciones])
351 inscriptos = set([i.inscripto for i in e.intentos])
352 r += problematico_header()
353 for i in inscriptos - inscriptos_ok:
354 r += problematico_row(i, e)
355 r += problematico_footer()
364 f = cgi.FieldStorage()
365 raw = f.has_key('zip')
369 print http_header_html(req)
372 path = os.getenv('PATH_INFO')
374 if not f.has_key('pw'):
376 elif f.has_key('pw') and f.getfirst('pw') <> PASSWD:
378 print '<p class="warn">Password Incorrecto!</p>\n'
379 elif not f.has_key('curso'):
381 elif not f.has_key('entrega'):
382 print entrega(req, int(f.getfirst('curso')))
383 elif f.has_key('intento'):
385 if f.has_key('inscripto'):
386 inscripto_id = int(f.getfirst('inscripto'))
387 print pruebas(req, int(f.getfirst('intento')), inscripto_id)
388 elif f.has_key('inscripto'):
389 print intentos(req, int(f.getfirst('entrega')), int(f.getfirst('inscripto')))
390 elif f.has_key('zip'):
391 zip(req, int(f.getfirst('entrega')))
393 print correcciones(req, int(f.getfirst('entrega')))