summaryrefslogtreecommitdiff
path: root/main.lisp
diff options
context:
space:
mode:
authorMatthias Benkard <code@mail.matthias.benkard.de>2009-10-11 13:32:38 +0200
committerMatthias Benkard <code@mail.matthias.benkard.de>2009-10-11 13:32:38 +0200
commite12c4d0d4f439b401a03908b1aa94bb0675a78bf (patch)
tree6a7a627bacabab280e8045d1109af6043bce4f19 /main.lisp
parent8945a307dea0fb6ed7f66b819b857c8dce6943ad (diff)
Make the environment variable handling code more portable.
Ignore-this: 86d0d724d12f7fe9d230c52a4f225675 darcs-hash:65849172dae755f3a2fbd529fb9c002b1d649afd
Diffstat (limited to 'main.lisp')
-rw-r--r--main.lisp45
1 files changed, 19 insertions, 26 deletions
diff --git a/main.lisp b/main.lisp
index 1afaf39..b0e8274 100644
--- a/main.lisp
+++ b/main.lisp
@@ -26,10 +26,9 @@
(defun call-with-initialised-journal (func)
(let* ((*site* (if (file-exists-p #p"/home/mulk") :mst-plus :nfs.net))
(*debugging-p* (eq *site* :mst-plus))
- (*http-env* (http-get-env-vars))
- (*subpath-query* (subseq (gethash "REQUEST_URI" *http-env*)
+ (*subpath-query* (subseq (http-getenv "REQUEST_URI")
(length (ecase *site*
- (:mst-plus (gethash "SCRIPT_NAME" *http-env*))
+ (:mst-plus (http-getenv "SCRIPT_NAME"))
(:nfs.net "/journal")))))
(*subpath-string* (subseq *subpath-query*
0
@@ -47,31 +46,27 @@
((string= "atom" (car (last *subpath*))) :view-atom-entry)
((string= "rebuild" (car (last *subpath*))) :rebuild)
(t nil))))
- (*query* #+clisp (if (eq *action* :view-atom-entry)
- nil
- (mapcan #'(lambda (param)
- (list (keywordify param)
- (http-query-parameter param)))
- (http-query-parameter-list)))
- #-clisp '())
+ (*query* (if (eq *action* :view-atom-entry)
+ nil
+ (mapcan #'(lambda (param)
+ (list (keywordify param)
+ (http-query-parameter param)))
+ (http-query-parameter-list))) '())
(*post-number* (parse-integer (or (first *subpath*)
(getf *query* :id ""))
:junk-allowed t #|| :radix 12 ||#))
- (*method* (keywordify (gethash "REQUEST_METHOD" *http-env*)))
- (*if-modified-since* #+clisp (ext:getenv "HTTP_IF_MODIFIED_SINCE")
- #-clisp nil)
- (*wsse* #+clisp (ext:getenv "HTTP_X_WSSE")
- #-clisp nil)
+ (*method* (keywordify (http-getenv "REQUEST_METHOD")))
+ (*if-modified-since* (http-getenv "HTTP_IF_MODIFIED_SINCE"))
+ (*wsse* (http-getenv "HTTP_X_WSSE"))
(*script-filename* (pathname-as-file
- (or (gethash "SCRIPT_FILENAME" *http-env*)
+ (or (http-getenv "SCRIPT_FILENAME")
"/home/mulk/Dokumente/Projekte/Mulkblog/journal.cgi")))
(*script-dir* (make-pathname
:directory (pathname-directory *script-filename*)))
(*site-root* (ecase *site*
(:mst-plus *script-dir*)
(:nfs.net
- #+clisp (format nil "~A/" (ext:getenv "NFSN_SITE_ROOT"))
- #-clisp (error "Don't know where to look for stuff."))))
+ (format nil "~A/" (http-getenv "NFSN_SITE_ROOT")))))
(*data-dir* (ecase *site*
(:mst-plus *script-dir*)
(:nfs.net (merge-pathnames #p"protected/journal/"
@@ -185,12 +180,12 @@
:email (getf *query* :email)
:website (getf *query* :website)
:body (getf *query* :comment-body)
- :submitter-ip (gethash "REMOTE_ADDR" *http-env*)
- :submitter-user-agent (gethash "HTTP_USER_AGENT" *http-env*))))
+ :submitter-ip (http-getenv "REMOTE_ADDR")
+ :submitter-user-agent (http-getenv "HTTP_USER_AGENT"))))
(push comment (comments-about entry))
(with-slots (spam-p) comment
(setq spam-p (detect-spam comment
- :referrer (gethash "HTTP_REFERER" *http-env*)))
+ :referrer (http-getenv "HTTP_REFERER")))
(when spam-p
(push (format nil
"<p>Ihr Kommentar wurde als ~
@@ -247,15 +242,15 @@
:title (getf *query* :title)
:excerpt (getf *query* :excerpt)
:url (getf *query* :url)
- :submitter-ip (gethash "REMOTE_ADDR" *http-env*)
- :submitter-user-agent (gethash "HTTP_USER_AGENT" *http-env*))))
+ :submitter-ip (http-getenv "REMOTE_ADDR")
+ :submitter-user-agent (http-getenv "HTTP_USER_AGENT"))))
(http-send-headers "application/atom+xml; charset=UTF-8")
(cond
((getf *query* :url)
(push trackback (trackbacks-about entry))
(with-slots (spam-p) trackback
(setq spam-p (detect-spam trackback
- :referrer (gethash "HTTP_REFERER" *http-env*))))
+ :referrer (http-getenv "HTTP_REFERER"))))
(update-records-from-instance trackback)
(update-records-from-instance entry)
(unless (spamp trackback)
@@ -344,8 +339,6 @@
#+clisp
(defun cl-user::script-main (&key admin-mode)
- (dolist (env-var '("HTTP_CACHE_CONTROL" "HTTP_IF_MODIFIED_SINCE"))
- (pushnew env-var http::*http-env-vars*))
(http:http-init)
(setq cffi:*default-foreign-encoding* :iso-8859-15)
(handler-bind