summaryrefslogtreecommitdiff
path: root/endpoints.lisp
blob: 19be1250e4dea5289932f5a432f25f02aa71e863 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
;;;; endpoints.lisp -- http endpoints for dnd

(in-package :dnd)

(lzb:provision-app ()
  :title "Dungeons & Deadlines"
  :version "0.1.0"
  :content-type "text/html")

(defparameter +session-cookie-name+ "dnd-session")

;;; Endpoints that do not require a session:

(defendpoint* :get "/" () ()
  (redirect-to "/tavern-door"))

(defendpoint* :get "/tavern-door" ((name str)) ()
  (if name (doorkeeper :message (format nil "M'fraid I've n'er 'eard o' ~a." name))
      (doorkeeper)))

(defendpoint* :post "/tavern-door" () ()
  (with-plist ((name :name)) (lzb:request-body)
    (a:if-let ((hero (hero-known-as name)))
      (a:when-let ((sesh (new-sesh hero)))
	(lzb:set-response-cookie +session-cookie-name+ (session-id sesh)
				 :path "/" :domain "localhost")
	(redirect-to "/tavern"))
      (redirect-to (format nil "/tavern-door?name=~a" (quri:url-encode name))))))

(defendpoint* :get "/godess-shrine" () ()
  (godess-shrine))

(defendpoint* :post "/godess-shrine" () ()
  (with-plist ((name :name)) (lzb:request-body)
    (birth-from-the-goddess-loins name)
    (redirect-to "/tavern-door")))

;;; Endpoints that do require a session:

(defendpoint* :get "/tavern" () ()
  (with-hero-session (hero)
    (tavern hero)))

(defun str (string)
  "A String"
  string)

(defun redirect-to (location)
  "Set the lazybones response header and response code for redirecting to LOCATION.
This procedure will error if lazybones:*request* is not currently bound."
  (setf (lzb:response-header :location) location
	(lzb:response-code) "303"))

(defun current-session ()
  "Get the session associated with the current request. Will throw an
error if lazybones:*request* is not currently bound. It will return
NIL if there is no session for the current request.

I.e. It should be called within the scope of a request handler."
  (session-with-id (lzb:request-cookie +session-cookie-name+ )))

(defmacro with-hero-session ((hero &key session (redirect "/tavern-door")) &body body)
  (let ((session (or session (gensym "SESSION"))))
    `(a:if-let (,session (current-session))
       (let ((,hero (session-hero ,session)))
         ,@body)
       (redirect-to ,redirect))))