Created
August 27, 2010 23:20
-
-
Save chadsmith/554365 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 | |
##################################################################### | |
# | |
# Copyright (c) 2009 Twilio, Inc. | |
# | |
# Permission is hereby granted, free of charge, to any person | |
# obtaining a copy of this software and associated documentation | |
# files (the "Software"), to deal in the Software without | |
# restriction, including without limitation the rights to use, | |
# copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the | |
# Software is furnished to do so, subject to the following | |
# conditions: | |
# | |
# The above copyright notice and this permission notice shall be | |
# included in all copies or substantial portions of the Software. | |
# | |
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES | |
# OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | |
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | |
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | |
# OTHER DEALINGS IN THE SOFTWARE. | |
# | |
###################################################################### | |
function usage | |
{ | |
if [ -n "$1" ]; then echo $1; fi | |
echo "Usage: twilio-conference [-v] [-c configfile] [-d callerid] [-u accountsid] [-p authtoken] [-m holdmusic] number [number[number[...]]]" | |
exit 1 | |
} | |
VERBOSE=0 | |
while getopts ":c:u:p:d:m:v" opt; do | |
case "$opt" in | |
c) CONFIGFILE=$OPTARG ;; | |
d) CALLERID_ARG=$OPTARG ;; | |
m) MUSIC_ARG=$OPTARG ;; | |
u) ACCOUNTSID_ARG=$OPTARG ;; | |
p) AUTHTOKEN_ARG=$OPTARG ;; | |
v) VERBOSE=1 ;; | |
*) echo "Unknown param: $opt"; usage ;; | |
esac | |
done | |
# test configfile | |
if [ -n "$CONFIGFILE" -a ! -f "$CONFIGFILE" ]; then echo "Configfile not found: $CONFIGFILE"; usage; fi | |
# source configfile if given | |
if [ -n "$CONFIGFILE" ]; then . "$CONFIGFILE"; | |
# source the default ~/.twiliorc if it exists | |
elif [ -f ~/.twiliorc ]; then . ~/.twiliorc; | |
fi | |
# if ACCOUNTSID, AUTHTOKEN, or CALLERID were given in the commandline, then override that in the configfile | |
if [ -n "$ACCOUNTSID_ARG" ]; then ACCOUNTSID=$ACCOUNTSID_ARG; fi | |
if [ -n "$AUTHTOKEN_ARG" ]; then AUTHTOKEN=$AUTHTOKEN_ARG; fi | |
if [ -n "$CALLERID_ARG" ]; then CALLERID=$CALLERID_ARG; fi | |
# verify params | |
if [ -z "$ACCOUNTSID" ]; then usage "AccountSid not set, it must be provided in the config file, or on the command line."; fi; | |
if [ -z "$AUTHTOKEN" ]; then usage "AuthToken not set, it must be provided in the config file, or on the command line."; fi; | |
if [ -z "$CALLERID" ]; then usage "CallerID not set, it must be provided in the config file, or on the command line."; fi; | |
# Get message from stdin, and double URLEncode it using a little perl action | |
MSG=`cat` | |
MSG=`perl -MURI::Escape -e "print uri_escape(uri_escape('$MSG'));"` | |
# Verify MSG | |
if [ -z "$MSG" ]; then usage "Please wait for the conference to begin"; fi; | |
# for each remaining shell arg, that's a phone number to call | |
for PHONE in "${@:$OPTIND}"; do | |
echo -n "Calling $PHONE from $CALLERID..." | |
# initiate a curl request to the Twilio REST API, to begin a phone call to that number | |
RESPONSE=`curl -fSs -u "$ACCOUNTSID:$AUTHTOKEN" -d "Caller=$CALLERID" -d "Called=$PHONE" -d "Url=http://twimlets.com/conference?Message=$MSG&Music=$MUSIC_ARG&Moderators[0]=${@:$OPTIND:1}" "https://api.twilio.com/2008-08-01/Accounts/$ACCOUNTSID/Calls" 2>&1` | |
if [ $? -gt 0 ]; then echo "Failed to call $PHONE: $RESPONSE" | |
else echo "done" | |
fi | |
if [ "$VERBOSE" -eq 1 ]; then echo $RESPONSE; fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment