Compare commits
No commits in common. "c7afa8eaab0a61781cafdd7adc6105bb0b70118b" and "a1a26e5df41f218bf74a8a1ce241dfdd215c7bde" have entirely different histories.
c7afa8eaab
...
a1a26e5df4
4 changed files with 36 additions and 27 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -173,6 +173,3 @@ dist
|
|||
|
||||
# Finder (MacOS) folder config
|
||||
.DS_Store
|
||||
|
||||
.direnv
|
||||
.envrc
|
||||
|
|
|
|||
52
bot.lisp
52
bot.lisp
|
|
@ -1,14 +1,11 @@
|
|||
(in-package :cl-user)
|
||||
(defpackage :birthday-boy
|
||||
(:use :cl)
|
||||
(:export main*))
|
||||
(in-package :birthday-boy)
|
||||
|
||||
;; (defpackage :birthday-boy
|
||||
;; (:use :cl)
|
||||
;; (:export main*))
|
||||
;; (in-package :birthday-boy)
|
||||
(load (sb-ext:posix-getenv "ASDF"))
|
||||
(asdf:load-systems :dexador :local-time :jonathan :cl-yaml :cl-dotenv)
|
||||
;;
|
||||
(defvar *birthdays* nil)
|
||||
(defvar *config* nil)
|
||||
;; (.env:load-env (merge-pathnames ".env"))
|
||||
;; (ql:quickload '(:dexador :cl-dotenv :local-time :jonathan))
|
||||
|
||||
|
|
@ -31,7 +28,7 @@
|
|||
|
||||
(defun put-json-content-auth (uri json-content)
|
||||
(dex:put uri
|
||||
:headers `((:|Authorization| . ,(format nil "Bearer ~A" (gethash "bot_access_token" *config*)) )
|
||||
:headers `((:|Authorization| . ,(format nil "Bearer ~A" (uiop:getenv "BOT_ACCESS_TOKEN")) )
|
||||
(:content-type . "application/json"))
|
||||
:content (jojo:to-json json-content)))
|
||||
|
||||
|
|
@ -41,36 +38,45 @@
|
|||
:content (jojo:to-json json-content)))
|
||||
(defun post-json-content-auth (uri json-content)
|
||||
(dex:post uri
|
||||
:headers `((:|Authorization| . ,(format nil "Bearer ~A" (gethash "bot_access_token" *config*)) )
|
||||
:headers `((:|Authorization| . ,(format nil "Bearer ~A" (uiop:getenv "BOT_ACCESS_TOKEN")) )
|
||||
(:content-type . "application/json"))
|
||||
:content (jojo:to-json json-content)))
|
||||
|
||||
|
||||
(defun make-homeserver-endpoint (endpoint)
|
||||
(format nil "~a~a" (gethash "homeserver_url" *config*) endpoint))
|
||||
(format nil "~a~a" (uiop:getenv "HOMESERVER_URL") endpoint))
|
||||
|
||||
(defun get-access-token ()
|
||||
(let ((res
|
||||
(jojo:parse
|
||||
(post-json-content (make-homeserver-endpoint "/_matrix/client/v3/login" )
|
||||
(list :|identifier| (list :|type| "m.id.user" :|user| (gethash "bot_name" *config*))
|
||||
(list :|identifier| (list :|type| "m.id.user" :|user| (uiop:getenv "BOT_NAME"))
|
||||
:|type| "m.login.password"
|
||||
:|password| (gethash "bot_pw" *config*))))))
|
||||
:|password| (uiop:getenv "BOT_PW"))))))
|
||||
(values
|
||||
(getf res :|access_token|)
|
||||
(getf res :|device_id|))))
|
||||
|
||||
(defun message (msg &optional (room-id "GENERAL2_ROOM_ID"))
|
||||
(put-json-content-auth
|
||||
;; (format nil "https://matrix.groupchattt.page/_matrix/client/v3/rooms/~a/send/m.room.message/~a"
|
||||
;; (uiop:getenv room-id)
|
||||
;; (make-txn-id))
|
||||
(make-homeserver-endpoint (format nil "/_matrix/client/v3/rooms/~a/send/m.room.message/~a"
|
||||
(gethash room-id *config*)
|
||||
(uiop:getenv room-id)
|
||||
(make-txn-id)))
|
||||
(list
|
||||
:|msgtype| "m.text"
|
||||
:|body| msg)))
|
||||
|
||||
|
||||
;; (defun request-join (room)
|
||||
;; (post-json-content-auth
|
||||
;; (make-homeserver-endpoint (format nil "/_matrix/client/v3/knock/~A" room))
|
||||
;; (list
|
||||
;; :|reason| "for birthday bot")))
|
||||
|
||||
(defvar *birthdays* nil)
|
||||
|
||||
|
||||
(defun is-today (tstamp)
|
||||
|
|
@ -87,7 +93,7 @@
|
|||
(is-today (local-time:encode-timestamp 0 0 0 0 day month 1900)))
|
||||
|
||||
(defun collect-bdays ()
|
||||
(loop for person in *birthdays*
|
||||
(loop for person in (gethash "birthdays" *birthdays*)
|
||||
when (is-today* (gethash "day" person) (gethash "month" person))
|
||||
collect person))
|
||||
|
||||
|
|
@ -96,15 +102,16 @@
|
|||
(format nil "Hey hey hey, its the birthday boy, and I am pleased to announce that it is ~A's today. Congratulation, I love you." person))
|
||||
|
||||
(defun main ()
|
||||
;; (.env:load-env env-file)
|
||||
(dolist (person (collect-bdays))
|
||||
(message (make-bday-message (gethash "person" person)) "ROOM_ID")))
|
||||
|
||||
(defun check-required-env-vars ()
|
||||
(let ((required-vars '("bot_name" "bot_pw" "bot_access_token" "homeserver_url" "room_id"))
|
||||
(let ((required-vars '("BOT_NAME" "BOT_PW" "BOT_ACCESS_TOKEN" "HOMESERVER_URL" "ROOM_ID"))
|
||||
(missing-vars '()))
|
||||
|
||||
(dolist (var required-vars)
|
||||
(unless (gethash var *config*)
|
||||
(unless (uiop:getenv var)
|
||||
(push var missing-vars)))
|
||||
|
||||
(when missing-vars
|
||||
|
|
@ -116,12 +123,13 @@
|
|||
t))
|
||||
(defun main* ()
|
||||
(let* ((args sb-ext:*posix-argv*)
|
||||
(config-file (or (second args) "./config.yml")))
|
||||
(format t "Using config file: ~A~%" config-file)
|
||||
(unwind-protect
|
||||
(let* ((base-config (cl-yaml:parse (pathname config-file)))
|
||||
(*birthdays* (gethash "birthdays" base-config))
|
||||
(*config* (gethash "config" base-config)))
|
||||
(env-file (or (second args) #P".env"))
|
||||
(birthdays-file (or (third args) "./birthdays.yml")))
|
||||
(format t "Using env file: ~A~%" env-file)
|
||||
(format t "Using birthdays file: ~A~%" birthdays-file)
|
||||
(.env:load-env env-file)
|
||||
(check-required-env-vars)
|
||||
(unwind-protect
|
||||
(let ((*birthdays* (cl-yaml:parse (pathname birthdays-file))))
|
||||
(main))
|
||||
(sb-ext:exit :code 0))))
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@
|
|||
|
||||
buildPhase = ''
|
||||
${sbcl'}/bin/sbcl --load ./bot.lisp \
|
||||
--eval '(sb-ext:save-lisp-and-die #P"birthday-boy" :toplevel #'"'"'birthday-boy:main* :executable t)'
|
||||
--eval '(sb-ext:save-lisp-and-die #P"birthday-boy" :toplevel #'"'"'main* :executable t)'
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
echo "#!/usr/bin/env sh" >> $out/bin/birthday-boy
|
||||
echo "LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:${
|
||||
pkgs.lib.makeLibraryPath [ pkgs.openssl pkgs.libyaml ]
|
||||
} $out/bin/_birthday-boy \$1" >> $out/bin/birthday-boy
|
||||
} $out/bin/_birthday-boy \$1 \$2" >> $out/bin/birthday-boy
|
||||
|
||||
chmod +x $out/bin/birthday-boy
|
||||
'';
|
||||
|
|
|
|||
4
run.sh
Executable file
4
run.sh
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/env sh
|
||||
|
||||
export $(grep -v '^#' ${1:-.env} | xargs -d '\n')
|
||||
$out/bin/_birthday-boy
|
||||
Loading…
Add table
Reference in a new issue