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 http_header_html(req):
25 return 'Content-type: text/html\r\n\r\n'
27 def http_header_zip(req, filename):
28 return 'Content-type: application/zip\r\n' \
29 'Content-Disposition: attachment;filename=%s\r\n' \
33 return '''<!DOCTYPE html
34 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
35 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
38 <title>SUWI - Sercom Ugly Web Interface</title>
39 <style type="text/css">
43 font-family: sans-serif;
44 background-color: rgb(255, 255, 255);
48 border: medium black solid;
49 border-collapse: collapse;
53 border: thin black solid;
55 background-color: navy;
58 vertical-align: middle;
62 border: thin black solid;
64 vertical-align: middle;
84 def form(req, submit, str=None):
86 if submit is not None:
87 r = '<form method="post">\n'
89 r += '<input type="submit" value="%s">\n' % submit
94 return '<pre>%s</pre>' % cgi.escape(str(s))
97 return '<input type="hidden" name="pw" value="%s" />\n' % PASSWD
99 def input_curso(req, curso_id):
100 return input_login(req) \
101 + '<input type="hidden" name="curso" value="%d" />\n' % curso_id
103 def input_entrega(req, entrega_id):
104 e = Entrega.get(entrega_id, connection=conn)
105 return input_curso(req, e.curso.id) \
106 + '<input type="hidden" name="entrega" value="%d" />\n' % entrega_id
108 def input_zip(req, entrega_id):
109 return input_entrega(req, entrega_id) \
110 + '<input type="hidden" name="zip" value="1" />\n'
112 def input_inscripto(req, inscripto_id=None):
113 if inscripto_id is not None:
114 return '<input type="hidden" name="inscripto" value="%d" />\n' \
118 def input_pruebas(req, intento_id, inscripto_id=None):
119 i = Intento.get(intento_id, connection=conn)
120 r = input_entrega(req, i.entrega.id)
121 r += '<input type="hidden" name="intento" value="%d" />\n' % intento_id
122 r += input_inscripto(req, inscripto_id)
125 def input_intentos(req, entrega_id, inscripto_id):
126 return input_entrega(req, entrega_id) + input_inscripto(req, inscripto_id)
129 r = '<h1>Bienvenido a ' \
130 '<acronym title="Sercom Ugly Web Interface">SUWI</acronym></h1>\n'
131 r += '<p>Debe ingresar la contraseña para seguir...</p>\n'
132 return r + form(req, 'Entrar',
133 '<p>Contraseña: <input type="password" name="pw" /></p>')
136 cursos = [c for c in Curso.select(connection=conn) if len(c.entregas)]
137 r = '<h1>Elegir curso</h1>\n'
139 r += '<p>Curso: <select name="curso">\n'
141 r += '\t<option value="%d">%d-%d-%d</option>\n' \
142 % (c.id, c.anio, c.cuatrimestre, c.curso)
143 r += '</select></p>\n'
145 r += '<p>No hay cursos con entregas</p>\n'
146 return form(req, 'Ver', r + input_login(req))
148 def entrega(req, curso_id):
149 c = Curso.get(curso_id, connection=conn)
150 r = '<h1>Elegir entrega del curso %d-%d-%d</h1>\n' \
151 % (c.anio, c.cuatrimestre, c.curso)
152 r += '<p>Entrega: <select name="entrega">\n'
154 r += '\t<option value="%d">%d-%d</option>\n' \
155 % (e.id, e.nroEjercicio, e.entrega)
156 r += '</select></p>\n'
157 return form(req, 'Ver', r + input_curso(req, curso_id))
159 def pruebas(req, intento_id, inscripto_id=None):
169 <th>Observaciones</th>
174 r = '</table>\n<p>\n'
175 r += form(req, 'Volver', input_entrega(req, i.entrega.id)
176 + input_inscripto(req, inscripto_id))
190 ''' % (p.casoDePrueba.nombre, p.pasada, p.casoDePrueba.privado,
191 p.casoDePrueba.activo, p.inicio, p.fin,
192 pre(p.observaciones))
194 i = Intento.get(intento_id, connection=conn)
195 r = '<h1>Pruebas del intento %d del alumno %d</h1>\n' \
196 % (i.numero, i.inscripto.padron)
203 def intentos(req, entrega_id, inscripto_id):
211 <th>Observaciones</th>
216 r = '</table>\n<p>\n'
217 r += form(req, 'Volver', input_entrega(req, entrega_id))
221 if i.pruebasPasadas: pruebas = 'BIEN'
222 elif not i.compila: pruebas = None
223 else: pruebas = 'MAL'
232 ''' % (i.numero, i.llegada, i.compila,
233 form(req, pruebas, input_pruebas(req, i.id, inscripto_id)),
234 pre(i.observaciones))
236 r = '<h1>Intentos del alumno %d</h1>\n' \
237 % Inscripto.get(inscripto_id, connection=conn).padron
239 for i in Intento.selectBy(entregaID=entrega_id, inscriptoID=inscripto_id,
245 def zip(req, entrega_id):
246 def zip_path(path, base, zipfd):
247 paths = os.listdir(path)
249 if os.path.isdir(os.path.join(path, p)):
250 zip_path(os.path.join(path, p), os.path.join(base, p), zipfd)
252 zipfd.write(os.path.join(path, p), os.path.join(base, p))
254 from zipfile import ZipFile, ZIP_DEFLATED
255 e = Entrega.get(entrega_id, connection=conn)
257 req.write(http_header_zip(req, 'entrega-%d.%d.%d-%d.%d.zip'
258 % (c.anio, c.cuatrimestre, c.curso, e.nroEjercicio, e.entrega)))
259 tmpfname = os.tmpnam()
260 zipfd = ZipFile(tmpfname, 'w', ZIP_DEFLATED)
261 for c in e.correcciones:
262 zip_path(os.path.join(conf.get('general', 'data_dir'), c.intento.path),
263 str(c.intento.inscripto.padron), zipfd)
265 req.write(file(tmpfname, 'r').read())
268 def correcciones(req, entrega_id):
279 r = '</table>\n<p>\n'
280 r += form(req, 'Elegir curso', input_login(req))
281 r += form(req, 'Elegir entrega', input_curso(req, e.curso.id))
282 r += form(req, 'Bajar entrega en .zip', input_zip(req, entrega_id))
286 if c.intento.pruebasPasadas: pruebas = 'BIEN'
287 elif not c.intento.compila: prubas = None
288 else: pruebas = 'MAL'
289 intentos = int(Intento.selectBy(inscriptoID=c.inscriptoID,
290 entregaID=c.entregaID, connection=conn).count())
297 ''' % (c.inscripto.padron,
298 form(req, pruebas, input_pruebas(req, c.intento.id)),
299 form(req, intentos, input_intentos(req, c.entrega.id, c.inscripto.id)))
301 e = Entrega.get(entrega_id, connection=conn)
303 r = '<h1>Entrega %d.%d del curso %d-%d-%d</h1>\n' \
304 % (e.nroEjercicio, e.entrega, c.anio, c.cuatrimestre, c.curso)
306 for c in e.correcciones:
316 f = cgi.FieldStorage()
317 raw = f.has_key('zip')
321 print http_header_html(req)
324 path = os.getenv('PATH_INFO')
326 if not f.has_key('pw'):
328 elif f.has_key('pw') and f.getfirst('pw') <> PASSWD:
330 print '<p class="warn">Password Incorrecto!</p>\n'
331 elif not f.has_key('curso'):
333 elif not f.has_key('entrega'):
334 print entrega(req, int(f.getfirst('curso')))
335 elif f.has_key('intento'):
337 if f.has_key('inscripto'):
338 inscripto_id = int(f.getfirst('inscripto'))
339 print pruebas(req, int(f.getfirst('intento')), inscripto_id)
340 elif f.has_key('inscripto'):
341 print intentos(req, int(f.getfirst('entrega')), int(f.getfirst('inscripto')))
342 elif f.has_key('zip'):
343 zip(req, int(f.getfirst('entrega')))
345 print correcciones(req, int(f.getfirst('entrega')))