]> git.llucax.com Git - software/sercom-old.git/blob - src/sc_suwi
Se agrega listado de entregas rechazadas.
[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_inscripto(req, inscripto_id=None):
122     if inscripto_id is not None:
123         return '<input type="hidden" name="inscripto" value="%d" />\n' \
124             % inscripto_id
125     return ''
126
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)
132     return r
133
134 def input_intentos(req, entrega_id, inscripto_id):
135     return input_entrega(req, entrega_id) + input_inscripto(req, inscripto_id)
136
137 def login(req):
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>')
143
144 def curso(req):
145     cursos = [c for c in Curso.select(connection=conn) if len(c.entregas)]
146     r = '<h1>Elegir curso</h1>\n'
147     if cursos:
148         r += '<p>Curso: <select name="curso">\n'
149         for c in cursos:
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'
153     else:
154         r += '<p>No hay cursos con entregas</p>\n'
155     return form(req, 'Ver', r + input_login(req))
156
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'
162     for e in c.entregas:
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))
167
168 def pruebas(req, intento_id, inscripto_id=None):
169     def header():
170         return '''<table>
171     <tr>
172         <th>Nombre</th>
173         <th>Pasada</th>
174         <th>Privada</th>
175         <th>Activa</th>
176         <th>Inicio</th>
177         <th>Fin</th>
178         <th>Observaciones</th>
179     <tr>
180 '''
181         pass
182     def footer():
183         r = '</table>\n<p>\n'
184         r += form(req, 'Volver', input_entrega(req, i.entrega.id)
185             + input_inscripto(req, inscripto_id))
186         r += '</p>\n'
187         return r
188     def row(p):
189         return '''
190     <tr>
191         <td>%s</td>
192         <td>%s</td>
193         <td>%s</td>
194         <td>%s</td>
195         <td>%s</td>
196         <td>%s</td>
197         <td>%s</td>
198     </tr>
199 ''' % (p.casoDePrueba.nombre, p.pasada, p.casoDePrueba.privado,
200         p.casoDePrueba.activo, p.inicio, p.fin,
201         pre(p.observaciones))
202
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)
206     r += header()
207     for p in i.pruebas:
208         r += row(p)
209     r += footer()
210     return r
211
212 def intentos(req, entrega_id, inscripto_id):
213     def header():
214         return '''<table>
215     <tr>
216         <th>Nro</th>
217         <th>Llegada</th>
218         <th>Compila</th>
219         <th>Pruebas</th>
220         <th>Observaciones</th>
221     <tr>
222 '''
223         pass
224     def footer():
225         r = '</table>\n<p>\n'
226         r += form(req, 'Volver', input_entrega(req, entrega_id))
227         r += '</p>\n'
228         return r
229     def row(i):
230         if i.pruebasPasadas: pruebas = 'BIEN'
231         elif not i.compila: pruebas = None
232         else: pruebas = 'MAL'
233         return '''
234     <tr>
235         <td>%d</td>
236         <td>%s</td>
237         <td>%s</td>
238         <td>%s</td>
239         <td>%s</td>
240     </tr>
241 ''' % (i.numero, i.llegada, i.compila,
242         form(req, pruebas, input_pruebas(req, i.id, inscripto_id)),
243         pre(i.observaciones))
244
245     r = '<h1>Intentos del alumno %d</h1>\n' \
246         % Inscripto.get(inscripto_id, connection=conn).padron
247     r += header()
248     for i in Intento.selectBy(entregaID=entrega_id, inscriptoID=inscripto_id,
249             connection=conn):
250         r += row(i)
251     r += footer()
252     return r
253
254 def zip(req, entrega_id):
255     def zip_path(path, base, zipfd):
256         paths = os.listdir(path)
257         for p in paths:
258             if os.path.isdir(os.path.join(path, p)):
259                 zip_path(os.path.join(path, p), os.path.join(base, p), zipfd)
260             else:
261                 zipfd.write(os.path.join(path, p), os.path.join(base, p))
262
263     from zipfile import ZipFile, ZIP_DEFLATED
264     e = Entrega.get(entrega_id, connection=conn)
265     c = e.curso
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)
273     zipfd.close()
274     req.write(file(tmpfname, 'r').read())
275     os.unlink(tmpfname)
276
277 def correcciones(req, entrega_id):
278     def correccion_header():
279         return '''<table>
280     <caption>Entregas aceptadas</caption>
281     <thead>
282         <tr>
283             <th>Padrón</th>
284             <th>Pruebas</th>
285             <th>Intentos</th>
286         <tr>
287     </thead>
288     <tbody>
289 '''
290         pass
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())
299         return '''
300             <tr>
301                 <td>%d</td>
302                 <td>%s</td>
303                 <td>%s</td>
304             </tr>
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():
309         return '''<table>
310     <caption>Entregas rechazadas</caption>
311     <thead>
312         <tr>
313             <th>Padrón</th>
314             <th>Intentos</th>
315         <tr>
316     </thead>
317     <tbody>
318 '''
319         pass
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())
325         return '''
326         <tr>
327             <td>%d</td>
328             <td>%s</td>
329         </tr>
330 ''' % (inscripto.padron,
331         form(req, intentos, input_intentos(req, entrega.id, inscripto.id)))
332     def footer():
333         r = '<p>\n'
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))
337         r += '</p>\n'
338         return r
339
340     e = Entrega.get(entrega_id, connection=conn)
341     c = e.curso
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()
356     r += footer()
357     return r
358
359 #
360 # MAIN
361 #
362
363 req = sys.stdout
364 f = cgi.FieldStorage()
365 raw = f.has_key('zip')
366
367
368 if not raw:
369     print http_header_html(req)
370     print header(req)
371
372 path = os.getenv('PATH_INFO')
373
374 if not f.has_key('pw'):
375     print login(req)
376 elif f.has_key('pw') and f.getfirst('pw') <> PASSWD:
377     print login(req)
378     print '<p class="warn">Password Incorrecto!</p>\n'
379 elif not f.has_key('curso'):
380     print curso(req)
381 elif not f.has_key('entrega'):
382     print entrega(req, int(f.getfirst('curso')))
383 elif f.has_key('intento'):
384     inscripto_id = None
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')))
392 else:
393     print correcciones(req, int(f.getfirst('entrega')))
394
395 if not raw:
396     print footer(req)
397