summaryrefslogtreecommitdiffstats
path: root/retrace/interface/status.wsgi
blob: eb153b05e00f17293c90731980692e75fa18706e (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
#!/usr/bin/python

import sys
sys.path = ["/usr/share/abrt-retrace"] + sys.path

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")

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

    if not os.path.isdir(taskdir):
        return response(start_response, "404 Not Found")

    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")

    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"

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