mirror of
https://github.com/cwinfo/envayasms.git
synced 2025-07-04 05:57:44 +00:00
version 3.0 - real-time AMQP connections; change server API format from XML to JSON, update PHP server library; persistent storage of pending messages
This commit is contained in:
@ -1,24 +1,33 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* PHP server library for EnvayaSMS
|
||||
* PHP server library for EnvayaSMS 3.0
|
||||
*
|
||||
* For example usage see example/www/index.php
|
||||
* For example usage see example/www/gateway.php
|
||||
*/
|
||||
|
||||
class EnvayaSMS
|
||||
class EnvayaSMS
|
||||
{
|
||||
const ACTION_INCOMING = 'incoming';
|
||||
const ACTION_OUTGOING = 'outgoing';
|
||||
const ACTION_FORWARD_SENT = 'forward_sent';
|
||||
const ACTION_SEND_STATUS = 'send_status';
|
||||
const ACTION_DEVICE_STATUS = 'device_status';
|
||||
const ACTION_TEST = 'test';
|
||||
const ACTION_OUTGOING = 'outgoing';
|
||||
const ACTION_AMQP_STARTED = 'amqp_started';
|
||||
// ACTION_OUTGOING should probably be const ACTION_POLL = 'poll',
|
||||
// but 'outgoing' maintains backwards compatibility between new phone versions with old servers
|
||||
|
||||
const STATUS_QUEUED = 'queued';
|
||||
const STATUS_FAILED = 'failed';
|
||||
const STATUS_SENT = 'sent';
|
||||
const STATUS_CANCELLED = 'cancelled';
|
||||
|
||||
const EVENT_SEND = 'send';
|
||||
const EVENT_CANCEL = 'cancel';
|
||||
const EVENT_CANCEL_ALL = 'cancel_all';
|
||||
const EVENT_LOG = 'log';
|
||||
const EVENT_SETTINGS = 'settings';
|
||||
|
||||
const DEVICE_STATUS_POWER_CONNECTED = "power_connected";
|
||||
const DEVICE_STATUS_POWER_DISCONNECTED = "power_disconnected";
|
||||
const DEVICE_STATUS_BATTERY_LOW = "battery_low";
|
||||
@ -29,8 +38,10 @@ class EnvayaSMS
|
||||
const MESSAGE_TYPE_MMS = 'mms';
|
||||
const MESSAGE_TYPE_CALL = 'call';
|
||||
|
||||
const NETWORK_MOBILE = "MOBILE";
|
||||
const NETWORK_WIFI = "WIFI";
|
||||
// power source constants same as from Android's BatteryManager.EXTRA_PLUGGED
|
||||
const POWER_SOURCE_BATTERY = 0;
|
||||
const POWER_SOURCE_AC = 1;
|
||||
const POWER_SOURCE_USB = 2;
|
||||
|
||||
static function escape($val)
|
||||
{
|
||||
@ -41,60 +52,36 @@ class EnvayaSMS
|
||||
|
||||
static function get_request()
|
||||
{
|
||||
if (!isset(static::$request))
|
||||
if (!isset(self::$request))
|
||||
{
|
||||
$version = @$_POST['version'];
|
||||
|
||||
// If API version changes, could return
|
||||
// different EnvayaSMS_Request instance
|
||||
// to support multiple phone versions
|
||||
|
||||
static::$request = new EnvayaSMS_Request();
|
||||
if (isset($_POST['action']))
|
||||
{
|
||||
self::$request = new EnvayaSMS_ActionRequest();
|
||||
}
|
||||
else
|
||||
{
|
||||
self::$request = new EnvayaSMS_Request();
|
||||
}
|
||||
|
||||
}
|
||||
return static::$request;
|
||||
}
|
||||
|
||||
static function get_error_xml($message)
|
||||
{
|
||||
ob_start();
|
||||
echo "<?xml version='1.0' encoding='UTF-8'?>\n";
|
||||
echo "<response>";
|
||||
echo "<error>";
|
||||
echo EnvayaSMS::escape($message);
|
||||
echo "</error>";
|
||||
echo "</response>";
|
||||
return ob_get_clean();
|
||||
}
|
||||
|
||||
static function get_success_xml()
|
||||
{
|
||||
ob_start();
|
||||
echo "<?xml version='1.0' encoding='UTF-8'?>\n";
|
||||
echo "<response></response>";
|
||||
return ob_get_clean();
|
||||
}
|
||||
return self::$request;
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_Request
|
||||
{
|
||||
private $request_action;
|
||||
|
||||
{
|
||||
public $version;
|
||||
public $phone_number;
|
||||
public $log;
|
||||
|
||||
public $version_name;
|
||||
public $sdk_int;
|
||||
public $manufacturer;
|
||||
public $model;
|
||||
public $network;
|
||||
|
||||
public $model;
|
||||
|
||||
function __construct()
|
||||
{
|
||||
$this->version = $_POST['version'];
|
||||
$this->phone_number = $_POST['phone_number'];
|
||||
$this->log = $_POST['log'];
|
||||
$this->network = @$_POST['network'];
|
||||
$this->version = (int)@$_POST['version'];
|
||||
|
||||
if (preg_match('#/(?P<version_name>[\w\.\-]+) \(Android; SDK (?P<sdk_int>\d+); (?P<manufacturer>[^;]*); (?P<model>[^\)]*)\)#',
|
||||
@$_SERVER['HTTP_USER_AGENT'], $matches))
|
||||
@ -103,9 +90,115 @@ class EnvayaSMS_Request
|
||||
$this->sdk_int = $matches['sdk_int'];
|
||||
$this->manufacturer = $matches['manufacturer'];
|
||||
$this->model = $matches['model'];
|
||||
}
|
||||
}
|
||||
|
||||
function supports_json()
|
||||
{
|
||||
return $this->version >= 28;
|
||||
}
|
||||
|
||||
function supports_update_settings()
|
||||
{
|
||||
return $this->version >= 29;
|
||||
}
|
||||
|
||||
function get_response_type()
|
||||
{
|
||||
if ($this->supports_json())
|
||||
{
|
||||
return 'application/json';
|
||||
}
|
||||
else
|
||||
{
|
||||
return 'text/xml';
|
||||
}
|
||||
}
|
||||
|
||||
function render_response($events = null /* optional array of EnvayaSMS_Event objects */)
|
||||
{
|
||||
if ($this->supports_json())
|
||||
{
|
||||
return json_encode(array('events' => $events));
|
||||
}
|
||||
else
|
||||
{
|
||||
ob_start();
|
||||
echo "<?xml version='1.0' encoding='UTF-8'?>\n";
|
||||
echo "<response>";
|
||||
|
||||
if ($events)
|
||||
{
|
||||
foreach ($events as $event)
|
||||
{
|
||||
echo "<messages>";
|
||||
if ($event instanceof EnvayaSMS_Event_Send)
|
||||
{
|
||||
if ($event->messages)
|
||||
{
|
||||
foreach ($event->messages as $message)
|
||||
{
|
||||
$type = isset($message->type) ? $message->type : EnvayaSMS::MESSAGE_TYPE_SMS;
|
||||
$id = isset($message->id) ? " id=\"".EnvayaSMS::escape($message->id)."\"" : "";
|
||||
$to = isset($message->to) ? " to=\"".EnvayaSMS::escape($message->to)."\"" : "";
|
||||
$priority = isset($message->priority) ? " priority=\"".$message->priority."\"" : "";
|
||||
echo "<$type$id$to$priority>".EnvayaSMS::escape($message->message)."</$type>";
|
||||
}
|
||||
}
|
||||
}
|
||||
echo "</messages>";
|
||||
}
|
||||
}
|
||||
echo "</response>";
|
||||
return ob_get_clean();
|
||||
}
|
||||
}
|
||||
|
||||
function render_error_response($message)
|
||||
{
|
||||
if ($this->supports_json())
|
||||
{
|
||||
return json_encode(array('error' => array('message' => $message)));
|
||||
}
|
||||
else
|
||||
{
|
||||
ob_start();
|
||||
echo "<?xml version='1.0' encoding='UTF-8'?>\n";
|
||||
echo "<response>";
|
||||
echo "<error>";
|
||||
echo EnvayaSMS::escape($message);
|
||||
echo "</error>";
|
||||
echo "</response>";
|
||||
return ob_get_clean();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_ActionRequest extends EnvayaSMS_Request
|
||||
{
|
||||
private $request_action;
|
||||
|
||||
public $settings_version; // integer version of current settings (as provided by server)
|
||||
public $phone_number; // phone number of Android phone
|
||||
public $log; // app log messages since last successful request
|
||||
public $now; // current time (ms since Unix epoch) according to Android clock
|
||||
public $network; // name of network, like WIFI or MOBILE (may vary depending on phone)
|
||||
public $battery; // battery level as percentage
|
||||
public $power; // power source integer, see EnvayaSMS::POWER_SOURCE_*
|
||||
|
||||
function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$this->phone_number = $_POST['phone_number'];
|
||||
$this->log = $_POST['log'];
|
||||
$this->network = @$_POST['network'];
|
||||
$this->now = @$_POST['now'];
|
||||
$this->settings_version = @$_POST['settings_version'];
|
||||
$this->battery = @$_POST['battery'];
|
||||
$this->power = @$_POST['power'];
|
||||
}
|
||||
|
||||
function get_action()
|
||||
{
|
||||
if (!$this->request_action)
|
||||
@ -121,7 +214,9 @@ class EnvayaSMS_Request
|
||||
{
|
||||
case EnvayaSMS::ACTION_INCOMING:
|
||||
return new EnvayaSMS_Action_Incoming($this);
|
||||
case EnvayaSMS::ACTION_OUTGOING:
|
||||
case EnvayaSMS::ACTION_FORWARD_SENT:
|
||||
return new EnvayaSMS_Action_ForwardSent($this);
|
||||
case EnvayaSMS::ACTION_OUTGOING:
|
||||
return new EnvayaSMS_Action_Outgoing($this);
|
||||
case EnvayaSMS::ACTION_SEND_STATUS:
|
||||
return new EnvayaSMS_Action_SendStatus($this);
|
||||
@ -129,6 +224,8 @@ class EnvayaSMS_Request
|
||||
return new EnvayaSMS_Action_Test($this);
|
||||
case EnvayaSMS::ACTION_DEVICE_STATUS:
|
||||
return new EnvayaSMS_Action_DeviceStatus($this);
|
||||
case EnvayaSMS::ACTION_AMQP_STARTED:
|
||||
return new EnvayaSMS_Action_AmqpStarted($this);
|
||||
default:
|
||||
return new EnvayaSMS_Action($this);
|
||||
}
|
||||
@ -163,29 +260,8 @@ class EnvayaSMS_Request
|
||||
|
||||
$input .= ",$password";
|
||||
|
||||
//error_log("Signed data: '$input'");
|
||||
|
||||
return base64_encode(sha1($input, true));
|
||||
}
|
||||
|
||||
static function get_messages_xml($messages)
|
||||
{
|
||||
ob_start();
|
||||
echo "<?xml version='1.0' encoding='UTF-8'?>\n";
|
||||
echo "<response>";
|
||||
echo "<messages>";
|
||||
foreach ($messages as $message)
|
||||
{
|
||||
$type = isset($message->type) ? $message->type : EnvayaSMS::MESSAGE_TYPE_SMS;
|
||||
$id = isset($message->id) ? " id=\"".EnvayaSMS::escape($message->id)."\"" : "";
|
||||
$to = isset($message->to) ? " to=\"".EnvayaSMS::escape($message->to)."\"" : "";
|
||||
$priority = isset($message->priority) ? " priority=\"".$message->priority."\"" : "";
|
||||
echo "<$type$id$to$priority>".EnvayaSMS::escape($message->message)."</$type>";
|
||||
}
|
||||
echo "</messages>";
|
||||
echo "</response>";
|
||||
return ob_get_clean();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_OutgoingMessage
|
||||
@ -197,6 +273,10 @@ class EnvayaSMS_OutgoingMessage
|
||||
public $type; // EnvayaSMS::MESSAGE_TYPE_* value (default sms)
|
||||
}
|
||||
|
||||
/*
|
||||
* An 'action' is the term for a HTTP request that app sends to the server.
|
||||
*/
|
||||
|
||||
class EnvayaSMS_Action
|
||||
{
|
||||
public $type;
|
||||
@ -233,24 +313,19 @@ class EnvayaSMS_MMS_Part
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_Action_Incoming extends EnvayaSMS_Action
|
||||
abstract class EnvayaSMS_Action_Forward extends EnvayaSMS_Action
|
||||
{
|
||||
public $from; // Sender phone number
|
||||
public $message; // The message body of the SMS, or the content of the text/plain part of the MMS.
|
||||
public $message_type; // EnvayaSMS::MESSAGE_TYPE_MMS or EnvayaSMS::MESSAGE_TYPE_SMS
|
||||
public $mms_parts; // array of EnvayaSMS_MMS_Part instances
|
||||
public $timestamp; // timestamp of incoming message (added in version 12)
|
||||
public $age; // delay in ms between time when message originally received and when forwarded to server (added in version 18)
|
||||
|
||||
function __construct($request)
|
||||
{
|
||||
parent::__construct($request);
|
||||
$this->type = EnvayaSMS::ACTION_INCOMING;
|
||||
$this->from = $_POST['from'];
|
||||
$this->message = @$_POST['message'];
|
||||
$this->message_type = $_POST['message_type'];
|
||||
$this->timestamp = @$_POST['timestamp'];
|
||||
$this->age = @$_POST['age'];
|
||||
|
||||
if ($this->message_type == EnvayaSMS::MESSAGE_TYPE_MMS)
|
||||
{
|
||||
@ -260,26 +335,52 @@ class EnvayaSMS_Action_Incoming extends EnvayaSMS_Action
|
||||
$this->mms_parts[] = new EnvayaSMS_MMS_Part($mms_part);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function get_response_xml($messages)
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_Action_Incoming extends EnvayaSMS_Action_Forward
|
||||
{
|
||||
public $from; // Sender phone number
|
||||
|
||||
function __construct($request)
|
||||
{
|
||||
return $this->request->get_messages_xml($messages);
|
||||
parent::__construct($request);
|
||||
$this->type = EnvayaSMS::ACTION_INCOMING;
|
||||
$this->from = $_POST['from'];
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_Action_ForwardSent extends EnvayaSMS_Action_Forward
|
||||
{
|
||||
public $to; // Recipient phone number
|
||||
|
||||
function __construct($request)
|
||||
{
|
||||
parent::__construct($request);
|
||||
$this->type = EnvayaSMS::ACTION_FORWARD_SENT;
|
||||
$this->to = $_POST['to'];
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_Action_AmqpStarted extends EnvayaSMS_Action
|
||||
{
|
||||
public $consumer_tag;
|
||||
|
||||
function __construct($request)
|
||||
{
|
||||
parent::__construct($request);
|
||||
$this->type = EnvayaSMS::ACTION_AMQP_STARTED;
|
||||
$this->consumer_tag = $_POST['consumer_tag'];
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_Action_Outgoing extends EnvayaSMS_Action
|
||||
{
|
||||
function __construct($request)
|
||||
{
|
||||
parent::__construct($request);
|
||||
$this->type = EnvayaSMS::ACTION_OUTGOING;
|
||||
}
|
||||
|
||||
function get_response_xml($messages)
|
||||
{
|
||||
return $this->request->get_messages_xml($messages);
|
||||
}
|
||||
$this->type = EnvayaSMS::ACTION_OUTGOING;
|
||||
}
|
||||
}
|
||||
|
||||
class EnvayaSMS_Action_Test extends EnvayaSMS_Action
|
||||
@ -318,3 +419,89 @@ class EnvayaSMS_Action_DeviceStatus extends EnvayaSMS_Action
|
||||
$this->status = $_POST['status'];
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* An 'event' is the term for something the server sends to the app,
|
||||
* either via a response to an 'action', or directly via AMQP.
|
||||
*/
|
||||
|
||||
class EnvayaSMS_Event
|
||||
{
|
||||
public $event;
|
||||
|
||||
/*
|
||||
* Formats this event as the body of an AMQP message.
|
||||
*/
|
||||
function render()
|
||||
{
|
||||
return json_encode($this);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Instruct the phone to send one or more outgoing messages (SMS or USSD)
|
||||
*/
|
||||
class EnvayaSMS_Event_Send extends EnvayaSMS_Event
|
||||
{
|
||||
public $messages;
|
||||
|
||||
function __construct($messages /* array of EnvayaSMS_OutgoingMessage objects */)
|
||||
{
|
||||
$this->event = EnvayaSMS::EVENT_SEND;
|
||||
$this->messages = $messages;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Update some of the app's settings.
|
||||
*/
|
||||
class EnvayaSMS_Event_Settings extends EnvayaSMS_Event
|
||||
{
|
||||
public $settings;
|
||||
|
||||
function __construct($settings /* associative array of key => value pairs (values can be int, bool, or string) */)
|
||||
{
|
||||
$this->event = EnvayaSMS::EVENT_SETTINGS;
|
||||
$this->settings = $settings;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Cancel sending a message that was previously queued in the app via a 'send' event.
|
||||
* Has no effect if the message has already been sent.
|
||||
*/
|
||||
class EnvayaSMS_Event_Cancel extends EnvayaSMS_Event
|
||||
{
|
||||
public $id;
|
||||
|
||||
function __construct($id /* id of previously created EnvayaSMS_OutgoingMessage object (string) */)
|
||||
{
|
||||
$this->event = EnvayaSMS::EVENT_CANCEL;
|
||||
$this->id = $id;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Cancels all outgoing messages that are currently queued in the app. Incoming mesages are not affected.
|
||||
*/
|
||||
class EnvayaSMS_Event_CancelAll extends EnvayaSMS_Event
|
||||
{
|
||||
function __construct()
|
||||
{
|
||||
$this->event = EnvayaSMS::EVENT_CANCEL_ALL;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Appends a message to the app log.
|
||||
*/
|
||||
class EnvayaSMS_Event_Log extends EnvayaSMS_Event
|
||||
{
|
||||
public $message;
|
||||
|
||||
function __construct($message)
|
||||
{
|
||||
$this->event = EnvayaSMS::EVENT_LOG;
|
||||
$this->message = $message;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user