mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
e96c363eef
Summary: Provides a working SMS implementation with support for Twilio. This version doesn't really retry if we get any gruff at all. Future versions should retry. Test Plan: used bin/sms to send messages and look at them. Reviewers: chad, epriestley Reviewed By: epriestley Subscribers: aurelijus, epriestley, Korvin Maniphest Tasks: T920 Differential Revision: https://secure.phabricator.com/D8930
28 lines
877 B
PHP
Executable file
28 lines
877 B
PHP
Executable file
<?php
|
|
|
|
class Services_Twilio_Rest_Members
|
|
extends Services_Twilio_ListResource
|
|
{
|
|
/**
|
|
* Return the member at the front of the queue. Note that any operations
|
|
* performed on the Member returned from this function will use the /Front
|
|
* Uri, not the Member's CallSid.
|
|
*
|
|
* @return Services_Twilio_Rest_Member The member at the front of the queue
|
|
*/
|
|
public function front() {
|
|
return new $this->instance_name($this->client, $this->uri . '/Front');
|
|
}
|
|
|
|
/* Participants are identified by CallSid, not like ME123 */
|
|
public function getObjectFromJson($params, $idParam = 'sid') {
|
|
return parent::getObjectFromJson($params, 'call_sid');
|
|
}
|
|
|
|
public function getResourceName($camelized = false)
|
|
{
|
|
// The JSON property name is atypical.
|
|
return $camelized ? 'Members' : 'queue_members';
|
|
}
|
|
}
|
|
|