-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrestle.php
811 lines (748 loc) · 25.5 KB
/
Trestle.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
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
<?php
/**
* Trestle for PHP
*
* Copyright (c) 2011, Talldude Networks, LLC. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/**
* Trestle Class
*
* @link https://github.com/talldude/trestle-php-client
* @version 0.0.1
*/
class Trestle
{
// Endpoints
public $audio_service_url = 'https://www.trestleapp.com/v1/audio';
public $email_service_url = 'https://www.trestleapp.com/v1/email';
public $geo_service_url = 'https://www.trestleapp.com/v1/geo';
public $image_service_url = 'https://www.trestleapp.com/v1/image';
public $job_service_url = 'https://www.trestleapp.com/v1/job';
public $mailbox_service_url = 'https://www.trestleapp.com/v1/mailbox';
public $object_service_url = 'https://www.trestleapp.com/v1/object';
public $s3_service_url = 'https://www.trestleapp.com/v1/s3';
public $stat_service_url = 'https://www.trestleapp.com/v1/stat';
public $user_service_url = 'https://www.trestleapp.com/v1/user';
// Error bucket
private $errors = false;
// Credentials
private $__app_key = null;
private $__app_secret = null;
// default return format from methods
private $__return_type = 'array';
/**
* Constructor
*
* @param string Trestle APP Key
* @param string Trestle App Secret
* @return void
*/
public function __construct($app_key = null, $app_secret = null)
{
if (!function_exists('curl_init')) {
trigger_error('error: PHP cURL support is required for Trestle',E_USER_ERROR);
}
$this->__app_key = $app_key;
$this->__app_secret = $app_secret;
}
//-------------------------------
// AUDIO service
//-------------------------------
/**
* AudioMasterCreate - create a new Master Audio file
*
* @param array Master Audio file metadata
* @return string|array|object on success, bool false on failure
*/
public function AudioMasterCreate(&$_args)
{
if (!isset($_args['file']{0}) || !is_file($_args['file'])) {
$this->_set_error('error: audio file is required');
return false;
}
if (!isset($_args['storage']{0})) {
$this->_set_error('error: storage parameter required');
return false;
}
return $this->_request($this->audio_service_url,'POST',$_args);
}
/**
* AudioMixCreate - create a new Mix from a Master Audio file
*
* @param string Master ID to create mix from
* @param array Audio Mix Metadata
* @return string|array|object on success, bool false on failure
*/
public function AudioMixCreate($id,&$_args)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->audio_service_url ."/{$id}",'POST',$_args);
}
/**
* AudioUpdate - Update meta information about an existing Master Audio file or Audio Mix
*
* @param string ID to update
* @param array Metadata to save
* @return string|array|object on success, bool false on failure
*/
public function AudioUpdate($id,&$_args)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->audio_service_url ."/{$id}",'PUT',$_args);
}
/**
* AudioInfo - Information about a Master Audio file or Audio Mix
*
* @param string ID to get info about
* @return string|array|object on success, bool false on failure
*/
public function AudioInfo($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->audio_service_url ."/{$id}",'GET');
}
/**
* AudioList - list audio objects based on match parameters
*
* @param array List/Match parameters
* @return string|array|object on success, bool false on failure
*/
public function AudioList(&$_args)
{
return $this->_request($this->audio_service_url,'GET');
}
/**
* AudioDelete - Delete a Master Audio file or Audio Mix
*
* @param string ID to delete
* @return string|array|object on success, bool false on failure
*/
public function AudioDelete($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->audio_service_url ."/{$id}",'DELETE');
}
//-------------------------------
// EMAIL Service
//-------------------------------
/**
* EmailSend - send an email through the mailer service
*
* @param string IP Address or Hostname
* @return string|array|object on success, bool false on failure
*/
public function EmailSend(&$_args)
{
if (!isset($_args['to']{0}) || !filter_var($_args['to'],FILTER_VALIDATE_EMAIL)) {
$this->_set_error('error: invalid To Email Address');
return false;
}
if (!isset($_args['subject']{0})) {
$this->_set_error('error: Email subject required');
return false;
}
if (!isset($_args['message']{0})) {
$this->_set_error('error: Email message required');
return false;
}
if (isset($_args['from']{0}) || !filter_var($_args['from'],FILTER_VALIDATE_EMAIL)) {
$this->_set_error('error: invalid From Email Address');
return false;
}
return $this->_request($this->email_service_url,'POST',$_args);
}
//-------------------------------
// GEO Service
//-------------------------------
/**
* GeoInfo - get info about specific ip/hostname
*
* @param string IP Address or Hostname
* @return string|array|object on success, bool false on failure
*/
public function GeoInfo($ip)
{
return $this->_request($this->geo_service_url ."/{$ip}",'GET');
}
//-------------------------------
// IMAGE service
//-------------------------------
/**
* ImageMasterCreate - create a new Master Image file
*
* @param array Master Image file metadata
* @return string|array|object on success, bool false on failure
*/
public function ImageMasterCreate(&$_args)
{
if (!isset($_args['file']{0}) || !is_file($_args['file'])) {
$this->_set_error('error: image file is required');
return false;
}
if (!isset($_args['storage']{0})) {
$this->_set_error('error: storage parameter required');
return false;
}
return $this->_request($this->image_service_url,'POST',$_args);
}
/**
* ImageThumbCreate - create a new Thumbnail from a Master Image file
*
* @param string Master ID to create thumb from
* @param array Image Thumbnail Metadata
* @return string|array|object on success, bool false on failure
*/
public function ImageThumbCreate($id,&$_args)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->image_service_url ."/{$id}",'POST',$_args);
}
/**
* ImageUpdate - Update meta information about an existing Master Image file or Image Thumbnail
*
* @param string ID to update
* @param array Metadata to save
* @return string|array|object on success, bool false on failure
*/
public function ImageUpdate($id,&$_args)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->image_service_url ."/{$id}",'PUT',$_args);
}
/**
* ImageInfo - Information about a Master Image file or Image Thumbnail
*
* @param string ID to get info about
* @return string|array|object on success, bool false on failure
*/
public function ImageInfo($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->image_service_url ."/{$id}",'GET');
}
/**
* ImageList - list image objects based on match parameters
*
* @param array List/Match parameters
* @return string|array|object on success, bool false on failure
*/
public function ImageList(&$_args)
{
return $this->_request($this->image_service_url,'GET');
}
/**
* ImageDelete - Delete a Master Image file or Image Thumbnail
*
* @param string ID to delete
* @return string|array|object on success, bool false on failure
*/
public function ImageDelete($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->image_service_url ."/{$id}",'DELETE');
}
//-------------------------------
// JOB Service
//-------------------------------
/**
* JobInfo - get info about a specific media conversion job
*
* @param string Job ID
* @return string|array|object on success, bool false on failure
*/
public function JobInfo($id)
{
return $this->_request($this->job_service_url ."/{$id}",'GET');
}
/**
* JobList - list jobs
*
* @param array List parameters
* @return string|array|object on success, bool false on failure
*/
public function JobList(&$_args)
{
return $this->_request($this->job_service_url,'GET',$_args);
}
//-------------------------------
// MAILBOX Service
//-------------------------------
/**
* MailboxCreate - create a new IMAP/POP3 mailbox
*
* @param array Mailbox parameters
* @return string|array|object on success, bool false on failure
*/
public function MailboxCreate(&$_args)
{
if (!isset($_args['mailbox']{0}) || !filter_var($_args['mailbox'],FILTER_VALIDATE_EMAIL)) {
$this->_set_error('error: invalid mailbox Email Address');
return false;
}
if (!isset($_args['password']{2})) {
$this->_set_error('error: invalid mailbox password - must be at least 3 characters');
return false;
}
return $this->_request($this->mailbox_service_url,'POST',$_args);
}
/**
* MailboxInfo - get information about specific mailbox
*
* @param string Mailbox email address
* @return string|array|object on success, bool false on failure
*/
public function MailboxInfo($mailbox)
{
if (!isset($mailbox{0}) || !filter_var($mailbox,FILTER_VALIDATE_EMAIL)) {
$this->_set_error('error: invalid mailbox Email Address');
return false;
}
return $this->_request($this->mailbox_service_url ."/{$mailbox}",'GET');
}
/**
* MailboxList - list all mailboxes in App Domain
*
* @param array Match/List parameters
* @return string|array|object on success, bool false on failure
*/
public function MailboxList($_args = false)
{
return $this->_request($this->mailbox_service_url,'GET',$_args);
}
/**
* MailboxUpdate - set password or forwarding address for a mailbox
*
* @param string Mailbox email address
* @param array mailbox info to update
* @return string|array|object on success, bool false on failure
*/
public function MailboxUpdate($mailbox,&$_args)
{
if (!isset($mailbox{0}) || !filter_var($mailbox,FILTER_VALIDATE_EMAIL)) {
$this->_set_error('error: invalid mailbox Email Address');
return false;
}
if (isset($_args['password']) && !isset($_args['password']{2})) {
$this->_set_error('error: invalid mailbox password - must be at least 3 characters');
return false;
}
if (isset($_args['forward']) && !filter_var($_args['forward'],FILTER_VALIDATE_EMAIL)) {
$this->_set_error('error: invalid forward Email Address');
return false;
}
return $this->_request($this->mailbox_service_url ."/{$mailbox}",'PUT',$_args);
}
/**
* MailboxDelete - delete a mailbox from the App Domain
*
* @param string Mailbox email address
* @return string|array|object on success, bool false on failure
*/
public function MailboxDelete($mailbox)
{
return $this->_request($this->mailbox_service_url ."/{$mailbox}",'DELETE');
}
//-------------------------------
// Object Service
//-------------------------------
/**
* ObjectCreate - create a new object in the Object Service
*
* @param string Collection
* @param array Object Creation parameters
* @return mixed array on success, error message on failure
*/
public function ObjectCreate($collection,&$_args)
{
$tmp = $this->_request($this->object_service_url ."/{$collection}",'POST',$_args);
return $tmp;
}
/**
* ObjectUpdate - update an existing object account in the Object Service
*
* @param string Collection
* @param string Object ID
* @param array Object Creation parameters
* @return mixed array on success, error message on failure
*/
public function ObjectUpdate($collection,$id,&$_args)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->object_service_url ."/{$collection}/{$id}",'PUT',$_args);
}
/**
* ObjectDelete - delete an existing object from the Object Service
*
* @param string Collection
* @param string Object ID
* @return mixed array on success, error message on failure
*/
public function ObjectDelete($collection,$id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->object_service_url ."/{$collection}/{$id}",'DELETE');
}
/**
* ObjectInfo - get info about specific object
*
* @param string Collection
* @param string Object ID
* @return mixed array on success, error message on failure
*/
public function ObjectInfo($collection,$id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->object_service_url ."/{$collection}/{$id}",'GET');
}
/**
* ObjectSearch - Search object accounts
*
* @param string Collection
* @param array Match parameters
* @return mixed array on success, error message on failure
*/
public function ObjectSearch($collection,&$_args)
{
return $this->_request($this->object_service_url ."/{$collection}",'GET',$_args);
}
//-------------------------------
// S3 service
//-------------------------------
/**
* S3Create - upload a new file to S3 storage
*
* @param array S3 Thumbnail Metadata
* @return string|array|object on success, bool false on failure
*/
public function S3Create(&$_args)
{
if (!isset($_args['file']{0}) || !is_file($_args['file'])) {
$this->_set_error('error: file is required');
return false;
}
return $this->_request($this->s3_service_url,'POST',$_args);
}
/**
* S3Update - Update meta information about an existing S3 file
*
* @param string ID to update
* @param array Metadata to save
* @return string|array|object on success, bool false on failure
*/
public function S3Update($id,&$_args)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->s3_service_url ."/{$id}",'PUT',$_args);
}
/**
* S3Info - Information about an S3 file
*
* @param string ID to get info about
* @return string|array|object on success, bool false on failure
*/
public function S3Info($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->s3_service_url ."/{$id}",'GET');
}
/**
* S3List - list s3 objects based on match parameters
*
* @param array List/Match parameters
* @return string|array|object on success, bool false on failure
*/
public function S3List(&$_args)
{
return $this->_request($this->s3_service_url,'GET');
}
/**
* S3Delete - Delete a Master S3 file or S3 Thumbnail
*
* @param string ID to delete
* @return string|array|object on success, bool false on failure
*/
public function S3Delete($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->s3_service_url ."/{$id}",'DELETE');
}
//-------------------------------
// STAT Service
//-------------------------------
/**
* StatInfo - get services statistics for Trestle App
*
* @param string IP Address or Hostname
* @return string|array|object on success, bool false on failure
*/
public function StatInfo($service,&$_args = false)
{
return $this->_request($this->stat_service_url ."/{$service}",'GET',$_args);
}
//-------------------------------
// USER Service
//-------------------------------
/**
* UserCreate - create a new user in the User Service
*
* @param array Account Creation parameters
* @return mixed array on success, error message on failure
*/
public function UserCreate(&$_args)
{
if (!isset($_args['username']{0}) && !isset($_args['email']{0})) {
$this->_set_error('error: username and/or email required');
return false;
}
if (!isset($_args['password']{0})) {
$this->_set_error('error: password required');
return false;
}
return $this->_request($this->user_service_url,'POST',$_args);
}
/**
* UserUpdate - update an existing user account in the User Service
*
* @param string User ID
* @param array Account Creation parameters
* @return mixed array on success, error message on failure
*/
public function UserUpdate($id,&$_args)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->user_service_url ."/{$id}",'PUT',$_args);
}
/**
* UserDelete - delete an existing user from the User Service
*
* @param string User ID
* @return mixed array on success, error message on failure
*/
public function UserDelete($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->user_service_url ."/{$id}",'DELETE');
}
/**
* UserInfo - get info about specific user account
*
* @param string User ID
* @return mixed array on success, error message on failure
*/
public function UserInfo($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->user_service_url ."/{$id}",'GET');
}
/**
* UserSearch - Search user accounts
*
* @param array Match parameters
* @return mixed array on success, error message on failure
*/
public function UserSearch(&$_args)
{
return $this->_request($this->user_service_url,'GET',$_args);
}
/**
* UserLogin - login a user account
*
* @param array User info
* @return mixed array on success, error message on failure
*/
public function UserLogin(&$_args)
{
if (!isset($_args['username']{0}) && !isset($_args['email']{0})) {
$this->_set_error('error: username and/or email required');
return false;
}
if (!isset($_args['password']{0})) {
$this->_set_error('error: password required');
return false;
}
return $this->_request($this->user_service_url .'/login','GET');
}
/**
* UserForgot - Initiate forgot login process for user
*
* @param array User info
* @return mixed array on success, error message on failure
*/
public function UserForgot(&$_args)
{
if (!isset($_args['username']{0}) && !isset($_args['email']{0})) {
$this->_set_error('error: username and/or email required');
return false;
}
return $this->_request($this->user_service_url .'/forgot','POST');
}
/**
* UserResend - Resend signup activation to user
*
* @param string User ID
* @return mixed array on success, error message on failure
*/
public function UserResend($id)
{
if (!$this->_check_id($id)) { return false; }
return $this->_request($this->user_service_url ."/{$id}/resend",'POST');
}
//-------------------------------
// Helper functions
//-------------------------------
/**
* SetReturnType
*
* @param string return type of "json", "array", "object"
* @return null
*/
public function SetReturnType($type)
{
$this->__return_type = $type;
}
/**
* GetError
* Returns an array of any errors encountered
*
* @return mixed Returns array on succes, false if no errors
*/
public function GetError()
{
if ($this->errors) {
return $this->errors;
}
return false;
}
/**
* _set_error
*
* @param string error message
* @return null
*/
private function _set_error($msg)
{
if (!$this->errors) {
$this->errors = array();
}
$this->errors[] = $msg;
}
/**
* _check_id
* simple validation that a given Trestle ID is the right length
*
* @param string 15 character unique Trestle ID generated for object
* @return bool
*/
private function _check_id($id)
{
if (strlen($id) === 15) {
return true;
}
$this->_set_error('error: invalid id - must be a valid, existing id');
return false;
}
/**
* _request
* try/catch wrapper for _trestle_request
*
* @param string $url Url to send request to
* @param string $method Method of request (POST/GET/PUT/DELETE)
* @param array $_args POST/PUT key => value params
* @return string
*/
private function _request($url,$method,&$_args = false)
{
try {
$_json = $this->_trestle_request($url,$method,$_args);
}
catch (Exception $e) {
return $e->getMessage();
}
return $_json;
}
/**
* _trestle_request
* use cURL to send a request to Trestle
*
* @param string $url Url to send request to
* @param string $method Method of request (POST/GET/PUT/DELETE)
* @param array $_args POST/PUT key => value params
* @return array returns result array
*/
private function _trestle_request($url,$method,&$_args = 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,0);
curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,10);
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,0);
curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,0);
curl_setopt($ch,CURLOPT_USERPWD,$this->__app_key .':'. $this->__app_secret);
// Check for file field
if (isset($_args['file']) && strpos($_args['file'],'@') !== 0) {
$_args['file'] = "@{$_args['file']}";
}
switch (strtoupper($method)) {
case 'POST':
curl_setopt($ch,CURLOPT_POST,true);
curl_setopt($ch,CURLOPT_POSTFIELDS,$_args);
break;
case 'GET':
curl_setopt($ch,CURLOPT_POST,false);
if (isset($_args) && is_array($_args) && count($_args) > 0) {
curl_setopt($ch,CURLOPT_URL,$url .'?'. http_build_query($_args));
}
break;
case 'PUT':
curl_setopt($ch,CURLOPT_POSTFIELDS,$_args);
curl_setopt($ch,CURLOPT_CUSTOMREQUEST,'PUT');
break;
case 'DELETE':
curl_setopt($ch,CURLOPT_POSTFIELDS,$_args);
curl_setopt($ch,CURLOPT_CUSTOMREQUEST,'DELETE');
break;
}
// Execute
$json = curl_exec($ch);
$code = curl_getinfo($ch,CURLINFO_HTTP_CODE);
curl_close($ch);
if ($code < 200 || $code > 299) {
$_tmp = json_decode($json,true);
throw new Exception($_tmp['error']);
}
switch (strtolower($this->__return_type)) {
case 'array':
return json_decode($json,true);
break;
case 'object':
return json_decode($json);
break;
}
return $json;
}
}