1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(makanek): run praesenzlehre-berlin.de liveticker

This commit is contained in:
2021-02-18 13:50:13 +01:00
parent 8302b1d9fb
commit 8b5bfd236d

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }: { lib, config, pkgs, ... }:
let let
inherit (import <niveum/lib>) kieran; inherit (import <niveum/lib>) kieran;
in in
@@ -64,4 +64,31 @@ in
}; };
environment.systemPackages = [ pkgs.vim pkgs.git pkgs.tmux ]; environment.systemPackages = [ pkgs.vim pkgs.git pkgs.tmux ];
systemd.services.praesenzlehre = {
description = "Live Ticker zu praesenzlehre-berlin.de";
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = [ pkgs.curl pkgs.pup ];
environment.BOT_TOKEN = lib.strings.fileContents <system-secrets/telegram/kmein.token>;
script = ''
notify() {
curl -sSL -X POST -H 'Content-Type: application/json' \
-d "{\"chat_id\": \"@praesenzlehre_berlin\", \"text\": \"$*\"}" \
"https://api.telegram.org/bot$BOT_TOKEN/sendMessage"
}
count=0
while true; do
new_count="$(curl -sSL https://praesenzlehre-berlin.org/ | pup '.dk-speakout-signature-count span text{}')"
if [ "$new_count" -gt "$count" ]; then
echo "$new_count"
notify "$new_count Unterzeichner:innen!"
count="$new_count"
fi
sleep 300
done
'';
};
} }