-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActiveResource.php
719 lines (640 loc) · 17.7 KB
/
ActiveResource.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
<?php
/**
* Basic implementation of the Ruby on Rails ActiveResource REST client.
* Intended to work with RoR-based REST servers, which all share similar
* API patterns.
*
* Usage:
*
* <?php
*
* require_once ('ActiveResource.php');
*
* class Song extends ActiveResource {
* var $site = 'http://localhost:3000/';
* var $element_name = 'songs';
* }
*
* // create new item
* $song = new Song (array ('artist' => 'Joe Cocker', 'title' => 'A Little Help From My Friends'));
* $song->save ();
*
* // fetch and update an item
* $song->find (44)->set ('title', 'The River')->save ();
*
* // line by line
* $song->find (44);
* $song->title = 'The River';
* $song->save ();
*
* // get all songs
* $songs = $song->find ('all');
*
* // delete a song
* $song->find (44);
* $song->destroy ();
*
* // custom method
* $songs = $song->get ('by_year', array ('year' => 1999));
*
* ?>
*
* @author John Luxford <lux@companymachine.com>
* @version 0.14 beta
* @license http://opensource.org/licenses/lgpl-2.1.php
*/
class ActiveResource {
/**
* The REST site address, e.g., http://user:pass@domain:port/
*/
var $site = false;
/**
* Add any extra params to the end of the url eg: API key
*/
var $extra_params = false;
/**
* HTTP Basic Authentication user
*/
var $user = null;
/**
* HTTP Basic Authentication password
*/
var $password = null;
/**
* The remote collection, e.g., person or thing
*/
var $element_name = false;
/**
* Pleural form of the element name, e.g., people or things
*/
var $element_name_plural = '';
/**
* The data of the current object, accessed via the anonymous get/set methods.
*/
var $_data = array ();
/**
* An error message if an error occurred.
*/
var $error = false;
/**
* The error number if an error occurred.
*/
var $errno = false;
/**
* The request that was sent to the server.
*/
var $request_body = '';
/**
* The request headers that was sent to the server.
*/
var $request_headers = array ();
/**
* The complete URL that the request was sent to.
*/
var $request_uri = '';
/**
* The request method sent to the server.
*/
var $request_method = '';
/**
* The response code returned from the server.
*/
var $response_code = false;
/**
* The raw response headers sent from the server.
*/
var $response_headers = '';
/**
* The response body sent from the server.
*/
var $response_body = '';
/**
* The format requests should use to send data (url or xml).
*/
var $request_format = 'url';
/**
* Corrections to improper pleuralizations.
*/
var $pleural_corrections = array (
'persons' => 'people',
'peoples' => 'people',
'mans' => 'men',
'mens' => 'men',
'womans' => 'women',
'womens' => 'women',
'childs' => 'children',
'childrens' => 'children',
'sheeps' => 'sheep',
'octopuses' => 'octopi',
'quizs' => 'quizzes',
'axises' => 'axes',
'buffalos' => 'buffaloes',
'tomatos' => 'tomatoes',
'potatos' => 'potatoes',
'oxes' => 'oxen',
'mouses' => 'mice',
'matrixes' => 'matrices',
'vertexes' => 'vertices',
'indexes' => 'indices',
);
/**
* Constructor method.
*/
function __construct ($data = array ()) {
$this->_data = $data;
// Allow class-defined element name or use class name if not defined
$this->element_name = $this->element_name ? $this->element_name : strtolower (get_class ($this));
// Detect for namespaces, and take just the class name
if (stripos ($this->element_name, '\\')) {
$classItems = explode ('\\', $this->element_name);
$this->element_name = end ($classItems);
}
// Get the plural name after removing namespaces
$this->element_name_plural = $this->pluralize ($this->element_name);
// if configuration file (config.ini.php) exists use it (overwrite class properties/attribute values).
$config_file_path = dirname (__FILE__) . '/' . 'config.ini.php';
if (file_exists ($config_file_path)) {
$properties = parse_ini_file ($config_file_path);
foreach ($properties as $property => $value )
$this->{$property} = $value;
}
}
/**
* Pluralize the element name.
*/
function pluralize ($word) {
$word .= 's';
$word = preg_replace ('/(x|ch|sh|ss])s$/', '\1es', $word);
$word = preg_replace ('/ss$/', 'ses', $word);
$word = preg_replace ('/([ti])ums$/', '\1a', $word);
$word = preg_replace ('/sises$/', 'ses', $word);
$word = preg_replace ('/([^aeiouy]|qu)ys$/', '\1ies', $word);
$word = preg_replace ('/(?:([^f])fe|([lr])f)s$/', '\1\2ves', $word);
$word = preg_replace ('/ieses$/', 'ies', $word);
if (isset ($this->pleural_corrections[$word])) {
return $this->pleural_corrections[$word];
}
return $word;
}
/**
* For backwards-compatibility.
*/
function pleuralize ($word) {
return $this->pluralize ($word);
}
/**
* Saves a new record or updates an existing one via:
*
* POST /collection.xml
* PUT /collection/id.xml
*/
function save () {
if (isset ($this->_data['id'])) {
return $this->_send_and_receive ($this->site . $this->element_name_plural . '/' . $this->_data['id'] . '.xml', 'PUT', $this->_data); // update
}
return $this->_send_and_receive ($this->site . $this->element_name_plural . '.xml', 'POST', $this->_data); // create
}
/**
* Deletes a record via:
*
* DELETE /collection/id.xml
*/
function destroy () {
return $this->_send_and_receive ($this->site . $this->element_name_plural . '/' . $this->_data['id'] . '.xml', 'DELETE');
}
/**
* Finds a record or records via:
*
* GET /collection/id.xml
* GET /collection.xml
*/
function find ($id = false, $options = array ()) {
if (! $id) {
$id = $this->_data['id'];
}
$options_string = '';
if (count ($options) > 0) {
$options_string = '?' . http_build_query ($options);
}
if ($id == 'all') {
$url = $this->site . $this->element_name_plural . '.xml';
return $this->_send_and_receive ($url . $options_string, 'GET');
}
return $this->_send_and_receive ($this->site . $this->element_name_plural . '/' . $id . '.xml' . $options_string, 'GET');
}
/**
* Gets a specified custom method on the current object via:
*
* GET /collection/id/method.xml
* GET /collection/id/method.xml?attr=value
*/
function get ($method, $options = array ()) {
$req = $this->site . $this->element_name_plural;
if (isset ($this->_data['id']) && $this->_data['id']) {
$req .= '/' . $this->_data['id'];
}
$req .= '/' . $method . '.xml';
if (count ($options) > 0) {
$req .= '?' . http_build_query ($options);
}
return $this->_send_and_receive ($req, 'GET');
}
/**
* Posts to a specified custom method on the current object via:
*
* POST /collection/id/method.xml
*/
function post ($method, $options = array (), $start_tag = false) {
$req = $this->site . $this->element_name_plural;
if ($this->_data['id']) {
$req .= '/' . $this->_data['id'];
}
$req .= '/' . $method . '.xml';
return $this->_send_and_receive ($req, 'POST', $options, $start_tag);
}
/**
* Puts to a specified custom method on the current object via:
*
* PUT /collection/id/method.xml
*/
function put ($method, $options = array (), $options_as_xml = false, $start_tag = false) {
$req = $this->site . $this->element_name_plural;
if ($this->_data['id']) {
$req .= '/' . $this->_data['id'];
}
$req .= '/' . $method . '.xml';
if ($options_as_xml) {
return $this->_send_and_receive ($req, 'PUT', $options, $start_tag);
}
if (count ($options) > 0) {
$req .= '?' . http_build_query ($options);
}
return $this->_send_and_receive ($req, 'PUT');
}
/**
* Simple recursive function to build an XML response.
*/
function _build_xml ($k, $v) {
if (is_object ($v) && strtolower (get_class ($v)) == 'simplexmlelement') {
return preg_replace ('/<\?xml(.*?)\?>\n*/', '', $v->asXML ());
}
$res = '';
$attrs = '';
if (! is_numeric ($k)) {
$res = '<' . $k . '{{attributes}}>';
}
if (is_object ($v)) {
$v = (array) $v;
}
if (is_array ($v)) {
foreach ($v as $key => $value) {
// handle attributes of repeating tags
if (is_numeric ($key) && is_array ($value)) {
foreach ($value as $sub_key => $sub_value) {
if (strpos ($sub_key, '@') === 0) {
$attrs .= ' ' . substr ($sub_key, 1) . '="' . $this->_xml_entities ($sub_value) . '"';
unset ($value[$sub_key]);
continue;
}
}
}
if (strpos ($key, '@') === 0) {
$attrs .= ' ' . substr ($key, 1) . '="' . $this->_xml_entities ($value) . '"';
continue;
}
$res .= $this->_build_xml ($key, $value);
$keys = array_keys ($v);
if (is_numeric ($key) && $key !== array_pop ($keys)) {
// reset attributes on repeating tags
if (is_array ($value)) {
$res = str_replace ('<' . $k . '{{attributes}}>', '<' . $k . $attrs . '>', $res);
$attrs = '';
}
$res .= '</' . $k . ">\n<" . $k . '{{attributes}}>';
}
}
} else {
$res .= $this->_xml_entities ($v);
}
if (! is_numeric ($k)) {
$res .= '</' . $k . ">\n";
}
$res = str_replace ('<' . $k . '{{attributes}}>', '<' . $k . $attrs . '>', $res);
return $res;
}
/**
* Returns the unicode value of the string
*
* @param string $c The source string
* @param integer $i The index to get the char from (passed by reference for use in a loop)
* @return integer The value of the char at $c[$i]
* @author kerry at shetline dot com
* @author Dom Hastings - modified to suit my needs
* @see http://www.php.net/manual/en/function.ord.php#78032
*/
function _unicode_ord (&$c, &$i = 0) {
// get the character length
$l = strlen($c);
// copy the offset
$index = $i;
// check it's a valid offset
if ($index >= $l) {
return false;
}
// check the value
$o = ord($c[$index]);
// if it's ascii
if ($o <= 0x7F) {
return $o;
// not sure what it is...
} elseif ($o < 0xC2) {
return false;
// if it's a two-byte character
} elseif ($o <= 0xDF && $index < $l - 1) {
$i += 1;
return ($o & 0x1F) << 6 | (ord($c[$index + 1]) & 0x3F);
// three-byte
} elseif ($o <= 0xEF && $index < $l - 2) {
$i += 2;
return ($o & 0x0F) << 12 | (ord($c[$index + 1]) & 0x3F) << 6 | (ord($c[$index + 2]) & 0x3F);
// four-byte
} elseif ($o <= 0xF4 && $index < $l - 3) {
$i += 3;
return ($o & 0x0F) << 18 | (ord($c[$index + 1]) & 0x3F) << 12 | (ord($c[$index + 2]) & 0x3F) << 6 | (ord($c[$index + 3]) & 0x3F);
// not sure what it is...
} else {
return false;
}
}
/**
* Makes the specified string XML-safe
*
* @param string $s
* @param boolean $hex Whether or not to make hexadecimal entities (as opposed to decimal)
* @return string The XML-safe result
* @author Dom Hastings
* @see http://www.w3.org/TR/REC-xml/#sec-predefined-ent
*/
function _xml_entities ($s, $hex = true) {
// if the string is empty
if (empty($s)) {
// just return it
return $s;
}
$s = (string) $s;
// create the return string
$r = '';
// get the length
$l = strlen($s);
// iterate the string
for ($i = 0; $i < $l; $i++) {
// get the value of the character
$o = $this->_unicode_ord($s, $i);
// valid characters
$v = (
// \t \n <vertical tab> <form feed> \r
($o >= 9 && $o <= 13) ||
// <space> !
($o == 32) || ($o == 33) ||
// # $ %
($o >= 35 && $o <= 37) ||
// ( ) * + , - . /
($o >= 40 && $o <= 47) ||
// numbers
($o >= 48 && $o <= 57) ||
// : ;
($o == 58) || ($o == 59) ||
// = ?
($o == 61) || ($o == 63) ||
// @
($o == 64) ||
// uppercase
($o >= 65 && $o <= 90) ||
// [ \ ] ^ _ `
($o >= 91 && $o <= 96) ||
// lowercase
($o >= 97 && $o <= 122) ||
// { | } ~
($o >= 123 && $o <= 126)
);
// if it's valid, just keep it
if ($v) {
$r .= $s[$i];
// &
} elseif ($o == 38) {
$r .= '&';
// <
} elseif ($o == 60) {
$r .= '<';
// >
} elseif ($o == 62) {
$r .= '>';
// '
} elseif ($o == 39) {
$r .= ''';
// "
} elseif ($o == 34) {
$r .= '"';
// unknown, add it as a reference
} elseif ($o > 0) {
if ($hex) {
$r .= '&#x'.strtoupper(dechex($o)).';';
} else {
$r .= '&#'.$o.';';
}
}
}
return $r;
}
/**
* Build the request, call _fetch() and parse the results.
*/
function _send_and_receive ($url, $method, $data = array (), $start_tag = false) {
$params = '';
$el = $start_tag ? $start_tag : $this->element_name; // Singular this time
if ($this->request_format == 'url') {
foreach ($data as $k => $v) {
if ($k != 'id' && $k != 'created-at' && $k != 'updated-at') {
$params .= '&' . $el . '[' . str_replace ('-', '_', $k) . ']=' . rawurlencode ($v);
}
}
$params = substr ($params, 1);
} elseif ($this->request_format == 'xml') {
$params = '<?xml version="1.0" encoding="UTF-8"?><' . $el . ">\n";
foreach ($data as $k => $v) {
if ($k != 'id' && $k != 'created-at' && $k != 'updated-at') {
$params .= $this->_build_xml ($k, $v);
}
}
$params .= '</' . $el . '>';
}
if ($this->extra_params !== false) {
$url = $url . $this->extra_params;
}
$this->request_body = $params;
$this->request_uri = $url;
$this->request_method = $method;
$res = $this->_fetch ($url, $method, $params);
if ($res === false) {
return $this;
}
// Keep splitting off any top headers until we get to the (XML) body:
while (strpos($res, "HTTP/") === 0) {
list ($headers, $res) = explode ("\r\n\r\n", $res, 2);
$this->response_headers = $headers;
$this->response_body = $res;
if (preg_match ('/HTTP\/[0-9]\.[0-9] ([0-9]+)/', $headers, $regs)) {
$this->response_code = $regs[1];
} else {
$this->response_code = false;
}
if (! $res) {
return $this;
} elseif ($res == ' ') {
$this->error = 'Empty reply';
return $this;
}
}
// parse XML response
$xml = new SimpleXMLElement ($res);
// normalize xml element name in case rails ressource contains an underscore
if (str_replace ('-', '_', $xml->getName ()) == $this->element_name_plural) {
// multiple
$res = array ();
$cls = get_class ($this);
foreach ($xml->children () as $child) {
$obj = new $cls;
foreach ((array) $child as $k => $v) {
$k = str_replace ('-', '_', $k);
if (isset ($v['nil']) && $v['nil'] == 'true') {
continue;
} else {
$obj->_data[$k] = $v;
}
}
$res[] = $obj;
}
return $res;
} elseif ($xml->getName () == 'errors') {
// parse error message
$this->error = $xml->error;
$this->errno = $this->response_code;
return false;
}
foreach ((array) $xml as $k => $v) {
$k = str_replace ('-', '_', $k);
if (isset ($v['nil']) && $v['nil'] == 'true') {
continue;
} else {
$this->_data[$k] = $v;
}
}
return $this;
}
/**
* Fetch the specified request via cURL.
*/
function _fetch ($url, $method, $params) {
if (! extension_loaded ('curl')) {
$this->error = 'cURL extension not loaded.';
return false;
}
$ch = curl_init ();
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_MAXREDIRS, 3);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_VERBOSE, 0);
curl_setopt ($ch, CURLOPT_HEADER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
/* HTTP Basic Authentication */
if ($this->user && $this->password) {
curl_setopt ($ch, CURLOPT_USERPWD, $this->user . ":" . $this->password);
}
if ($this->request_format == 'xml') {
$this->request_headers = array_merge ($this->request_headers, array ("Expect:", "Content-Type: text/xml", "Length: " . strlen ($params)));
}
switch ($method) {
case 'POST':
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $params);
break;
case 'DELETE':
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'DELETE');
break;
case 'PUT':
curl_setopt ($ch, CURLOPT_CUSTOMREQUEST, 'PUT');
curl_setopt ($ch, CURLOPT_POSTFIELDS, $params);
break;
case 'GET':
default:
break;
}
if (count ($this->request_headers)) {
curl_setopt ($ch, CURLOPT_HTTPHEADER, $this->request_headers);
}
$res = curl_exec ($ch);
$http_code = curl_getinfo ($ch, CURLINFO_HTTP_CODE);
// Check HTTP status code for denied access
if ($http_code == 401) {
$this->errno = $http_code;
$this->error = "HTTP Basic: Access denied.";
curl_close ($ch);
return false;
}
// Check HTTP status code for rate limit
if ($http_code == 429) {
if (preg_match ('/Retry-After: ([0-9]+)/', $res, $retry_after)) {
sleep(intval($retry_after[1]));
return $this->_fetch ($url, $method, $params);
}
$this->errno = $http_code;
$this->error = "Too Many Requests";
curl_close ($ch);
return false;
}
if (! $res) {
$this->errno = curl_errno ($ch);
$this->error = curl_error ($ch);
curl_close ($ch);
return false;
}
curl_close ($ch);
return $res;
}
/**
* Getter for internal object data.
*/
function __get ($k) {
if (isset ($this->_data[$k])) {
return $this->_data[$k];
}
return $this->{$k};
}
/**
* Setter for internal object data.
*/
function __set ($k, $v) {
if (isset ($this->_data[$k])) {
$this->_data[$k] = $v;
return;
}
$this->{$k} = $v;
}
/**
* Quick setter for chaining methods.
*/
function set ($k, $v = false) {
if (! $v && is_array ($k)) {
foreach ($k as $key => $value) {
$this->_data[$key] = $value;
}
} else {
$this->_data[$k] = $v;
}
return $this;
}
}
?>