From 021df3d9ec408e95aa76c574f8fbca8a3d076759 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 21 May 2016 20:38:29 +0100 Subject: [PATCH] adding in error checking --- lgsm/functions/alert_pushbullet.sh | 15 ++++++++++++--- lgsm/functions/command_test_alert.sh | 5 +---- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/lgsm/functions/alert_pushbullet.sh b/lgsm/functions/alert_pushbullet.sh index f47ad7e30..c4a7b9924 100644 --- a/lgsm/functions/alert_pushbullet.sh +++ b/lgsm/functions/alert_pushbullet.sh @@ -8,7 +8,16 @@ lgsm_version="140516" local modulename="Alert" function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" +fn_print_dots "Sending Pushbullet alert" +sleep 1 + +pushbulletsend=$(curl --silent -u """${pushbullettoken}"":" -d type="note" -d body="${alertbody}" -d title="${alertsubject}" 'https://api.pushbullet.com/v2/pushes'|grep -o invalid_access_token|uniq) + +if [ "${pushbulletsend}" == "invalid_access_token" ]; then + fn_print_fail_nl "Sending Pushbullet alert: invalid_access_token" + fn_scriptlog "Failure! Sending Pushbullet alert: invalid_access_token" +else + fn_print_ok_nl "Sending Pushbullet alert" + fn_scriptlog "Complete! Sent Pushbullet alert" +fi -curl -u """${pushbullettoken}"":" -d type="note" -d body="${alertbody}" -d title="${alertsubject}" 'https://api.pushbullet.com/v2/pushes' >/dev/null 2>&1 -fn_print_ok_nl "Sent Pushbullet alert" -fn_scriptlog "Sent Pushbullet alert" diff --git a/lgsm/functions/command_test_alert.sh b/lgsm/functions/command_test_alert.sh index 33cb25ea1..3861a6e52 100644 --- a/lgsm/functions/command_test_alert.sh +++ b/lgsm/functions/command_test_alert.sh @@ -12,7 +12,4 @@ function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" check.sh info_config.sh alert="test" - alert.sh - fn_print_fail_nl "alerts not enabled" - fn_scriptlog "alerts not enabled" -fi \ No newline at end of file +alert.sh