-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathClientObject.php
341 lines (291 loc) · 8.05 KB
/
ClientObject.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
<?php
namespace Office365\Runtime;
use Exception;
use Office365\Runtime\Actions\ReadEntityQuery;
use Office365\Runtime\Http\RequestOptions;
use Office365\Runtime\OData\ODataQueryOptions;
/**
* Represents OData Entity
*/
class ClientObject
{
/**
* @var ClientRuntimeContext
*/
protected $context;
/**
* @var ResourcePath
*/
protected $resourcePath;
/**
* @var array
*/
protected $properties;
/**
* @var array
*/
protected $changes = array();
/**
* @var ClientObjectCollection
*/
protected $parentCollection;
/**
* @var ODataQueryOptions
*/
protected $queryOptions;
/**
* @var string
*/
protected $namespace;
/**
* ClientObject constructor.
* @param ClientRuntimeContext $ctx
* @param ResourcePath|null $resourcePath
* @param ODataQueryOptions|null $queryOptions
* @param string|null $namespace
*/
public function __construct(ClientRuntimeContext $ctx,
?ResourcePath $resourcePath = null,
?ODataQueryOptions $queryOptions = null,
$namespace=null)
{
$this->context = $ctx;
$this->resourcePath = $resourcePath;
$this->namespace = $namespace;
$this->properties = array();
$this->queryOptions = $queryOptions;
if (!isset($this->queryOptions))
$this->queryOptions = new ODataQueryOptions();
else
$this->queryOptions = $queryOptions;
}
/**
* @return self
*/
public function get(){
$this->getContext()->load($this);
return $this;
}
/**
* @return RequestOptions
*/
public function buildRequest(){
return $this->getContext()->buildRequest();
}
/**
* Submit a client request
* @return self
*/
public function executeQuery(){
$this->getContext()->executeQuery();
return $this;
}
/**
* Submit a query along with handling transient failures
* @param int $retryCount
* @param int $delaySecs
* @return self
* @throws Exception
*/
public function executeQueryRetry($retryCount=3,$delaySecs=10){
$this->getContext()->executeQueryRetry($retryCount,$delaySecs);
return $this;
}
/**
* @return ODataQueryOptions
*/
public function getQueryOptions()
{
return $this->queryOptions;
}
/**
* @return self
*/
public function getParentCollection()
{
return $this->parentCollection;
}
/**
* @return ClientRuntimeContext
*/
public function getContext()
{
return $this->context;
}
/**
* Removes object from parent collection
*/
protected function removeFromParentCollection()
{
if ($this->parentCollection === null) {
return;
}
$this->parentCollection->removeChild($this);
}
/**
* Resolve the resource path
* @return ResourcePath
*/
public function getResourcePath()
{
return $this->resourcePath;
}
/**
* Resolve the resource path
* @return string
*/
public function getResourceUrl()
{
$url = $this->getContext()->getServiceRootUrl() . $this->getResourcePath()->toUrl();
if (!$this->getQueryOptions()->isEmpty()) {
$url .= '?' . $this->getQueryOptions()->toUrl();
}
return $url;
}
/**
* Directs that related records should be retrieved in the record or collection being retrieved.
* @param string|string[] $value
* @return ClientObject $this
*/
public function expand($value)
{
if(is_array($value))
$this->queryOptions->Expand = implode(',', $value);
else
$this->queryOptions->Expand = $value;
return $this;
}
/**
* Specifies a subset of properties to return.
* @param string|string[] $value
* @return ClientObject $this
*/
public function select($value)
{
if(is_array($value))
$this->queryOptions->Select = implode(',', $value);
else
$this->queryOptions->Select = $value;
return $this;
}
/**
* Gets entity type name
* @return ServerTypeInfo
*/
public function getServerTypeInfo()
{
return ServerTypeInfo::resolve($this);
}
/**
* @return array
*/
function toJson($onlyChanges=false)
{
if($onlyChanges){
$result = array();
foreach ($this->properties as $k => $v) {
if (array_key_exists($k, $this->changes)) {
$result[$k] = $v;
}
}
return $result;
}
return $this->properties;
}
/**
* Determine whether client object property has been loaded
* @param string $name
* @return bool
*/
public function isPropertyAvailable($name)
{
return isset($this->properties[$name]);
}
/**
* Determine whether client object has been retrieved from the server
* @return bool
*/
public function getServerObjectIsNull(){
return is_null($this->properties);
}
/**
* A preferred way of getting the client object property
* @param string $name
* @param mixed|null $defaultValue
* @return mixed|null
*/
public function getProperty($name,$defaultValue=null,$resolve=false)
{
if($this->isPropertyAvailable($name))
return $this->properties[$name];
else if(is_null($defaultValue) && $resolve) {
$getter = "get$name";
if(method_exists($this,$getter)) {
$defaultValue = $this->$getter();
}
}
return $defaultValue;
}
/**
* A preferred way of setting the client object property
* @param string $name
* @param mixed $value
* @param bool $persistChanges
* @return $this
*/
public function setProperty($name, $value, $persistChanges = true)
{
if($persistChanges)
$this->changes[$name] = true;
if($value instanceof ClientObject || $value instanceof ClientValue){
$this->properties[$name] = $value;
return $this;
}
if(!is_null($value)) {
$childProperty = $this->getProperty($name,null,true);
if($childProperty instanceof ClientObject || $childProperty instanceof ClientValue) {
foreach ($value as $k=>$v){
$childProperty->setProperty($k,$v,False);
}
$this->properties[$name] = $childProperty;
}
else
$this->properties[$name] = $value;
}
else
$this->properties[$name] = $value;
return $this;
}
/**
* Ensures property is loaded
* @param string $propName
* @param callable $loadedCallback
* @return self
*/
public function ensureProperty($propName, $loadedCallback=null)
{
return $this->ensureProperties(array($propName), $loadedCallback);
}
/**
* Ensure properties are loaded
* @param array $propNames
* @param callable $loadedCallback
* @return self
*/
public function ensureProperties($propNames, $loadedCallback=null){
$result = array_filter($propNames,function ($name){
return $this->isPropertyAvailable($name) === false;
});
if(count($result) === 0) {
if(is_callable($loadedCallback)) call_user_func($loadedCallback, $this);
} else {
$qry = new ReadEntityQuery($this, $propNames);
$this->getContext()->addQueryAndResultObject($qry, $this);
$this->getContext()->afterExecuteQuery(function ($activeQuery) use ($qry,$loadedCallback){
if($activeQuery->getId() == $qry->getId())
if(is_callable($loadedCallback)) call_user_func($loadedCallback, $this);
});
}
return $this;
}
}