Get ntfy files from account

merge-requests/28/head
Bob Mottram 2022-08-19 10:15:37 +01:00
parent fa6275a915
commit 0fc4528b69
1 changed files with 15 additions and 2 deletions

View File

@ -118,8 +118,21 @@ function sendNotification {
# see https://ntfy.sh
# You will need to create these two files containing the ntfy
# service url and topic
ntfy_url_file=/home/${ADMIN_USERNAME}/.ntfy_url
ntfy_topic_file=/home/${ADMIN_USERNAME}/.ntfy_topic
ntfy_url_file=/home/${USERNAME}/.ntfy_url
ntfy_topic_file=/home/${USERNAME}/.ntfy_topic
# get ntfy settings from the account directory
epicyon_config_file=${epicyonInstallDir}/config.json
if [ -f "${epicyon_config_file}" ]; then
epicyon_domain=$(cat "$epicyon_config_file" | awk -F '"domain": "' '{print $2}' | awk -F '"' '{print $1}')
if [ "${epicyon_domain}" ]; then
epicyon_account_dir="${epicyonInstallDir}/accounts/${USERNAME}@${epicyon_domain}"
if [ -d "${epicyon_account_dir}" ]; then
ntfy_url_file=${epicyon_account_dir}/.ntfy_url
ntfy_topic_file=${epicyon_account_dir}/.ntfy_topic
fi
fi
fi
if [ "$MESSAGE" ]; then
if [ -f "$ntfy_topic_file" ]; then