summaryrefslogtreecommitdiffstats
path: root/src/retrace/status.wsgi
blob: 50334772df0f05d99ec61b5c7cc1a99dd1454233 (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
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/python

from retrace import *

def application(environ, start_response):
    request = Request(environ)

    match = URL_PARSER.match(request.script_name)
    if not match:
        return response(start_response, "404 Not Found",
                        "Invalid URL")

    taskdir = "%s/%s" % (CONFIG["SaveDir"], match.group(1))

    if not os.path.isdir(taskdir):
        return response(start_response, "404 Not Found",
                        "There is no such task")

    pwdpath = "%s/password" % taskdir
    try:
        pwdfile = open(pwdpath, "r")
        pwd = pwdfile.read()
        pwdfile.close()
    except:
        return response(start_response, "500 Internal Server Error",
                        "Unable to verify password")

    if not "X-Task-Password" in request.headers or \
       request.headers["X-Task-Password"] != pwd:
        return response(start_response, "403 Forbidden",
                        "Invalid password")

    status = "PENDING"
    if os.path.isfile("%s/retrace_log" % taskdir):
        if os.path.isfile("%s/retrace_backtrace" % taskdir):
            status = "FINISHED_SUCCESS"
        else:
            status = "FINISHED_FAILURE"

    statusmsg = status
    try:
        statusfile = open("%s/status" % taskdir, "r")
        statusmsg = statusfile.read()
        statusfile.close()
    except:
        pass

    return response(start_response, "200 OK",
                    statusmsg, [("X-Task-Status", status)])