Herjar / radarr_sonarr_watchmon

GNU General Public License v3.0
47 stars 15 forks source link

Authentication question #16

Open niawag opened 1 year ago

niawag commented 1 year ago

Hi Herjar and thanks a lot for this great tool! I've been using it from a bit of time with crontab and almost forgot about it, as I was testing it again I was told that the authentication was maybe out of date. I authenticated once again and got it working easily but I didn't know that it was supposed to happen. Do you know how long the authentication is supposed to last ? Is there an "official way" to get warned if the authentication is out of date ? (I can tinker a crontab way to get warned but if there is an official one, it might work better) Keep up the good work!

niawag commented 1 year ago

Here is my bash tinkering, hope it may help others:

#!/bin/bash
/usr/bin/python3 /path_to/radarr_sonarr_watchmon.py > /path_to/radarr_sonarr_watchmon.log 2>&1
if [ $? -ne 0 ]
then
    err=$(cat /path_to/radarr_sonarr_watchmon.log | grep -i error)
    /path_to/telegram.sh Servarr "*radarr_sonarr_watchmon ERROR*  $err" #using telegram bot to get the notification, could be other notification service
fi
Herjar commented 1 month ago

There is no official way to get warned, but I like what you are doing here. Thank you. I can add your bash script, or do you want to do a pull request?

niawag commented 1 month ago

Thanks, you can add it no problem !