forked from clue/reactphp-ami
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApi.php
More file actions
115 lines (94 loc) · 2.73 KB
/
Api.php
File metadata and controls
115 lines (94 loc) · 2.73 KB
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
<?php
namespace Clue\React\Ami;
use Clue\React\Ami\Client;
use Clue\React\Ami\Protocol\Response;
use Clue\React\Ami\Protocol\Action;
use UnexpectedValueException;
use Clue\React\Ami\Protocol\Event;
class Api
{
private $client;
public function __construct(Client $client)
{
$this->client = $client;
}
public function login($username, $secret, $events = null)
{
$events = $this->boolParam($events);
return $this->request('Login', array('UserName' => $username, 'Secret' => $secret, 'Events' => $events));
}
public function logoff()
{
return $this->request('Logoff');
}
public function agentLogoff($agentId, $soft = false)
{
$bool = $soft ? 'true' : 'false';
return $this->request('AgentLogoff', array('Agent' => $agentId, 'Soft' => $bool));
}
public function ping()
{
return $this->request('Ping');
}
public function coreShowChannels()
{
return $this->request('CoreShowChannels');
}
public function command($command)
{
return $this->request('Command', array('Command' => $command));
}
public function events($eventMask)
{
if ($eventMask === false) {
$eventMask = 'off';
} elseif ($eventMask === true) {
$eventMask = 'on';
} else {
$eventMask = implode(',', $eventMask);
}
return $this->request('Events', array('EventMask' => $eventMask));
}
public function sipPeers()
{
return $this->request('SIPPeers');
}
public function sipShowPeer($peerName)
{
return $this->request('SIPshowpeer', array('Peer' => $peerName));
}
public function listCommands()
{
return $this->request('ListCommands');
}
public function sendText($channel, $message)
{
return $this->request('Sendtext', array('Channel' => $channel, 'Message' => $message));
}
public function hangup($channel, $cause)
{
return $this->request('Hangup', array('Channel' => $channel, 'Cause' => $cause));
}
public function challenge($authType = 'MD5')
{
return $this->request('Challenge', array('AuthType' => $authType));
}
public function getConfig($filename, $category = null)
{
return $this->request('GetConfig', array('Filename' => $filename, 'Category' => $category));
}
private function boolParam($value)
{
if ($value === true) {
return 'on';
}
if ($value === false) {
return 'off';
}
return null;
}
private function request($name, array $args = array())
{
return $this->client->request($this->client->createAction($name, $args));
}
}