kaptchapelo/kaptchapelo.lisp

116 lines
4.5 KiB
Common Lisp
Raw Normal View History

2023-08-06 00:07:04 -05:00
;;; Copyright 2023, Jaidyn Ann <jadedctrl@posteo.at>
;;;
;;; This program is free software: you can redistribute it and/or
2023-08-08 15:01:19 -05:00
;;; modify it under the terms of the GNU Affero General Public License
;;; as published by the Free Software Foundation, either version 3 of
2023-08-06 00:07:04 -05:00
;;; the License, or (at your option) any later version.
;;;
;;; This program is distributed in the hope that it will be useful,
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2023-08-08 15:01:19 -05:00
;;; GNU Affero General Public License for more details.
2023-08-06 00:07:04 -05:00
;;;
2023-08-08 15:01:19 -05:00
;;; You should have received a copy of the GNU Affero General Public License
2023-08-06 00:07:04 -05:00
;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
(defpackage #:kaptchapelo
(:use #:cl)
(:export :start-server))
(in-package #:kaptchapelo)
(defun byte-array-to-hex-string (simple-array)
"Given an array of bytes (integers), return an equivalent string in hex."
(string-downcase
(reduce #'str:concat
(loop for byte across simple-array
collect (format nil "~2,'0X" byte)))))
(defun random-file (directory &key (file-ext ""))
2023-08-08 15:01:19 -05:00
"Select a random file from the given DIRECTORY of a specific FILE-EXTension."
(alexandria:random-elt
(directory (str:concat (format nil "~A" directory)
"/*"
(if (not (str:emptyp file-ext))
(str:concat "." file-ext)
"")))))
(defun new-captcha-json (captcha-image-uri captcha-text-file)
2023-08-08 15:01:19 -05:00
"Create a Kocaptcha-compatibile captcha challenge in JSON-format."
2023-08-06 00:07:04 -05:00
(yason:with-output-to-string* ()
(yason:encode-plist
(list "md5" (byte-array-to-hex-string captcha-text-file)
"url" captcha-image-uri
2023-08-08 15:01:19 -05:00
;; I dont know what Kocaptchas token does! :P
"token" "This_isnt_actually_used_lol"))))
2023-08-06 00:07:04 -05:00
(defun new-captcha-response (captcha-dir)
2023-08-08 15:01:19 -05:00
"Create a Clack HTTP response with a new captcha."
(let* ((captcha-txt-file (random-file captcha-dir :file-ext "txt"))
(captcha-img-file (str:concat (pathname-name captcha-txt-file) ".png"))
(captcha-md5-str (byte-array-to-hex-string
(md5:md5sum-file captcha-txt-file))))
(list 201 '(:content-type "application/json")
(list (new-captcha-json (str:concat "/captcha/" captcha-img-file)
captcha-md5-str)))))
2023-08-06 00:07:04 -05:00
2023-08-08 14:34:49 -05:00
(defun image-response (request-uri captcha-dir)
2023-08-08 15:01:19 -05:00
"Given a /captcha/ REQUEST-URI and the CAPTCHA-DIR where images can be found,
make a Clack HTTP response that serves the appropriate image."
2023-08-08 14:34:49 -05:00
(let ((image-path (str:replace-first "/captcha/" (format nil "~A" captcha-dir) request-uri)))
2023-08-08 15:01:19 -05:00
(list 201 '(:content-type "image/png")
(pathname image-path))))
2023-08-08 14:34:49 -05:00
2023-08-06 00:07:04 -05:00
2023-08-08 14:34:49 -05:00
(defun index-response ()
2023-08-08 15:01:19 -05:00
"Return a friendly “salutations” Clack-response for those visting the root-page."
'(201 (:content-type "text/plain")
("Youve installed Kaptĉapelo; good work! If youd like a captcha challenge, visit /new !")))
2023-08-06 00:07:04 -05:00
(defun 404-response ()
2023-08-08 15:01:19 -05:00
"Create a 404-comlpaining HTTP Clack-response."
2023-08-06 00:07:04 -05:00
'(404 (:content-type "text/plain") ("No such page.")))
(defun server (env captcha-dir)
2023-08-08 15:01:19 -05:00
"The heart of the server; returns requests for Clack."
2023-08-06 00:07:04 -05:00
(let* ((uri (quri:uri (getf env :request-uri)))
2023-08-08 15:01:19 -05:00
(uri-path (quri:uri-path uri)))
2023-08-08 14:34:49 -05:00
(format *error-output* "~A" uri-path)
2023-08-08 15:01:19 -05:00
(cond
;; Create a new captcha at /new
((string= uri-path "/new")
(new-captcha-response captcha-dir))
;; For lost souls visiting /[index.html], say “hi.”
((or (string= uri-path "/")
(string= uri-path "/index.html"))
(index-response))
;; At /captcha/*.png, server the given image.
((and (str:starts-with? "/captcha/" uri-path)
(str:ends-with? ".png" uri-path))
(image-response uri-path captcha-dir))
;; Otherwise… IDK, 404! ¯\_(ツ)_/¯
('t
(404-response)))))
2023-08-06 00:07:04 -05:00
2023-08-08 16:46:20 -05:00
(defun start-server (&key (address "0.0.0.0") (port 5001) (background 't)
(captcha-directory #p"captcha/"))
2023-08-08 15:01:19 -05:00
"Start the Kaptchapelo server, which takes captcha challenges from the given
CAPTCHA-DIRECTORY. Challenges are made up of two files:
* A challenge PNG file (ex. bird.png)
* An answer TXT file (ex. bird.txt)
Note that the The answer text-file should not contain a trailing newline."
2023-08-06 00:07:04 -05:00
(clack:clackup
(lambda (env)
2023-08-08 14:34:49 -05:00
(funcall #'server env captcha-directory))
:address address
2023-08-08 16:46:20 -05:00
:port port
:use-thread background))