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_zip_rechazados(req, entrega_id):
122 return input_entrega(req, entrega_id) \
123 + '<input type="hidden" name="zip" value="1" />\n' \
124 + '<input type="hidden" name="rechazados" value="1" />\n'
126 def input_inscripto(req, inscripto_id=None):
127 if inscripto_id is not None:
128 return '<input type="hidden" name="inscripto" value="%d" />\n' \
132 def input_pruebas(req, intento_id, inscripto_id=None):
133 i = Intento.get(intento_id, connection=conn)
134 r = input_entrega(req, i.entrega.id)
135 r += '<input type="hidden" name="intento" value="%d" />\n' % intento_id
136 r += input_inscripto(req, inscripto_id)
139 def input_intentos(req, entrega_id, inscripto_id):
140 return input_entrega(req, entrega_id) + input_inscripto(req, inscripto_id)
143 r = '<h1>Bienvenido a ' \
144 '<acronym title="Sercom Ugly Web Interface">SUWI</acronym></h1>\n'
145 r += '<p>Debe ingresar la contraseña para seguir...</p>\n'
146 return r + form(req, 'Entrar',
147 '<p>Contraseña: <input type="password" name="pw" /></p>')
150 cursos = [c for c in Curso.select(connection=conn) if len(c.entregas)]
151 r = '<h1>Elegir curso</h1>\n'
153 r += '<p>Curso: <select name="curso">\n'
155 r += '\t<option value="%d">%d-%d-%d</option>\n' \
156 % (c.id, c.anio, c.cuatrimestre, c.curso)
157 r += '</select></p>\n'
159 r += '<p>No hay cursos con entregas</p>\n'
160 return form(req, 'Ver', r + input_login(req))
162 def entrega(req, curso_id):
163 c = Curso.get(curso_id, connection=conn)
164 r = '<h1>Elegir entrega del curso %d-%d-%d</h1>\n' \
165 % (c.anio, c.cuatrimestre, c.curso)
166 r += '<p>Entrega: <select name="entrega">\n'
168 r += '\t<option value="%d">%d-%d</option>\n' \
169 % (e.id, e.nroEjercicio, e.entrega)
170 r += '</select></p>\n'
171 return form(req, 'Ver', r + input_curso(req, curso_id))
173 def pruebas(req, intento_id, inscripto_id=None):
183 <th>Observaciones</th>
188 r = '</table>\n<p>\n'
189 r += form(req, 'Volver', input_entrega(req, i.entrega.id)
190 + input_inscripto(req, inscripto_id))
204 ''' % (p.casoDePrueba.nombre, p.pasada, p.casoDePrueba.privado,
205 p.casoDePrueba.activo, p.inicio, p.fin,
206 pre(p.observaciones))
208 i = Intento.get(intento_id, connection=conn)
209 r = '<h1>Pruebas del intento %d del alumno %d</h1>\n' \
210 % (i.numero, i.inscripto.padron)
217 def intentos(req, entrega_id, inscripto_id):
225 <th>Observaciones</th>
230 r = '</table>\n<p>\n'
231 r += form(req, 'Volver', input_entrega(req, entrega_id))
235 if i.pruebasPasadas: pruebas = 'BIEN'
236 elif not i.compila: pruebas = None
237 else: pruebas = 'MAL'
246 ''' % (i.numero, i.llegada, i.compila,
247 form(req, pruebas, input_pruebas(req, i.id, inscripto_id)),
248 pre(i.observaciones))
250 r = '<h1>Intentos del alumno %d</h1>\n' \
251 % Inscripto.get(inscripto_id, connection=conn).padron
253 for i in Intento.selectBy(entregaID=entrega_id, inscriptoID=inscripto_id,
259 def zip(req, entrega_id, rechazados=False):
260 def zip_path(path, base, zipfd):
261 paths = os.listdir(path)
263 if os.path.isdir(os.path.join(path, p)):
264 zip_path(os.path.join(path, p), os.path.join(base, p), zipfd)
266 zipfd.write(os.path.join(path, p), os.path.join(base, p))
268 from zipfile import ZipFile, ZIP_DEFLATED
269 e = Entrega.get(entrega_id, connection=conn)
271 filename = 'entrega-%d.%d.%d-%d.%d' \
272 % (c.anio, c.cuatrimestre, c.curso, e.nroEjercicio, e.entrega)
274 filename += '-rechazados'
276 req.write(http_header_zip(req, filename))
277 tmpfname = os.tmpnam()
278 zipfd = ZipFile(tmpfname, 'w', ZIP_DEFLATED)
280 inscriptos_ok = set([c.inscripto for c in e.correcciones])
281 inscriptos = set([i.inscripto for i in e.intentos])
282 for i in inscriptos - inscriptos_ok:
283 intento = list(Intento.selectBy(entregaID=e.id, inscriptoID=i.id,
284 connection=conn))[-1]
285 zip_path(os.path.join(conf.get('general', 'data_dir'),
286 intento.path), str(i.padron), zipfd)
288 for c in e.correcciones:
289 zip_path(os.path.join(conf.get('general', 'data_dir'),
290 c.intento.path), str(c.intento.inscripto.padron), zipfd)
292 req.write(file(tmpfname, 'r').read())
295 def correcciones(req, entrega_id):
296 def correccion_header():
298 <caption>Entregas aceptadas</caption>
309 def correccion_footer():
310 return ' </tbody>\n</table>\n'
311 def correccion_row(c):
312 if c.intento.pruebasPasadas: pruebas = 'BIEN'
313 elif not c.intento.compila: prubas = None
314 else: pruebas = 'MAL'
315 intentos = int(Intento.selectBy(inscriptoID=c.inscriptoID,
316 entregaID=c.entregaID, connection=conn).count())
323 ''' % (c.inscripto.padron,
324 form(req, pruebas, input_pruebas(req, c.intento.id)),
325 form(req, intentos, input_intentos(req, c.entrega.id, c.inscripto.id)))
326 def problematico_header():
328 <caption>Entregas rechazadas</caption>
338 def problematico_footer():
339 return ' </tbody>\n</table>\n'
340 def problematico_row(inscripto, entrega):
341 intentos = int(Intento.selectBy(inscriptoID=inscripto.id,
342 entregaID=entrega.id, connection=conn).count())
348 ''' % (inscripto.padron,
349 form(req, intentos, input_intentos(req, entrega.id, inscripto.id)))
352 r += form(req, 'Elegir curso', input_login(req))
353 r += form(req, 'Elegir entrega', input_curso(req, e.curso.id))
354 r += form(req, 'Bajar entrega en .zip', input_zip(req, entrega_id))
355 r += form(req, 'Bajar entrega rechazadas en .zip',
356 input_zip_rechazados(req, entrega_id))
360 e = Entrega.get(entrega_id, connection=conn)
362 r = '<h1>Entrega %d.%d del curso %d-%d-%d</h1>\n' \
363 % (e.nroEjercicio, e.entrega, c.anio, c.cuatrimestre, c.curso)
364 correcciones = list(e.correcciones)
365 correcciones.sort(cmp_correccion_padron)
366 r += correccion_header()
367 for c in correcciones:
368 r += correccion_row(c)
369 r += correccion_footer()
370 inscriptos_ok = set([c.inscripto for c in correcciones])
371 inscriptos = set([i.inscripto for i in e.intentos])
372 r += problematico_header()
373 for i in inscriptos - inscriptos_ok:
374 r += problematico_row(i, e)
375 r += problematico_footer()
384 f = cgi.FieldStorage()
385 raw = f.has_key('zip')
389 print http_header_html(req)
392 path = os.getenv('PATH_INFO')
394 if not f.has_key('pw'):
396 elif f.has_key('pw') and f.getfirst('pw') <> PASSWD:
398 print '<p class="warn">Password Incorrecto!</p>\n'
399 elif not f.has_key('curso'):
401 elif not f.has_key('entrega'):
402 print entrega(req, int(f.getfirst('curso')))
403 elif f.has_key('intento'):
405 if f.has_key('inscripto'):
406 inscripto_id = int(f.getfirst('inscripto'))
407 print pruebas(req, int(f.getfirst('intento')), inscripto_id)
408 elif f.has_key('inscripto'):
409 print intentos(req, int(f.getfirst('entrega')), int(f.getfirst('inscripto')))
410 elif f.has_key('zip'):
411 zip(req, int(f.getfirst('entrega')), f.getfirst('rechazados', False))
413 print correcciones(req, int(f.getfirst('entrega')))