aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/login.lisp
diff options
context:
space:
mode:
authorGrant Shangreaux <grant@unabridgedsoftware.com>2024-05-31 13:39:05 -0500
committerGrant Shangreaux <grant@unabridgedsoftware.com>2024-05-31 13:39:05 -0500
commit9b51a908448c23eff673934f023d247a6c47519d (patch)
tree89384c75ed8d2b8add927b1584267847e6ab0ea4 /site/login.lisp
parent2832a7c9e75400e36ca12a028ffcbeece44c8216 (diff)
Add: initial login form and authentication
Diffstat (limited to 'site/login.lisp')
-rw-r--r--site/login.lisp28
1 files changed, 27 insertions, 1 deletions
diff --git a/site/login.lisp b/site/login.lisp
index afbd80e..66d20ff 100644
--- a/site/login.lisp
+++ b/site/login.lisp
@@ -1,10 +1,36 @@
(in-package #:vampire)
(defun login-page ()
- "login")
+ (with-html-string
+ (:div (:h1 "I vant to suck your blood")
+ (:form :method "POST" :action "/login"
+ (:input :placeholder "Name" :name "name")
+ (:br)
+ (:input :placeholder "Password" :type "password" :name "password")
+ (:br)
+ (:button :type "submit" "Click to Login")))
+ (:a :href "/new-account" "Come to the Dark Side")))
(wknd:defendpoint login
:get :route "login"
:returns "text/html"
:handle (login-page))
+(wknd:defendpoint login-user
+ :post :route "login"
+ :parameters
+ (name string)
+ (password string)
+ :properties
+ (user user)
+ :authenticate (authenticate-login-user name password)
+ :handle (wknd:endpoint-redirect 'home))
+
+(defun authenticate-login-user (name password)
+ (do>
+ found-user :when= (user-with-name name)
+ :when (equal (user-pwhash found-user)
+ (hash-string password (user-pwsalt found-user)))
+ session := (db:with-transaction () (make-instance 'session :user found-user))
+ (wknd:set-cookie +session-cookie+ :value (key session))))
+