-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathSippeers.php
131 lines (104 loc) · 3.58 KB
/
Sippeers.php
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
<?php
namespace Iris;
use AllowDynamicProperties;
#[AllowDynamicProperties]
class Sippeers extends RestEntry {
public function __construct($site) {
$this->parent = $site;
parent::_init($site->get_rest_client(), $site->get_relative_namespace());
}
public function getList($filters = Array()) {
$sippeers = [];
$data = parent::_get('sippeers');
if(isset($data['SipPeers']) && isset($data['SipPeers']['SipPeer'])) {
if($this->is_assoc($data['SipPeers']['SipPeer']))
$peers = [ $data['SipPeers']['SipPeer'] ];
else
$peers = $data['SipPeers']['SipPeer'];
foreach($peers as $sippeer) {
$sippeers[] = new Sippeer($this, $sippeer);
}
}
return $sippeers;
}
public function sippeer($id) {
$sipper = new Sippeer($this, array("PeerId" => $id));
$sipper->get();
return $sipper;
}
public function get_appendix() {
return '/sippeers';
}
public function create($data, $save = true) {
$sippeer = new Sippeer($this, $data);
if($save)
$sippeer->save();
return $sippeer;
}
}
#[AllowDynamicProperties]
class Sippeer extends RestEntry {
use BaseModel;
protected $fields = array(
"PeerId" => array("type" => "string"),
"PeerName" => array("type" => "string"),
"IsDefaultPeer" => array("type" => "string"),
"ShortMessagingProtocol" => array("type" => "string"),
"VoiceHosts" => array("type" => "Iris\Hosts"),
"VoiceHostGroups" => array("type" => "string"),
"SmsHosts" => array("type" => "Iris\Hosts"),
"TerminationHosts" => array("type" => "Iris\Hosts"),
"CallingName" => array("type" => "string")
);
public function __construct($parent, $data) {
$this->PeerId = null;
if(isset($data)) {
if(is_object($data) && $data->PeerId)
$this->PeerId = $data->PeerId;
if(is_array($data) && isset($data['PeerId']))
$this->PeerId = $data['PeerId'];
}
$this->set_data($data);
$this->parent = $parent;
parent::_init($parent->get_rest_client(), $parent->get_relative_namespace());
$this->tns = null;
}
public function get() {
$data = parent::_get($this->get_id());
$this->set_data($data['SipPeer']);
}
public function totaltns() {
$url = sprintf('%s/%s', $this->get_id(), "totaltns");
$data = parent::_get($url);
return $data['SipPeerTelephoneNumbersCounts']['SipPeerTelephoneNumbersCount'];
}
public function save() {
$header = parent::post(null, "SipPeer", $this->to_array());
$splitted = explode("/", $header['Location']);
$this->PeerId = end($splitted);
}
public function update() {
parent::put($this->get_id(), "SipPeer", $this->to_array());
}
public function delete() {
parent::_delete($this->get_id());
}
public function movetns($data) {
$data = new \Iris\Phones($data);
$url = sprintf("%s/%s", $this->get_id(), "movetns");
parent::post($url, "SipPeerTelephoneNumbers", $data);
}
public function tns() {
if(is_null($this->tns))
$this->tns = new Tns($this);
return $this->tns;
}
private function get_id() {
if(!isset($this->PeerId))
throw new \Exception('Id should be provided');
return $this->PeerId;
}
public function get_appendix() {
return '/'.$this->get_id();
}
}