-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathRestEntry.php
104 lines (86 loc) · 2.79 KB
/
RestEntry.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
<?php
namespace Iris;
use AllowDynamicProperties;
#[AllowDynamicProperties]
abstract class RestEntry{
protected $client = Null;
protected $namespace = Null;
protected $fields = array();
protected $required = array();
protected function _init($client, $namespace)
{
if (!$client)
{
$this->client = new Client(\Iris\Config::REST_LOGIN, \Iris\Config::REST_PASS, Array('url' => \Iris\Config::REST_URL));
}
else
{
$this->client = $client;
}
if (!is_null($namespace))
{
$this->namespace = $namespace;
}
else
{
$this->namespace = strtolower(get_class($this));
}
}
protected function is_assoc($array) {
$array = array_keys($array); return ($array !== array_keys($array));
}
protected function get_url($path)
{
if(is_null($path))
return $this->namespace;
return sprintf('%s/%s', $this->namespace, $path);
}
protected function _get($url, $options=Array(), $defaults = Array(), $required = Array())
{
$url = $this->get_url($url);
$this->set_defaults($options, $defaults);
$this->check_required($options, $required);
return $this->client->get($url, ['query' => $options]);
}
public function raw_file_post($url, $body, $headers = array()) {
$url = $this->get_url($url);
return $this->client->raw_file_post($url, $body, $headers);
}
public function raw_file_put($url, $body, $headers = array()) {
$url = $this->get_url($url);
return $this->client->raw_file_put($url, $body, $headers);
}
protected function post($url, $base_node, $data)
{
$url = $this->get_url($url);
return $this->client->post($url, $base_node, $data);
}
protected function put($url, $base_node, $data)
{
$url = $this->get_url($url);
return $this->client->put($url, $base_node, $data);
}
protected function _delete($url)
{
$url = $this->get_url($url);
$this->client->delete($url);
}
protected function set_defaults(&$options, $defaults) {
foreach($defaults as $key => $value) {
if(!array_key_exists($key, $options))
$options[$key] = $value;
}
}
protected function check_required($options, $required) {
foreach($required as $key) {
if(!array_key_exists($key, $options))
throw new ValidateException("Required options '{$key}' should be provided");
}
}
public function get_rest_client() {
return $this->parent->get_rest_client();
}
public function get_relative_namespace() {
return $this->parent->get_relative_namespace().$this->get_appendix();
}
}