diff --git a/scripts/update_birdnet_snippets.sh b/scripts/update_birdnet_snippets.sh index 074ee9d..f6e7360 100755 --- a/scripts/update_birdnet_snippets.sh +++ b/scripts/update_birdnet_snippets.sh @@ -1,14 +1,11 @@ #!/usr/bin/env bash # Update BirdNET-Pi -source /etc/birdnet/birdnet.conf trap 'exit 1' SIGINT SIGHUP USER=$(awk -F: '/1000/ {print $1}' /etc/passwd) HOME=$(awk -F: '/1000/ {print $6}' /etc/passwd) my_dir=$HOME/BirdNET-Pi/scripts # Sets proper permissions and ownership -#sudo -E chown -R $USER:$USER $HOME/* -#sudo chmod -R g+wr $HOME/* find $HOME/Bird* -type f ! -perm -g+wr -exec chmod g+wr {} + 2>/dev/null find $HOME/Bird* -not -user $USER -execdir sudo -E chown $USER:$USER {} \+ chmod 666 ~/BirdNET-Pi/scripts/*.txt @@ -18,240 +15,48 @@ find $HOME/BirdNET-Pi -path "$HOME/BirdNET-Pi/birdnet" -prune -o -type f ! -perm # remove world-writable perms chmod -R o-w ~/BirdNET-Pi/templates/* +APT_UPDATED=0 +PIP_UPDATED=0 -# Create blank sitename as it's optional. First time install will use $HOSTNAME. -if ! grep SITE_NAME /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "SITE_NAME=\"\"" >> /etc/birdnet/birdnet.conf -fi +# helpers +sudo_with_user () { + set -x + sudo -u $USER "$@" + set +x +} -if ! grep PRIVACY_THRESHOLD /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "PRIVACY_THRESHOLD=0" >> /etc/birdnet/birdnet.conf - git -C $HOME/BirdNET-Pi rm $my_dir/privacy_server.py -fi -if [ -f $my_dir/privacy_server ] || [ -L /usr/local/bin/privacy_server.py ];then - rm -f $my_dir/privacy_server.py - rm -f /usr/local/bin/privacy_server.py -fi +ensure_apt_updated () { + [[ $APT_UPDATED != "UPDATED" ]] && apt-get update && APT_UPDATED="UPDATED" +} -# Adds python virtual-env to the python systemd services -if ! grep 'BirdNET-Pi/birdnet/' $HOME/BirdNET-Pi/templates/birdnet_server.service &>/dev/null || ! grep 'BirdNET-Pi/birdnet' $HOME/BirdNET-Pi/templates/chart_viewer.service &>/dev/null;then - sudo -E sed -i "s|ExecStart=.*|ExecStart=$HOME/BirdNET-Pi/birdnet/bin/python3 /usr/local/bin/server.py|" ~/BirdNET-Pi/templates/birdnet_server.service - sudo -E sed -i "s|ExecStart=.*|ExecStart=$HOME/BirdNET-Pi/birdnet/bin/python3 /usr/local/bin/daily_plot.py|" ~/BirdNET-Pi/templates/chart_viewer.service - sudo systemctl daemon-reload && restart_services.sh -fi +ensure_pip_updated () { + [[ $PIP_UPDATED != "UPDATED" ]] && sudo_with_user $HOME/BirdNET-Pi/birdnet/bin/pip3 install -U pip && PIP_UPDATED="UPDATED" +} -if grep privacy ~/BirdNET-Pi/templates/birdnet_server.service &>/dev/null;then - sudo -E sed -i 's/privacy_server.py/server.py/g' \ - ~/BirdNET-Pi/templates/birdnet_server.service - sudo systemctl daemon-reload - restart_services.sh -fi -if ! grep APPRISE_NOTIFICATION_TITLE /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "APPRISE_NOTIFICATION_TITLE=\"New BirdNET-Pi Detection\"" >> /etc/birdnet/birdnet.conf -fi -if ! grep APPRISE_NOTIFICATION_BODY /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "APPRISE_NOTIFICATION_BODY=\"A \$sciname \$comname was just detected with a confidence of \$confidence\"" >> /etc/birdnet/birdnet.conf -fi -if ! grep APPRISE_NOTIFY_EACH_DETECTION /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "APPRISE_NOTIFY_EACH_DETECTION=0 " >> /etc/birdnet/birdnet.conf -fi -if ! grep APPRISE_NOTIFY_NEW_SPECIES /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "APPRISE_NOTIFY_NEW_SPECIES=0 " >> /etc/birdnet/birdnet.conf -fi -if ! grep APPRISE_NOTIFY_NEW_SPECIES_EACH_DAY /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "APPRISE_NOTIFY_NEW_SPECIES_EACH_DAY=0 " >> /etc/birdnet/birdnet.conf -fi -if ! grep APPRISE_MINIMUM_SECONDS_BETWEEN_NOTIFICATIONS_PER_SPECIES /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "APPRISE_MINIMUM_SECONDS_BETWEEN_NOTIFICATIONS_PER_SPECIES=0 " >> /etc/birdnet/birdnet.conf -fi - -# If the config does not contain the DATABASE_LANG setting, we'll want to add it. -# Defaults to not-selected, which config.php will know to render as a language option. -# The user can then select a language in the web interface and update with that. -if ! grep DATABASE_LANG /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "DATABASE_LANG=not-selected" >> /etc/birdnet/birdnet.conf -fi - -apprise_installation_status=$(~/BirdNET-Pi/birdnet/bin/python3 -c 'import pkgutil; print("installed" if pkgutil.find_loader("apprise") else "not installed")') -if [[ "$apprise_installation_status" = "not installed" ]];then - $HOME/BirdNET-Pi/birdnet/bin/pip3 install -U pip - $HOME/BirdNET-Pi/birdnet/bin/pip3 install apprise==1.2.1 -fi -[ -f $HOME/BirdNET-Pi/apprise.txt ] || sudo -E -ucaddy touch $HOME/BirdNET-Pi/apprise.txt -if ! which lsof &>/dev/null;then - sudo apt update && sudo apt -y install lsof -fi -if ! grep RTSP_STREAM /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "RTSP_STREAM=" >> /etc/birdnet/birdnet.conf -fi -if grep bash $HOME/BirdNET-Pi/templates/web_terminal.service &>/dev/null;then - sudo sed -i '/User/d;s/bash/login/g' $HOME/BirdNET-Pi/templates/web_terminal.service - sudo systemctl daemon-reload - sudo systemctl restart web_terminal.service -fi -[ -L ~/BirdSongs/Extracted/static ] || ln -sf ~/BirdNET-Pi/homepage/static ~/BirdSongs/Extracted -if ! grep FLICKR_API_KEY /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "FLICKR_API_KEY=" >> /etc/birdnet/birdnet.conf -fi -if systemctl list-unit-files pushed_notifications.service &>/dev/null;then - sudo systemctl disable --now pushed_notifications.service - sudo rm -f /usr/lib/systemd/system/pushed_notifications.service - sudo rm $HOME/BirdNET-Pi/templates/pushed_notifications.service -fi - -if [ ! -f $HOME/BirdNET-Pi/model/labels.txt ];then - [ $DATABASE_LANG == 'not-selected' ] && DATABASE_LANG=en - $my_dir/install_language_label.sh -l $DATABASE_LANG \ - && logger "[$0] Installed new language label file for '$DATABASE_LANG'"; -fi - -if ! grep FLICKR_FILTER_EMAIL /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "FLICKR_FILTER_EMAIL=" >> /etc/birdnet/birdnet.conf -fi - -pytest_installation_status=$(~/BirdNET-Pi/birdnet/bin/python3 -c 'import pkgutil; print("installed" if pkgutil.find_loader("pytest") else "not installed")') -if [[ "$pytest_installation_status" = "not installed" ]];then - $HOME/BirdNET-Pi/birdnet/bin/pip3 install -U pip - $HOME/BirdNET-Pi/birdnet/bin/pip3 install pytest==7.1.2 pytest-mock==3.7.0 -fi - -[ -L ~/BirdSongs/Extracted/weekly_report.php ] || ln -sf ~/BirdNET-Pi/scripts/weekly_report.php ~/BirdSongs/Extracted - -if ! grep weekly_report /etc/crontab &>/dev/null;then - sed "s/\$USER/$USER/g" $HOME/BirdNET-Pi/templates/weekly_report.cron | sudo tee -a /etc/crontab -fi -if ! grep APPRISE_WEEKLY_REPORT /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "APPRISE_WEEKLY_REPORT=1" >> /etc/birdnet/birdnet.conf -fi - -if ! grep SILENCE_UPDATE_INDICATOR /etc/birdnet/birdnet.conf &>/dev/null;then - sudo -u$USER echo "SILENCE_UPDATE_INDICATOR=0" >> /etc/birdnet/birdnet.conf -fi - -if ! grep '\-\-browser.gatherUsageStats false' $HOME/BirdNET-Pi/templates/birdnet_stats.service &>/dev/null ;then - sudo -E sed -i "s|ExecStart=.*|ExecStart=$HOME/BirdNET-Pi/birdnet/bin/streamlit run $HOME/BirdNET-Pi/scripts/plotly_streamlit.py --browser.gatherUsageStats false --server.address localhost --server.baseUrlPath \"/stats\"|" $HOME/BirdNET-Pi/templates/birdnet_stats.service - sudo systemctl daemon-reload && restart_services.sh -fi - -# Make IceCast2 a little more secure -sudo sed -i.bak -e 's|