1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360
|
<?php
/**
* Net_SMS_clickatell_http Class implements the HTTP API for accessing
* the Clickatell (www.clickatell.com) SMS gateway.
*
* Copyright 2003-2005 Marko Djukic <marko@oblo.com>
*
* See the enclosed file COPYING for license information (LGPL). If you did not
* receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* $Horde: framework/Net_SMS/SMS/clickatell_http.php,v 1.13.10.1 2005/01/03 12:19:09 jan Exp $
*
* @author Marko Djukic <marko@oblo.com>
* @version $Revision: 1.13.10.1 $
* @package Net_SMS
*/
class Net_SMS_clickatell_http extends Net_SMS {
var $_session_id = null;
var $_base_url = 'http://api.clickatell.com/http/';
/**
* An array of capabilities, so that the driver can report which operations
* it supports and which it doesn't. Possible values are:
* auth - The gateway require authentication before sending;
* batch - Batch sending is supported;
* multi - Sending of messages to multiple recipients is supported;
* receive - Whether this driver is capable of receiving SMS;
* credit - Is use of the gateway based on credits;
* addressbook - Are gateway addressbooks supported;
* lists - Gateway support for distribution lists.
*
* @var array $capabilities
*/
var $capabilities = array('auth' => true,
'batch' => 100,
'multi' => true,
'receive' => false,
'credit' => true,
'addressbook' => false,
'lists' => false);
/**
* Authenticate at the gateway and set a session id if successful. Caching
* is used to minimise the http calls for subsequent messages.
*
* @access private
*
* @return mixed True on success or PEAR Error on failure.
*/
function _authenticate()
{
global $conf;
/* We have already authenticated so return true. */
if (!empty($this->_session_id)) {
return true;
}
/* Set up the http authentication url. */
$url = sprintf('auth?user=%s&password=%s&api_id=%s',
urlencode($this->_params['user']),
urlencode($this->_params['password']),
$this->_params['api_id']);
/* Do the HTTP authentication and get the response. */
$response = Net_SMS_clickatell_http::_callURL($url);
if (is_a($response, 'PEAR_Error')) {
return PEAR::raiseError(sprintf(_("Authentication failed. %s"), $response->getMessage()));
}
/* Split up the response. */
$response = explode(':', $response);
if ($response[0] == 'OK') {
$this->_session_id = trim($response[1]);
return true;
} else {
return $this->getError($response[1], _("Authentication failed. %s"));
}
}
/**
* This function does the actual sending of the message.
*
* @access private
*
* @param array $message The array containing the message and its send
* parameters.
* @param string $to The destination string.
*
* @return mixed True on success or PEAR Error on failure.
*/
function _send(&$message, $to)
{
/* Set up the http sending url. */
$url = sprintf('sendmsg?session_id=%s&text=%s',
$this->_session_id,
urlencode($message['text']));
$req_feat = 0;
if (!empty($message['send_params']['from'])) {
/* If source from is set, require it for transit gateways and append
to url. */
$req_feat =+ 16;
$url .= '&from=' . urlencode($message['send_params']['from']);
}
if ($message['send_params']['msg_type'] == 'SMS_FLASH') {
/* If message type is flash, require it for transit gateways. */
$req_feat =+ 512;
$url .= '&msg_type=' . $message['send_params']['msg_type'];
}
if (!empty($req_feat)) {
/* If features have been required, add to url. */
$url .= '&req_feat=' . $req_feat;
}
/* Append the recipients of this message and call the url. */
foreach ($to as $key => $val) {
if (preg_match('/^.*?<?\+?(\d{7,})(>|$)/', $val, $matches)) {
$to[$key] = $matches[1];
} else {
/* FIXME: Silently drop bad recipients. This should be logged
* and/or reported. */
unset($to[$key]);
}
}
$to = implode(',', $to);
$url .= '&to=' . $to;
$response = trim($this->_callURL($url));
/* Ugly parsing of the response, but that's how it comes back. */
$lines = explode("\n", $response);
$response = array();
if (count($lines) > 1) {
foreach ($lines as $line) {
$parts = explode('To:', $line);
$recipient = trim($parts[1]);
$outcome = explode(':', $parts[0]);
$response[$recipient] = array(($outcome[0] == 'ID' ? 1 : 0), $outcome[1]);
}
} else {
/* Single recipient. */
$outcome = explode(':', $lines[0]);
$response[$to] = array(($outcome[0] == 'ID' ? 1 : 0), $outcome[1]);
}
return $response;
}
/**
* Returns the current credit balance on the gateway.
*
* @access private
*
* @return int The credit balance available on the gateway.
*/
function _getBalance()
{
/* Set up the url and call it. */
$url = sprintf('getbalance?session_id=%s',
$this->_session_id);
$response = trim($this->_callURL($url));
/* Try splitting up the response. */
$lines = explode('=', $response);
/* Split up the response. */
$response = explode(':', $response);
if ($response[0] == 'Credit') {
return trim($response[1]);
} else {
return $this->getError($response[1], _("Could not check balance. %s"));
}
}
/**
* Identifies this gateway driver and returns a brief description.
*
* @access public
*
* @return array Array of driver info.
*/
function getInfo()
{
$info['name'] = _("Clickatell via HTTP");
$info['desc'] = _("This driver allows sending of messages through the Clickatell (http://clickatell.com) gateway, using the HTTP API");
return $info;
}
/**
* Returns the required parameters for this gateway driver.
*
* @access public
*
* @return array Array of required parameters.
*/
function getParams()
{
$params = array();
$params['user'] = array('label' => _("Username"), 'type' => 'text');
$params['password'] = array('label' => _("Password"), 'type' => 'text');
$params['api_id'] = array('label' => _("API ID"), 'type' => 'text');
return $params;
}
/**
* Returns the parameters that can be set as default for sending messages
* using this gateway driver and displayed when sending messages.
*
* @access public
*
* @return array Array of parameters that can be set as default.
* @todo Set up batch fields/params, would be nice to have ringtone/logo
* support too, queue choice, unicode choice.
*/
function getDefaultSendParams()
{
$params = array();
$params['from'] = array(
'label' => _("Source address"),
'type' => 'text');
$params['deliv_time'] = array(
'label' => _("Delivery time"),
'type' => 'enum',
'params' => array(array('now' => _("immediate"), 'user' => _("user select"))));
$types = array('SMS_TEXT' => 'SMS_TEXT', 'SMS_FLASH' => 'SMS_FLASH');
$params['msg_type'] = array(
'label' => _("Message type"),
'type' => 'multienum',
'params' => array($types));
return $params;
}
/**
* Returns the parameters for sending messages using this gateway driver,
* displayed when sending messages. These are filtered out using the
* default values set for the gateway.
*
* @access public
*
* @return array Array of required parameters.
* @todo Would be nice to use a time/date setup rather than minutes from
* now for the delivery time. Upload field for ringtones/logos?
*/
function getSendParams($params)
{
if (empty($params['from'])) {
$params['from'] = array(
'label' => _("Source address"),
'type' => 'text');
}
if ($params['deliv_time'] == 'user') {
$params['deliv_time'] = array(
'label' => _("Delivery time"),
'type' => 'int',
'desc' => _("Value in minutes from now."));
}
if (count($params['msg_type']) > 1) {
$params['msg_type'] = array(
'label' => _("Message type"),
'type' => 'enum',
'params' => array($params['msg_type']));
} else {
$params['msg_type'] = $params['msg_type'][0];
}
return $params;
}
/**
* Returns a string representation of an error code.
*
* @access public
*
* @param int $error The error code to look up.
* @param optional string $text An existing error text to use to raise a
* PEAR Error.
*
* @return mixed A textual message corrisponding to the error code or a
* PEAR Error if passed an existing error text.
*
* @todo Check which of these are actually required and trim down the list.
*/
function getError($error, $error_text = '')
{
/* Make sure we get only the number at the start of an error. */
list($error) = explode(',', $error);
$error = trim($error);
/* An array of error codes returned by the gateway. */
$errors = array('001' => _("Authentication failed"),
'002' => _("Unknown username or password."),
'003' => _("Session ID expired."),
'004' => _("Account frozen."),
'005' => _("Missing session ID."),
'007' => _("IP lockdown violation."),
'101' => _("Invalid or missing parameters."),
'102' => _("Invalid UDH. (User Data Header)."),
'103' => _("Unknown apimsgid (API Message ID)."),
'104' => _("Unknown climsgid (Client Message ID)."),
'105' => _("Invalid destination address."),
'106' => _("Invalid source address."),
'107' => _("Empty message."),
'108' => _("Invalid or missing api_id."),
'109' => _("Missing message ID."),
'110' => _("Error with email message."),
'111' => _("Invalid protocol."),
'112' => _("Invalid msg_type."),
'113' => _("Max message parts exceeded."),
'114' => _("Cannot route message to specified number."),
'115' => _("Message expired."),
'116' => _("Invalid unicode data."),
'201' => _("Invalid batch ID."),
'202' => _("No batch template."),
'301' => _("No credit left."),
'302' => _("Max allowed credit."));
if (empty($error_text)) {
return $errors[$error];
} else {
return PEAR::raiseError(sprintf($error_text, $errors[$error]));
}
}
/**
* Do the http call using a url passed to the function.
*
* @access private
*
* @param string $url The url to call.
*
* @return mixed The response on success or PEAR Error on failure.
*/
function _callURL($url)
{
$options['method'] = 'POST';
$options['timeout'] = 5;
$options['allowRedirects'] = true;
if (!@include_once 'HTTP/Request.php') {
return PEAR::raiseError(_("Missing PEAR package HTTP_Request."));
}
$http = &new HTTP_Request($this->_base_url . $url, $options);
@$http->sendRequest();
if ($http->getResponseCode() != 200) {
return PEAR::raiseError(sprintf(_("Could not open %s."), $url));
}
return $http->getResponseBody();
}
}
|