-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathDisconnectsModel.php
153 lines (131 loc) · 4.1 KB
/
DisconnectsModel.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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
/**
* @model Disconnects
*
*/
namespace Iris;
use AllowDynamicProperties;
#[AllowDynamicProperties]
class Disconnects extends RestEntry{
public function __construct($parent) {
$this->parent = $parent;
parent::_init($this->parent->get_rest_client(), $this->parent->get_relative_namespace());
}
public function getList($filters = Array())
{
$disconnects = [];
$data = parent::_get('disconnects', $filters, Array("page"=> 1, "size" => 30), Array("page", "size"));
if(isset($data['ListOrderIdUserIdDate']) && isset($data['ListOrderIdUserIdDate']['OrderIdUserIdDate'])) {
$items = $data['ListOrderIdUserIdDate']['OrderIdUserIdDate'];
if($this->is_assoc($items))
$items = [ $items ];
foreach($items as $item) {
$disconnects[] = new Disconnect($this, $item);
}
}
return $disconnects;
}
public function disconnect($id, $tndetail = false) {
$d = new Disconnect($this, array("OrderId" => $id));
$d->get($tndetail);
return $d;
}
/**
* Create new disconnect
* @param array $data
* @return \Iris\Disconnect
*/
public function create($data, $save = true) {
$disconnect = new Disconnect($this, $data);
if($save)
$disconnect->save();
return $disconnect;
}
/**
* Provide path of url
* @return string
*/
public function get_appendix() {
return '/disconnects';
}
}
#[AllowDynamicProperties]
class Disconnect extends RestEntry {
use BaseModel;
protected $fields = array(
"CountOfTNs" => [ "type" => "string" ],
"userId" => [ "type" => "string" ],
"lastModifiedDate" => [ "type" => "string" ],
"OrderId" => [ "type" => "string" ],
"OrderType" => [ "type" => "string" ],
"OrderDate" => [ "type" => "string" ],
"OrderStatus" => [ "type" => "string" ],
"TelephoneNumberDetails" => [ "type" => "\Iris\TelephoneNumberDetail" ],
"name" => [ "type" => "string" ],
"CustomerOrderId" => [ "type" => "string" ],
"DisconnectTelephoneNumberOrderType" => [ "type" => "\Iris\TelephoneNumberList" ],
"OrderCreateDate" => [ "type" => "string" ],
);
/**
* Constructor
* @param type $parent
* @param array $data
*/
public function __construct($parent, $data)
{
$this->parent = $parent;
parent::_init($parent->get_rest_client(), $parent->get_relative_namespace());
$this->set_data($data);
$this->notes = null;
}
public function get($tndetail = false) {
if($tndetail) {
$options = [ "tndetail" => "true" ];
} else {
$options = [];
}
$data = parent::_get($this->get_id(), $options);
$response = new OrderResponse($data);
if(isset($data['orderRequest']))
$this->set_data($data['orderRequest']);
$response->orderRequest = $this;
return $response;
}
/**
* Make POST request
*/
public function save() {
$data = parent::post(null, "DisconnectTelephoneNumberOrder", $this->to_array());
$this->OrderStatus = new OrderRequestStatus($data);
if(isset($this->OrderStatus->orderRequest)) {
$this->OrderId = $this->OrderStatus->orderRequest->id;
$this->set_data($this->OrderStatus->orderRequest->to_array());
}
}
/**
* Get Entity Id
* @return type
* @throws Exception in case of OrderId is null
*/
private function get_id() {
if(!isset($this->OrderId))
throw new \Exception("You can't use this function without OrderId");
return $this->OrderId;
}
/**
* Get Notes of Entity
* @return \Iris\Notes
*/
public function notes() {
if(is_null($this->notes))
$this->notes = new Notes($this);
return $this->notes;
}
/**
* Provide relative url
* @return string
*/
public function get_appendix() {
return '/'.$this->get_id();
}
}