summaryrefslogtreecommitdiff
path: root/kpov_judge/rm_task.py
blob: 0856a5d3067f84f595322e9a6db75c5bc212331f (plain)
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
#!/usr/bin/env python

import pymongo
from bson.son import SON
from bson import Binary
import sys
import inspect
import kpov_util
import settings
import glob
import os


if __name__ == '__main__':
    if len(sys.argv) < 2:
        print("Usage: {0} [task_name]".format(sys.argv[0]))
        exit(1)
    task_id = sys.argv[1]
    db = pymongo.MongoClient(settings.DB_HOST).kpov
    try:
        db.authenticate(settings.USERNAME, settings.PASSWORD)
    except Exception as e:
        print("Not authenticated:"+str(e))
        #no auth or auth config?
    db.computers_meta.remove({'task_id': task_id})
    db.networks.remove({'task_id': task_id})
    db.task_checkers.remove({'task_id': task_id})
    db.tasks.remove({'task_id': task_id})
    db.prepare_disks.remove({'task_id': task_id})
    db.student_computers.remove({'task_id': task_id})
    db.results.remove({'task_id': task_id})
    db.gen_params.remove({'task_id': task_id})
    db.task_params_meta.remove({'task_id': task_id})
    db.task_params.remove({'task_id': task_id})
    db.task_instructions.remove({'task_id': task_id})
    db.howtos.remove({'task_id': task_id})
    db.howto_images.remove({'task_id': task_id})