]> git.llucax.com Git - software/sercom-old.git/blob - src/sc_suwi
cea388603184e5dfe948af4904a2a19a8136a929
[software/sercom-old.git] / src / sc_suwi
1 #!/usr/bin/env python2.4
2 # -*- encoding: iso-8859-1 -*-
3 # vim: set et sw=4 sts=4 :
4
5 # Módulos estándar
6 import os
7 import sys
8 import cgi
9 # Módulos externos
10 import sqlobject
11 # Módulos locales
12 import sercom
13 from sercom.sqlo import *
14
15 # Inicializo
16 conf, conn, log = sercom.init('cgi')
17
18 # Para debug web
19 import cgitb; cgitb.enable()
20
21 #XXX HORRIBLE
22 PASSWD = conf.get('general', 'cgipw')
23
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)
27
28 def http_header_html(req):
29     return 'Content-type: text/html\r\n\r\n'
30
31 def http_header_zip(req, filename):
32     return 'Content-type: application/zip\r\n' \
33         'Content-Disposition: attachment;filename=%s\r\n' \
34         '\r\n' % filename
35
36 def header(req):
37     return '''<!DOCTYPE html
38     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
39     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" >
40 <html>
41     <head>
42         <title>SUWI - Sercom Ugly Web Interface</title>
43         <style type="text/css">
44             <!--
45             body
46             {
47                 font-family: sans-serif;
48                 background-color: rgb(255, 255, 255);
49             }
50             table
51             {
52                 border: medium black solid;
53                 border-collapse: collapse;
54             }
55             caption
56             {
57                 margin: 5pt;
58                 font-weight: bold;
59             }
60             th
61             {
62                 border: thin black solid;
63                 color: white;
64                 background-color: navy;
65                 padding: 3pt;
66                 text-align: center;
67                 vertical-align: middle;
68             }
69             td
70             {
71                 border: thin black solid;
72                 padding: 3pt;
73                 vertical-align: middle;
74             }
75             .warn
76             {
77                 color: red;
78             }
79             // -->
80         </style>
81     </head>
82     <body>
83 '''
84     pass
85
86 def footer(req):
87     return '''
88     </body>
89 </html>
90 '''
91     pass
92
93 def form(req, submit, str=None):
94     r = submit
95     if submit is not None:
96         r = '<form method="post">\n'
97         if str: r += str
98         r += '<input type="submit" value="%s">\n' % submit
99         r += '</form>\n'
100     return r
101
102 def pre(s):
103     return '<pre>%s</pre>' % cgi.escape(str(s))
104
105 def input_login(req):
106     return '<input type="hidden" name="pw" value="%s" />\n' % PASSWD
107
108 def input_curso(req, curso_id):
109     return input_login(req) \
110         + '<input type="hidden" name="curso" value="%d" />\n' % curso_id
111
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
116
117 def input_zip(req, entrega_id):
118     return input_entrega(req, entrega_id) \
119         + '<input type="hidden" name="zip" value="1" />\n'
120
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'
125
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' \
129             % inscripto_id
130     return ''
131
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)
137     return r
138
139 def input_intentos(req, entrega_id, inscripto_id):
140     return input_entrega(req, entrega_id) + input_inscripto(req, inscripto_id)
141
142 def login(req):
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>')
148
149 def curso(req):
150     cursos = [c for c in Curso.select(connection=conn) if len(c.entregas)]
151     r = '<h1>Elegir curso</h1>\n'
152     if cursos:
153         r += '<p>Curso: <select name="curso">\n'
154         for c in cursos:
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'
158     else:
159         r += '<p>No hay cursos con entregas</p>\n'
160     return form(req, 'Ver', r + input_login(req))
161
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'
167     for e in c.entregas:
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))
172
173 def pruebas(req, intento_id, inscripto_id=None):
174     def header():
175         return '''<table>
176     <tr>
177         <th>Nombre</th>
178         <th>Pasada</th>
179         <th>Privada</th>
180         <th>Activa</th>
181         <th>Inicio</th>
182         <th>Fin</th>
183         <th>Observaciones</th>
184     <tr>
185 '''
186         pass
187     def footer():
188         r = '</table>\n<p>\n'
189         r += form(req, 'Volver', input_entrega(req, i.entrega.id)
190             + input_inscripto(req, inscripto_id))
191         r += '</p>\n'
192         return r
193     def row(p):
194         return '''
195     <tr>
196         <td>%s</td>
197         <td>%s</td>
198         <td>%s</td>
199         <td>%s</td>
200         <td>%s</td>
201         <td>%s</td>
202         <td>%s</td>
203     </tr>
204 ''' % (p.casoDePrueba.nombre, p.pasada, p.casoDePrueba.privado,
205         p.casoDePrueba.activo, p.inicio, p.fin,
206         pre(p.observaciones))
207
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)
211     r += header()
212     for p in i.pruebas:
213         r += row(p)
214     r += footer()
215     return r
216
217 def intentos(req, entrega_id, inscripto_id):
218     def header():
219         return '''<table>
220     <tr>
221         <th>Nro</th>
222         <th>Llegada</th>
223         <th>Compila</th>
224         <th>Pruebas</th>
225         <th>Observaciones</th>
226     <tr>
227 '''
228         pass
229     def footer():
230         r = '</table>\n<p>\n'
231         r += form(req, 'Volver', input_entrega(req, entrega_id))
232         r += '</p>\n'
233         return r
234     def row(i):
235         if i.pruebasPasadas: pruebas = 'BIEN'
236         elif not i.compila: pruebas = None
237         else: pruebas = 'MAL'
238         return '''
239     <tr>
240         <td>%d</td>
241         <td>%s</td>
242         <td>%s</td>
243         <td>%s</td>
244         <td>%s</td>
245     </tr>
246 ''' % (i.numero, i.llegada, i.compila,
247         form(req, pruebas, input_pruebas(req, i.id, inscripto_id)),
248         pre(i.observaciones))
249
250     r = '<h1>Intentos del alumno %d</h1>\n' \
251         % Inscripto.get(inscripto_id, connection=conn).padron
252     r += header()
253     for i in Intento.selectBy(entregaID=entrega_id, inscriptoID=inscripto_id,
254             connection=conn):
255         r += row(i)
256     r += footer()
257     return r
258
259 def zip(req, entrega_id, rechazados=False):
260     def zip_path(path, base, zipfd):
261         paths = os.listdir(path)
262         for p in paths:
263             if os.path.isdir(os.path.join(path, p)):
264                 zip_path(os.path.join(path, p), os.path.join(base, p), zipfd)
265             else:
266                 zipfd.write(os.path.join(path, p), os.path.join(base, p))
267
268     from zipfile import ZipFile, ZIP_DEFLATED
269     e = Entrega.get(entrega_id, connection=conn)
270     c = e.curso
271     filename = 'entrega-%d.%d.%d-%d.%d' \
272         % (c.anio, c.cuatrimestre, c.curso, e.nroEjercicio, e.entrega)
273     if rechazados:
274         filename += '-rechazados'
275     filename += '.zip'
276     req.write(http_header_zip(req, filename))
277     tmpfname = os.tmpnam()
278     zipfd = ZipFile(tmpfname, 'w', ZIP_DEFLATED)
279     if rechazados:
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)
287     else:
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)
291     zipfd.close()
292     req.write(file(tmpfname, 'r').read())
293     os.unlink(tmpfname)
294
295 def correcciones(req, entrega_id):
296     def correccion_header():
297         return '''<table>
298     <caption>Entregas aceptadas</caption>
299     <thead>
300         <tr>
301             <th>Padrón</th>
302             <th>Pruebas</th>
303             <th>Intentos</th>
304         <tr>
305     </thead>
306     <tbody>
307 '''
308         pass
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())
317         return '''
318             <tr>
319                 <td>%d</td>
320                 <td>%s</td>
321                 <td>%s</td>
322             </tr>
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():
327         return '''<table>
328     <caption>Entregas rechazadas</caption>
329     <thead>
330         <tr>
331             <th>Padrón</th>
332             <th>Intentos</th>
333         <tr>
334     </thead>
335     <tbody>
336 '''
337         pass
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())
343         return '''
344         <tr>
345             <td>%d</td>
346             <td>%s</td>
347         </tr>
348 ''' % (inscripto.padron,
349         form(req, intentos, input_intentos(req, entrega.id, inscripto.id)))
350     def footer():
351         r = '<p>\n'
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))
357         r += '</p>\n'
358         return r
359
360     e = Entrega.get(entrega_id, connection=conn)
361     c = e.curso
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()
376     r += footer()
377     return r
378
379 #
380 # MAIN
381 #
382
383 req = sys.stdout
384 f = cgi.FieldStorage()
385 raw = f.has_key('zip')
386
387
388 if not raw:
389     print http_header_html(req)
390     print header(req)
391
392 path = os.getenv('PATH_INFO')
393
394 if not f.has_key('pw'):
395     print login(req)
396 elif f.has_key('pw') and f.getfirst('pw') <> PASSWD:
397     print login(req)
398     print '<p class="warn">Password Incorrecto!</p>\n'
399 elif not f.has_key('curso'):
400     print curso(req)
401 elif not f.has_key('entrega'):
402     print entrega(req, int(f.getfirst('curso')))
403 elif f.has_key('intento'):
404     inscripto_id = None
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))
412 else:
413     print correcciones(req, int(f.getfirst('entrega')))
414
415 if not raw:
416     print footer(req)
417