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;
57 border: thin black solid;
59 background-color: navy;
62 vertical-align: middle;
66 border: thin black solid;
68 vertical-align: middle;
88 def form(req, submit, str=None):
90 if submit is not None:
91 r = '<form method="post">\n'
93 r += '<input type="submit" value="%s">\n' % submit
98 return '<pre>%s</pre>' % cgi.escape(str(s))
100 def input_login(req):
101 return '<input type="hidden" name="pw" value="%s" />\n' % PASSWD
103 def input_curso(req, curso_id):
104 return input_login(req) \
105 + '<input type="hidden" name="curso" value="%d" />\n' % curso_id
107 def input_entrega(req, entrega_id):
108 e = Entrega.get(entrega_id, connection=conn)
109 return input_curso(req, e.curso.id) \
110 + '<input type="hidden" name="entrega" value="%d" />\n' % entrega_id
112 def input_zip(req, entrega_id):
113 return input_entrega(req, entrega_id) \
114 + '<input type="hidden" name="zip" value="1" />\n'
116 def input_inscripto(req, inscripto_id=None):
117 if inscripto_id is not None:
118 return '<input type="hidden" name="inscripto" value="%d" />\n' \
122 def input_pruebas(req, intento_id, inscripto_id=None):
123 i = Intento.get(intento_id, connection=conn)
124 r = input_entrega(req, i.entrega.id)
125 r += '<input type="hidden" name="intento" value="%d" />\n' % intento_id
126 r += input_inscripto(req, inscripto_id)
129 def input_intentos(req, entrega_id, inscripto_id):
130 return input_entrega(req, entrega_id) + input_inscripto(req, inscripto_id)
133 r = '<h1>Bienvenido a ' \
134 '<acronym title="Sercom Ugly Web Interface">SUWI</acronym></h1>\n'
135 r += '<p>Debe ingresar la contraseña para seguir...</p>\n'
136 return r + form(req, 'Entrar',
137 '<p>Contraseña: <input type="password" name="pw" /></p>')
140 cursos = [c for c in Curso.select(connection=conn) if len(c.entregas)]
141 r = '<h1>Elegir curso</h1>\n'
143 r += '<p>Curso: <select name="curso">\n'
145 r += '\t<option value="%d">%d-%d-%d</option>\n' \
146 % (c.id, c.anio, c.cuatrimestre, c.curso)
147 r += '</select></p>\n'
149 r += '<p>No hay cursos con entregas</p>\n'
150 return form(req, 'Ver', r + input_login(req))
152 def entrega(req, curso_id):
153 c = Curso.get(curso_id, connection=conn)
154 r = '<h1>Elegir entrega del curso %d-%d-%d</h1>\n' \
155 % (c.anio, c.cuatrimestre, c.curso)
156 r += '<p>Entrega: <select name="entrega">\n'
158 r += '\t<option value="%d">%d-%d</option>\n' \
159 % (e.id, e.nroEjercicio, e.entrega)
160 r += '</select></p>\n'
161 return form(req, 'Ver', r + input_curso(req, curso_id))
163 def pruebas(req, intento_id, inscripto_id=None):
173 <th>Observaciones</th>
178 r = '</table>\n<p>\n'
179 r += form(req, 'Volver', input_entrega(req, i.entrega.id)
180 + input_inscripto(req, inscripto_id))
194 ''' % (p.casoDePrueba.nombre, p.pasada, p.casoDePrueba.privado,
195 p.casoDePrueba.activo, p.inicio, p.fin,
196 pre(p.observaciones))
198 i = Intento.get(intento_id, connection=conn)
199 r = '<h1>Pruebas del intento %d del alumno %d</h1>\n' \
200 % (i.numero, i.inscripto.padron)
207 def intentos(req, entrega_id, inscripto_id):
215 <th>Observaciones</th>
220 r = '</table>\n<p>\n'
221 r += form(req, 'Volver', input_entrega(req, entrega_id))
225 if i.pruebasPasadas: pruebas = 'BIEN'
226 elif not i.compila: pruebas = None
227 else: pruebas = 'MAL'
236 ''' % (i.numero, i.llegada, i.compila,
237 form(req, pruebas, input_pruebas(req, i.id, inscripto_id)),
238 pre(i.observaciones))
240 r = '<h1>Intentos del alumno %d</h1>\n' \
241 % Inscripto.get(inscripto_id, connection=conn).padron
243 for i in Intento.selectBy(entregaID=entrega_id, inscriptoID=inscripto_id,
249 def zip(req, entrega_id):
250 def zip_path(path, base, zipfd):
251 paths = os.listdir(path)
253 if os.path.isdir(os.path.join(path, p)):
254 zip_path(os.path.join(path, p), os.path.join(base, p), zipfd)
256 zipfd.write(os.path.join(path, p), os.path.join(base, p))
258 from zipfile import ZipFile, ZIP_DEFLATED
259 e = Entrega.get(entrega_id, connection=conn)
261 req.write(http_header_zip(req, 'entrega-%d.%d.%d-%d.%d.zip'
262 % (c.anio, c.cuatrimestre, c.curso, e.nroEjercicio, e.entrega)))
263 tmpfname = os.tmpnam()
264 zipfd = ZipFile(tmpfname, 'w', ZIP_DEFLATED)
265 for c in e.correcciones:
266 zip_path(os.path.join(conf.get('general', 'data_dir'), c.intento.path),
267 str(c.intento.inscripto.padron), zipfd)
269 req.write(file(tmpfname, 'r').read())
272 def correcciones(req, entrega_id):
283 r = '</table>\n<p>\n'
284 r += form(req, 'Elegir curso', input_login(req))
285 r += form(req, 'Elegir entrega', input_curso(req, e.curso.id))
286 r += form(req, 'Bajar entrega en .zip', input_zip(req, entrega_id))
290 if c.intento.pruebasPasadas: pruebas = 'BIEN'
291 elif not c.intento.compila: prubas = None
292 else: pruebas = 'MAL'
293 intentos = int(Intento.selectBy(inscriptoID=c.inscriptoID,
294 entregaID=c.entregaID, connection=conn).count())
301 ''' % (c.inscripto.padron,
302 form(req, pruebas, input_pruebas(req, c.intento.id)),
303 form(req, intentos, input_intentos(req, c.entrega.id, c.inscripto.id)))
305 e = Entrega.get(entrega_id, connection=conn)
307 r = '<h1>Entrega %d.%d del curso %d-%d-%d</h1>\n' \
308 % (e.nroEjercicio, e.entrega, c.anio, c.cuatrimestre, c.curso)
310 correcciones = list(e.correcciones)
311 correcciones.sort(cmp_correccion_padron)
312 for c in correcciones:
322 f = cgi.FieldStorage()
323 raw = f.has_key('zip')
327 print http_header_html(req)
330 path = os.getenv('PATH_INFO')
332 if not f.has_key('pw'):
334 elif f.has_key('pw') and f.getfirst('pw') <> PASSWD:
336 print '<p class="warn">Password Incorrecto!</p>\n'
337 elif not f.has_key('curso'):
339 elif not f.has_key('entrega'):
340 print entrega(req, int(f.getfirst('curso')))
341 elif f.has_key('intento'):
343 if f.has_key('inscripto'):
344 inscripto_id = int(f.getfirst('inscripto'))
345 print pruebas(req, int(f.getfirst('intento')), inscripto_id)
346 elif f.has_key('inscripto'):
347 print intentos(req, int(f.getfirst('entrega')), int(f.getfirst('inscripto')))
348 elif f.has_key('zip'):
349 zip(req, int(f.getfirst('entrega')))
351 print correcciones(req, int(f.getfirst('entrega')))