take out the "roles" setup
[rrq/hourglass.git] / manager / basic_login.lsp
1 ;;
2 ;; This script is written with the expectation that it is an embedded
3 ;; newlisp executable invked via .cgi links from within the
4 ;; subdirectory www
5 ;;
6 ;; Its (main-args 0) has a final path component X.cgi that links to
7 ;; this file as a packnl embedding that will use that X part of its
8 ;; name to determine th actual script.
9
10 (load "siteconfig.lsp")
11
12 (write-line 2 (string (date-value) " " (main-args)))
13 (unless (ends-with (main-args 0) ".cgi")
14   (if (exists file? (list (main-args 1)
15                           (string (main-args 1) ".lsp")))
16       (load $it)
17     (write-line 2 (string "Unknown command " (main-args 1))))
18   (exit 0))
19
20
21 ;; This script is executed in (protected) subdirectory www
22 (change-dir "..")
23
24 ;; Needs an HTTP_AUTHORIZATION environment variable
25 (when (empty? (setf AUTH (env "HTTP_AUTHORIZATION")))
26   (write-line 1 (read-file "tmpl/unauthorized.http"))
27   (exit 0))
28
29 ;; Must find that value in .htpasswd
30 (unless (ref (6 AUTH) (parse (read-file ".htpasswd") "\n"))
31   (write-line 1 (read-file "tmpl/unauthorized.http"))
32   (exit 0))
33
34 ;; Determine actual script name respecting given role, if any.
35 (define (role-script (ROLE "."))
36   (let ((CMD (and (regex "([^/]*).cgi$" (main-args 0) 0) $1)))
37     (if (= "." ROLE) (string CMD ".lsp") (format "%s/%s.lsp" ROLE CMD))))
38
39 (setf
40  REMOTE_USER (and (regex "([^:]+):" (base64-dec (6 AUTH)) 0) $1)
41  SCRIPT (role-script)
42  )
43 (env "REMOTE_USER" REMOTE_USER)
44 (env "ROLE" ROLE)
45
46 (unless (file? SCRIPT)
47   (write 1 "\nBroken.\n")
48   (exit 0))
49
50 (load SCRIPT)
51 (exit 0)