Last active
August 29, 2015 13:56
-
-
Save kolargol/8975112 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Notify by Boxcar | |
# http://www.process-one.net | |
usage() { | |
echo -e "\nUsage: $0 -a AccessToken -t MessageTitle -d MessageDetails -s SoundID" | |
echo -e "Example: -$0 -a LuckJewacat6 -t \"Some message\" -d \"Message details\" -s 21\n" | |
exit 1; | |
} | |
while getopts "a:t:d:s:" optionName; do | |
case "$optionName" in | |
a) token="$OPTARG" ;; | |
t) title="$OPTARG" ;; | |
d) details="$OPTARG" ;; | |
s) soundid="$OPTARG" ;; | |
\?) exit 2;; | |
esac | |
done | |
if [ -z "$token" ]; then echo -e "\nMissing AuthToken. See you Boxcar App Settings!"; usage;fi | |
if [ -z "$title" ]; then echo -e "\nMissing Title. Provide some text to display in push message!"; usage;fi | |
if [ -z "$details" ]; then echo -e "\nMissing MessageDetails. This is displayed in detail view of Boxcar App"; usage;fi | |
if [ -z "$soundid" ]; then echo -e "\nMissing SoundID. This is integer number. Test yourself!"; usage;fi | |
curl -d user_credentials=$token \ | |
-d "notification[title]=Nagios: $title" \ | |
-d "notification[message]=$title" \ | |
-d "notification[long_message]=$details" \ | |
-d "notification[sound]=$soundid" \ | |
https://new.boxcar.io/api/notifications | |
echo -e | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment