Skip to content

Instantly share code, notes, and snippets.

@infn8
Last active August 29, 2015 14:01
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 infn8/217dda46cd293a7d0f1c to your computer and use it in GitHub Desktop.
Save infn8/217dda46cd293a7d0f1c to your computer and use it in GitHub Desktop.
<?php
/*
Copyright (c) 2012 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.
*/
require "twilio-lib.php";
// initiate response library
$response = new Response();
// if PhoneNumbers isn't an array, make it one
if(!is_array($_REQUEST['PhoneNumbers']))
$_REQUEST['PhoneNumbers'] = array($_REQUEST['PhoneNumbers']);
// remove empty entries from PhoneNumbers
$_REQUEST['PhoneNumbers'] = array_filter($_REQUEST['PhoneNumbers']);
// if The Dial flag is present, it means we're returning from an attempted Dial
if(isset($_REQUEST['Dial']) && (strlen($_REQUEST['DialCallStatus']) || strlen($_REQUEST['DialStatus']))) {
if($_REQUEST['DialCallStatus'] == "completed" || $_REQUEST['DialStatus'] == "answered" || !strlen($_REQUEST['FailUrl'])) {
// answered, or no failure url given, so just hangup
$response->addHangup();
} else {
// DialStatus was not answered, so redirect to FailUrl
header("Location: {$_REQUEST['FailUrl']}");
die;
}
} else {
// No dial flag, means it's our first run through the script
// dial everybody with default timeout 20, submitting back to this URL and set a dial flag
$dial = $response->addDial(array("action" => "{$_SERVER['SCRIPT_URL']}?Dial=true&FailUrl=".urlencode($_REQUEST['FailUrl']), "timeout"=>$_REQUEST['Timeout'] ? $_REQUEST['Timeout'] : 20));
// resort the PhoneNumbers array, in case anything untoward happened to it
sort($_REQUEST['PhoneNumbers']);
// add each number to the Dial
foreach($_REQUEST['PhoneNumbers'] AS $number)
$dial->addNumber($number, array("url"=>"whisper?Message=".urlencode($_REQUEST['Message']). "&HumanCheck=1"));
}
// send the response
$response->Respond();
@infn8
Copy link
Author

infn8 commented May 19, 2014

If you look in the revisions of this Gist you can see the update made to the code by @twilio.

This was because if the answering party doesn't want to accept the call the HumanCheck param of the whisper twimlet should hangup the call because they didn't press a key.

this is similar to the findme twimlet and is like a simple oversight in an otherwise great project

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment