summaryrefslogtreecommitdiffstats
path: root/src/retrace/backtrace.wsgi
blob: d6a8686ad141bde2467245582a8220a748621bb8 (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
#!/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")

    btpath = "%s/retrace_backtrace" % taskdir
    if not os.path.isfile(btpath):
        return response(start_response, "404 Not Found")

    try:
        btfile = open(btpath, "r")
        output = btfile.read()
        btfile.close()
    except:
        return response(start_response, "500 Internal Server Error", "Unable to read backtrace file at server")

    return response(start_response, "200 OK", output)