-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcorrector.py
executable file
·423 lines (325 loc) · 13 KB
/
corrector.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
#!/usr/bin/env python3
"""Script principal del corrector automático de Algoritmos II.
Las entradas al script son:
- stdin: mensaje de correo enviado por el alumno
- SKEL_DIR: un directorio con los archivos “base” de cada TP, p. ej. las
pruebas de la cátedra y los archivos .h
- WORKER_BIN: el binario que compila la entrega y la corre con Valgrind
El workflow es:
- del mensaje entrante se detecta el identificador del TP (‘tp0’, ‘pila’,
etc.) y el ZIP con la entrega
- se ejecuta el worker, quien recibe por entrada estándar un archivo TAR
que contiene los archivos de la entrega (subdirectorio "orig") y los
archivos base (subdirectorio "skel")
Salida:
- un mensaje al alumno con los resultados. Se envía desde GMAIL_ACCOUNT.
- se guarda una copia de los archivos en DATA_DIR/<TP_ID>/<YYYY_CX>/<PADRON>.
"""
import base64
import datetime
import email
import email.message
import email.policy
import email.utils
import io
import os
import pathlib
import re
import shutil
import smtplib
import subprocess
import sys
import tarfile
import zipfile
import httplib2
import oauth2client.client
from github import GithubException
from alu_repos import AluRepo
ROOT_DIR = pathlib.Path(os.environ["CORRECTOR_ROOT"])
SKEL_DIR = ROOT_DIR / os.environ["CORRECTOR_SKEL"]
DATA_DIR = ROOT_DIR / os.environ["CORRECTOR_TPS"]
WORKER_BIN = ROOT_DIR / os.environ["CORRECTOR_WORKER"]
GITHUB_URL = "https://github.com/" + os.environ["CORRECTOR_GH_REPO"]
MAX_ZIP_SIZE = 1024 * 1024 # 1 MiB
PADRON_REGEX = re.compile(r"\b(SP\d+|CBC\d+|\d{5,})\b")
AUSENCIA_REGEX = re.compile(r" \(ausencia\)$")
TODO_OK_REGEX = re.compile(r"^Todo OK$", re.M)
GMAIL_ACCOUNT = os.environ.get("CORRECTOR_ACCOUNT")
CLIENT_ID = os.environ.get("CORRECTOR_OAUTH_CLIENT")
CLIENT_SECRET = os.environ.get("CORRECTOR_OAUTH_SECRET")
# Si OAUTH_REFRESH_TOKEN no está definido, el mail se imprime por pantalla y no
# se envía.
OAUTH_REFRESH_TOKEN = os.environ.get("CORRECTOR_REFRESH_TOKEN")
# Nunca respondemos a mail enviado por estas direcciones.
IGNORE_ADDRESSES = {
GMAIL_ACCOUNT, # Mail de nosotros mismos.
"no-reply@accounts.google.com", # Notificaciones sobre la contraseña.
}
# Archivos que no aceptamos en las entregas.
FORBIDDEN_EXTENSIONS = {
".o", ".class", ".jar", ".pyc",
}
class ErrorInterno(Exception):
"""Excepción para cualquier error interno en el programa.
"""
class ErrorAlumno(Exception):
"""Excepción para cualquier error en la entrega.
"""
def main():
"""Función principal.
El flujo de la corrección se corta lanzando excepciones ErrorAlumno.
"""
os.umask(0o027)
msg = email.message_from_binary_file(sys.stdin.buffer,
policy=email.policy.default)
try:
procesar_entrega(msg)
except ErrorAlumno as ex:
send_reply(msg, "ERROR: {}.".format(ex))
except ErrorInterno as ex:
print(ex, file=sys.stderr)
sys.exit(1) # Ensure message will not be deleted by fetchmail.
def procesar_entrega(msg):
"""Recibe el mensaje del alumno y lanza el proceso de corrección.
"""
_, addr_from = email.utils.parseaddr(msg["From"])
# Ignoramos los mails que no son para el corrector automático.
if GMAIL_ACCOUNT not in msg["To"]:
sys.stderr.write("Ignorando email de {}\n".format(addr_from))
return
subj = msg["Subject"]
tp_id = guess_tp(subj)
padron = get_padron_str(subj)
zip_obj = find_zip(msg)
skel_dir = SKEL_DIR / tp_id
moss = Moss(DATA_DIR, tp_id, padron, msg["Date"])
if AUSENCIA_REGEX.search(subj):
# No es una entrega real, por tanto no se envía al worker.
for path, zip_info in zip_walk(zip_obj):
moss.save_data(path, zip_obj.read(zip_info))
moss.flush()
send_reply(msg, "Justificación registrada\n\n" +
"-- \nURL de esta entrega (para uso docente):\n" + moss.url())
return
# Lanzar ya el proceso worker para poder pasar su stdin a tarfile.open().
worker = subprocess.Popen([WORKER_BIN],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT)
tar = tarfile.open(fileobj=worker.stdin, mode="w|", dereference=True)
# Añadir al archivo TAR la base del TP (skel_dir).
for entry in os.scandir(skel_dir):
path = pathlib.PurePath(entry.path)
rel_path = path.relative_to(skel_dir)
tar.add(path, "skel" / rel_path)
# A continuación añadir los archivos de la entrega (ZIP).
for path, zip_info in zip_walk(zip_obj):
info = tarfile.TarInfo(("orig" / path).as_posix())
info.size = zip_info.file_size
info.mtime = zip_datetime(zip_info).timestamp()
info.type, info.mode = tarfile.REGTYPE, 0o644
moss.save_data(path, zip_obj.read(zip_info))
tar.addfile(info, zip_obj.open(zip_info.filename))
moss.flush()
tar.close()
stdout, _ = worker.communicate()
output = stdout.decode("utf-8")
retcode = worker.wait()
if retcode != 0:
raise ErrorInterno(output)
# Este código corre ahora desde el corrector.py del sistema de entregas.
# No lo borramos por si acaso hubiera que hacer un revert de emergencia.
if TODO_OK_REGEX.search(output) and False:
try:
# Sincronizar la entrega con los repositorios individuales.
alu_repo = AluRepo.from_legajos(padron.split("_"), tp_id)
alu_repo.ensure_exists(skel_repo="algorw-alu/algo2_tps")
alu_repo.sync(moss.location(), tp_id)
except (KeyError, ValueError):
pass
except GithubException as ex:
print(f"error al sincronizar: {ex}", file=sys.stderr)
else:
if alu_repo.has_reviewer():
# Insertar, por el momento, la URL del repositorio.
# TODO: insertar URL para un pull request si es el primer Todo OK.
message = "Esta entrega fue importada a:"
output = TODO_OK_REGEX.sub(
rf"\g<0>\n\n{message}\n{alu_repo.url}/tree/{tp_id}", output)
firma = "URL de esta entrega (para uso docente):\n" + moss.url()
send_reply(msg, f"{output}\n\n-- \n{firma}")
def guess_tp(subject):
"""Devuelve el identificador del TP de la entrega.
Por ejemplo, ‘tp0’ o ‘pila’.
"""
subj_words = [w.lower() for w in re.split(r"[^_\w]+", subject)]
candidates = {p.name.lower(): p.name for p in SKEL_DIR.iterdir()}
for word in subj_words:
if word in candidates:
return candidates[word]
raise ErrorAlumno("no se encontró nombre del TP en el asunto")
def get_padron_str(subject):
"""Devuelve una cadena con el padrón, o padrones, de una entrega.
En el caso de entregas conjuntas, se devuelve PADRÓN1_PADRÓN2, con
PADRÓN1 < PADRÓN2.
"""
subject = subject.replace(".", "")
matches = PADRON_REGEX.findall(subject)
if matches:
# Los padrones suelen ser numéricos, pero técnicamnete nada obliga
# a ello. Para ordenar ascendentemente cadenas que son casi siempre
# números, podemos usar "0>{maxlen}" como key, que añade ceros a la
# izquierda para dar a todos el mismo ancho.
maxlen = max(len(x) for x in matches)
matches = sorted(matches, key=lambda s: f"{s:0>{maxlen}}")
return "_".join(matches)
raise ErrorAlumno("no se encontró número de legajo en el asunto")
def id_cursada():
"""Devuelve el identificador de la cursada según año y cuatrimestre.
El identificador es del tipo ‘2015_2’ o ‘2016_1’, donde el segundo elemento
indica el cuatrimestre.
El cuatrimestre es:
- 1 si la fecha es antes del 1 de agosto;
- 2 si es igual o posterior.
"""
today = datetime.datetime.today()
cutoff = today.replace(month=8, day=1)
return "{}_{}".format(today.year, 1 if today < cutoff else 2)
def find_zip(msg):
"""Busca un adjunto .zip en un mensaje y lo devuelve.
Args:
- msg: un objeto email.message.Message.
Returns:
- un objeto zipfile.ZipFile.
"""
for part in msg.walk():
if part.get_content_maintype() == "multipart":
continue # Multipart es una enclosure.
filename = part.get_filename() or ""
content_type = part.get_content_type()
if filename.lower().endswith(".zip") or content_type == "application/zip":
zipbytes = part.get_payload(decode=True)
if len(zipbytes) > MAX_ZIP_SIZE:
raise ErrorAlumno(
"archivo ZIP demasiado grande ({} bytes)".format(len(zipbytes)))
try:
return zipfile.ZipFile(io.BytesIO(zipbytes))
except zipfile.BadZipFile as ex:
raise ErrorAlumno("no se pudo abrir el archivo {} ({} bytes): {}"
.format(filename, len(zipbytes), ex))
raise ErrorAlumno("no se encontró un archivo ZIP en el mensaje")
def is_forbidden(path):
return (path.is_absolute() or
".." in path.parts or
path.suffix in FORBIDDEN_EXTENSIONS)
def zip_walk(zip_obj, strip_toplevel=True):
"""Itera sobre los archivos de un zip.
Args:
- zip_obj: un objeto zipfile.ZipFile abierto en modo lectura
- skip_toplevel: un booleano que indica si a los nombres de archivos se les
debe quitar el nombre de directorio común (si lo hubiese)
Yields:
- tuplas (nombre_archivo, zipinfo_object).
"""
zip_files = [pathlib.PurePath(f) for f in zip_obj.namelist()]
forbidden_files = [f for f in zip_files if is_forbidden(f)]
all_parents = set()
common_parent = pathlib.PurePath(".")
if not zip_files:
raise ErrorAlumno("archivo ZIP vacío")
if forbidden_files:
raise ErrorAlumno("no se permiten archivos con estas extensiones:\n\n • " +
"\n • ".join(f.name for f in forbidden_files))
for path in zip_files:
all_parents.update(path.parents)
if strip_toplevel and len(zip_files) > 1:
parents = {p.parts[0] for p in zip_files}
if len(parents) == 1:
common_parent = parents.pop()
for fname in zip_files:
if fname not in all_parents:
try:
inf = zip_obj.getinfo(fname.as_posix())
except KeyError:
pass
else:
yield (fname.relative_to(common_parent), inf)
class Moss:
"""Guarda código fuente del alumno.
"""
def __init__(self, pathobj, tp_id, padron, subj_date):
self._dest = pathobj / tp_id / id_cursada() / padron
shutil.rmtree(self._dest, ignore_errors=True)
self._dest.mkdir(parents=True)
self._date = subj_date # XXX(dato): verify RFC822
self._commit_message = f"New {tp_id} upload from {padron}"
def location(self):
"""Directorio donde se guardaron los archivos.
"""
return self._dest
def url(self):
short_rev = "git show -s --pretty=tformat:%h"
relative_dir = "git rev-parse --show-prefix"
return subprocess.check_output(
f'echo "{GITHUB_URL}/tree/$({short_rev})/$({relative_dir})"',
shell=True, encoding="utf-8", cwd=self._dest)
def save_data(self, relpath, contents):
"""Guarda un archivo si es código fuente.
Devuelve True si se guardó, False si se decidió no guardarlo.
"""
path = self._dest / relpath
path.parent.mkdir(parents=True, exist_ok=True)
path.write_bytes(contents)
return self._git(["add", relpath]) == 0
def flush(self):
"""Termina de guardar los archivos en el repositorio.
"""
self._git(["add", "--no-ignore-removal", "."])
self._git(["commit", "-m", self._commit_message, "--date", self._date])
self._git(["push", "--force-with-lease", "origin", ":"])
def _git(self, args):
subprocess.call(["git"] + args, cwd=self._dest)
def zip_datetime(info):
"""Gets a datetime.datetime from a ZipInfo object.
"""
return datetime.datetime(*info.date_time)
def send_reply(orig_msg, reply_text):
"""Envía una cadena de texto como respuesta a un correo recibido.
"""
if not OAUTH_REFRESH_TOKEN:
print("ENVIARÍA: {}".format(reply_text))
return
reply = email.message.Message(email.policy.default)
reply.set_payload(reply_text, "utf-8")
reply["From"] = "Corrector legacy <{}>".format(GMAIL_ACCOUNT)
reply["To"] = GMAIL_ACCOUNT
reply["Subject"] = "Re: " + orig_msg["Subject"]
reply["In-Reply-To"] = orig_msg["Message-ID"]
creds = get_oauth_credentials()
xoauth2_tok = "user=%s\1" "auth=Bearer %s\1\1" % (GMAIL_ACCOUNT,
creds.access_token)
xoauth2_b64 = base64.b64encode(xoauth2_tok.encode("ascii")).decode("ascii")
server = smtplib.SMTP("smtp.gmail.com", 587)
server.ehlo()
server.starttls()
server.ehlo() # Se necesita EHLO de nuevo tras STARTTLS.
server.docmd("AUTH", "XOAUTH2 " + xoauth2_b64)
server.send_message(reply)
server.close()
def get_oauth_credentials():
"""Refresca y devuelve nuestras credenciales OAuth.
"""
# N.B.: siempre re-generamos el token de acceso porque este script es
# stateless y no guarda las credenciales en ningún sitio. Todo bien con eso
# mientras no alcancemos el límite de refresh() de Google (pero no publican
# cuál es).
creds = oauth2client.client.OAuth2Credentials(
"", CLIENT_ID, CLIENT_SECRET, OAUTH_REFRESH_TOKEN,
datetime.datetime(2015, 1, 1),
"https://accounts.google.com/o/oauth2/token", "corrector/1.0")
creds.refresh(httplib2.Http())
return creds
##
if __name__ == "__main__":
sys.exit(main())
# vi:et:sw=2