43 lines
1.2 KiB
Bash
43 lines
1.2 KiB
Bash
#!/bin/sh
|
|
|
|
if [ -z "$1" ]; then
|
|
# Week number since 1970 modulo 4
|
|
week=$(expr $(date +%s) / 604800 % 4)
|
|
else
|
|
week=$1
|
|
fi
|
|
|
|
current_week=$(date +%V)
|
|
next_week=$((current_week + 1))
|
|
if [ "$next_week" -gt 52 ]; then
|
|
next_week=1
|
|
fi
|
|
|
|
task_title="LeineLab putzen: KW$next_week"
|
|
|
|
case $week in
|
|
0)
|
|
/usr/bin/docker exec lab-signal-bot-lab-bot-1 \
|
|
python create_task.py "$task_title" 2 "in 7 days" \
|
|
--pad-template-url "https://pad.leinelab.org/leinelab-putzen-only-weekly"
|
|
;;
|
|
1)
|
|
/usr/bin/docker exec lab-signal-bot-lab-bot-1 \
|
|
python create_task.py "$task_title" 4 "in 7 days" \
|
|
--pad-template-url "https://pad.leinelab.org/leinelab-putzen-fortnightly"
|
|
;;
|
|
2)
|
|
/usr/bin/docker exec lab-signal-bot-lab-bot-1 \
|
|
python create_task.py "$task_title" 4 "in 7 days" \
|
|
--pad-template-url "https://pad.leinelab.org/leinelab-putzen-monthly"
|
|
;;
|
|
3)
|
|
/usr/bin/docker exec lab-signal-bot-lab-bot-1 \
|
|
python create_task.py "$task_title" 4 "in 7 days" \
|
|
--pad-template-url "https://pad.leinelab.org/leinelab-putzen-fortnightly"
|
|
;;
|
|
*)
|
|
echo "Invalid choice"
|
|
;;
|
|
esac
|