Skip to content

Instantly share code, notes, and snippets.

@kolargol
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kolargol/8975112 to your computer and use it in GitHub Desktop.
Save kolargol/8975112 to your computer and use it in GitHub Desktop.
#!/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