-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathTraversal.php
285 lines (246 loc) · 5.99 KB
/
Traversal.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
<?php
/**
* ArangoDB PHP client: Traversal
*
* @author Frank Mayer
* @copyright Copyright 2013, triagens GmbH, Cologne, Germany
*/
namespace ArangoDBClient;
/**
* Provides graph traversal
*
* A Traversal object is used to execute a graph traversal on the server side.<br>
* <br>
*
* The object requires the connection object, the startVertex, the edgeCollection and the optional parameters.<br>
* <br>
*
* @link https://www.arangodb.com/docs/stable/http/traversal.html
*
* @deprecated use AQL traversals instead
* @package ArangoDBClient
* @since 1.4
*/
class Traversal
{
/**
* The connection object
*
* @var Connection
*/
private $_connection;
/**
* The traversal's attributes.
*
* @var array
*/
protected $attributes = [];
/**
* count fields
*/
const OPTION_FIELDS = 'fields';
/**
* Collections index
*/
const ENTRY_STARTVERTEX = 'startVertex';
/**
* Action index
*/
const ENTRY_EDGECOLLECTION = 'edgeCollection';
/**
* @var $_action string The action property of the traversal.
*/
protected $_action;
/**
* Initialize the Traversal object
*
* @param Connection $connection - the connection to be used
* @param string $startVertex - start vertex id for query
* @param string $edgeCollection - name of the underlying edge collection
* @param array $options
*
* @throws \ArangoDBClient\ClientException
*/
public function __construct(Connection $connection, $startVertex, $edgeCollection, array $options = null)
{
$this->_connection = $connection;
$this->setStartVertex($startVertex);
$this->setEdgeCollection($edgeCollection);
if (is_array($options)) {
$this->attributes = array_merge($this->attributes, $options);
}
}
/**
* Execute and get the traversal result
*
* @return array $responseArray
* @throws \ArangoDBClient\Exception
* @throws \ArangoDBClient\ClientException
*/
public function getResult()
{
$bodyParams = $this->attributes;
$response = $this->_connection->post(
Urls::URL_TRAVERSAL,
$this->getConnection()->json_encode_wrapper($bodyParams)
);
return $response->getJson();
}
/**
* Return the connection object
*
* @return Connection - the connection object
*/
protected function getConnection()
{
return $this->_connection;
}
/**
* Set name of the user function. It must have at least one namespace, but also can have sub-namespaces.
* correct:
* 'myNamespace:myFunction'
* 'myRootNamespace:mySubNamespace:myFunction'
*
* wrong:
* 'myFunction'
*
*
* @param string $value
*
* @throws \ArangoDBClient\ClientException
*/
public function setStartVertex($value)
{
$this->set(self::ENTRY_STARTVERTEX, (string) $value);
}
/**
* Get name value
*
* @return string name
*/
public function getStartVertex()
{
return $this->get(self::ENTRY_STARTVERTEX);
}
/**
* Set user function code
*
* @param string $value
*
* @throws \ArangoDBClient\ClientException
*/
public function setEdgeCollection($value)
{
$this->set(self::ENTRY_EDGECOLLECTION, (string) $value);
}
/**
* Get user function code
*
* @return string name
*/
public function getEdgeCollection()
{
return $this->get(self::ENTRY_EDGECOLLECTION);
}
/**
* Set an attribute
*
* @param $key
* @param $value
*
* @throws ClientException
*/
public function set($key, $value)
{
if (!is_string($key)) {
throw new ClientException('Invalid attribute key');
}
$this->attributes[$key] = $value;
}
/**
* Set an attribute, magic method
*
* This is a magic method that allows the object to be used without
* declaring all attributes first.
*
* @throws ClientException
*
* @param string $key - attribute name
* @param mixed $value - value for attribute
*
* @magic
*
* @return void
*/
public function __set($key, $value)
{
switch ($key) {
case self::ENTRY_STARTVERTEX :
$this->setStartVertex($value);
break;
case self::ENTRY_EDGECOLLECTION :
$this->setEdgeCollection($value);
break;
default:
$this->set($key, $value);
break;
}
}
/**
* Get an attribute
*
* @magic
*
* @param string $key - name of attribute
*
* @return mixed - value of attribute, NULL if attribute is not set
*/
public function get($key)
{
if (isset($this->attributes[$key])) {
return $this->attributes[$key];
}
return null;
}
/**
* Get an attribute, magic method
*
* This function is mapped to get() internally.
*
* @magic
*
* @param string $key - name of attribute
*
* @return mixed - value of attribute, NULL if attribute is not set
*/
public function __get($key)
{
return $this->get($key);
}
/**
* Is triggered by calling isset() or empty() on inaccessible properties.
*
* @param string $key - name of attribute
*
* @return boolean returns true or false (set or not set)
*/
public function __isset($key)
{
if (isset($this->attributes[$key])) {
return true;
}
return false;
}
/**
* Returns the action string
*
* @magic
*
* @return string - the current action string
*/
public function __toString()
{
return $this->_action;
}
}
class_alias(Traversal::class, '\triagens\ArangoDb\Traversal');