forked from plivo/plivo-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plivo.php
1004 lines (764 loc) · 29.9 KB
/
plivo.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
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
namespace Plivo;
use GuzzleHttp\Client;
class PlivoError extends \Exception {}
class RestAPI {
private $api;
private $auth_id;
private $auth_token;
function __construct($auth_id, $auth_token, $url = "https://api.plivo.com", $version = "v1") {
if ((!isset($auth_id)) || (!$auth_id)) {
throw new PlivoError("no auth_id");
}
if ((!isset($auth_token)) || (!$auth_token)) {
throw new PlivoError("no auth_token");
}
$this->version = $version;
$this->api = $url."/".$this->version."/Account/".$auth_id;
$this->auth_id = $auth_id;
$this->auth_token = $auth_token;
}
public static function validate_signature($uri, $post_params=array(), $signature, $auth_token) {
ksort($post_params);
foreach($post_params as $key => $value) {
$uri .= "$key$value";
}
$generated_signature = base64_encode(hash_hmac("sha1",$uri, $auth_token, true));
return $generated_signature == $signature;
}
private function request($method, $path, $params = array()) {
$url = $this->api.rtrim($path, '/').'/';
$client = new Client([
'base_uri' => $url,
'auth' => [$this->auth_id, $this->auth_token],
'http_errors' => false
]);
if (!strcmp($method, "POST")) {
$body = json_encode($params, JSON_FORCE_OBJECT);
$response = $client->post('', array(
'headers' => [ 'Content-type' => 'application/json'],
'body' => $body,
));
} else if (!strcmp($method, "GET")) {
$response = $client->get('', array(
'query' => $params,
));
} else if (!strcmp($method, "DELETE")) {
$response = $client->delete('', array(
'query' => $params,
));
}
$responseData = json_decode($response->getBody(), true);
$status = $response->getStatusCode();
return array("status" => $status, "response" => $responseData);
}
private function pop($params, $key) {
$val = $params[ $key ];
if (!$val) {
throw new PlivoError($key." parameter not found");
}
unset($params[ $key ]);
return $val;
}
## Accounts ##
public function get_account($params = array()) {
return $this->request('GET', '', $params);
}
public function modify_account($params = array()) {
return $this->request('POST', '', $params);
}
public function get_subaccounts($params = array()) {
return $this->request('GET', '/Subaccount/', $params);
}
public function create_subaccount($params = array()) {
return $this->request('POST', '/Subaccount/', $params);
}
public function get_subaccount($params = array()) {
$subauth_id = $this->pop($params, "subauth_id");
return $this->request('GET', '/Subaccount/'.$subauth_id.'/', $params);
}
public function modify_subaccount($params = array()) {
$subauth_id = $this->pop($params, "subauth_id");
return $this->request('POST', '/Subaccount/'.$subauth_id.'/', $params);
}
public function delete_subaccount($params = array()) {
$subauth_id = $this->pop($params, "subauth_id");
return $this->request('DELETE', '/Subaccount/'.$subauth_id.'/', $params);
}
## Applications ##
public function get_applications($params = array()) {
return $this->request('GET', '/Application/', $params);
}
public function create_application($params = array()) {
return $this->request('POST', '/Application/', $params);
}
public function get_application($params = array()) {
$app_id = $this->pop($params, "app_id");
return $this->request('GET', '/Application/'.$app_id.'/', $params);
}
public function modify_application($params = array()) {
$app_id = $this->pop($params, "app_id");
return $this->request('POST', '/Application/'.$app_id.'/', $params);
}
public function delete_application($params = array()) {
$app_id = $this->pop($params, "app_id");
return $this->request('DELETE', '/Application/'.$app_id.'/', $params);
}
## Numbers ##
public function get_numbers($params = array()) {
return $this->request('GET', '/Number/', $params);
}
## This API is available only for US numbers with some limitations ##
## Please use get_number_group and rent_from_number_group instead ##
public function search_numbers($params = array()) {
return $this->request('GET', '/AvailableNumber/', $params);
}
public function get_number($params = array()) {
$number = $this->pop($params, "number");
return $this->request('GET', '/Number/'.$number.'/', $params);
}
public function modify_number($params = array()) {
$number = $this->pop($params, "number");
return $this->request('POST', '/Number/'.$number.'/', $params);
}
## This API is available only for US numbers with some limitations ##
## Please use get_number_group and rent_from_number_group instead ##
public function rent_number($params = array()) {
$number = $this->pop($params, "number");
return $this->request('POST', '/AvailableNumber/'.$number.'/');
}
public function unrent_number($params = array()) {
$number = $this->pop($params, "number");
return $this->request('DELETE', '/Number/'.$number.'/', $params);
}
## Phone Numbers ##
public function search_phone_numbers($params = array()) {
return $this->request('GET', '/PhoneNumber/', $params);
}
public function buy_phone_number($params = array()) {
$number = $this->pop($params, "number");
return $this->request('POST', '/PhoneNumber/'.$number.'/');
}
public function link_application_number($params = array()) {
$number = $this->pop($params, "number");
return $this->request('POST', '/Number/'.$number.'/', $params);
}
public function unlink_application_number($params = array()) {
$number = $this->pop($params, "number");
$params = array("app_id" => "");
return $this->request('POST', '/Number/'.$number.'/', $params);
}
public function get_number_group($params = array()) {
return $this->request('GET', '/AvailableNumberGroup/', $params);
}
public function get_number_group_details($params = array()) {
$group_id = $this->pop($params, "group_id");
return $this->request('GET', '/AvailableNumberGroup/'.$group_id.'/', $params);
}
public function rent_from_number_group($params = array()) {
$group_id = $this->pop($params, "group_id");
return $this->request('POST', '/AvailableNumberGroup/'.$group_id.'/', $params);
}
## Calls ##
public function get_cdrs($params = array()) {
return $this->request('GET', '/Call/', $params);
}
public function get_cdr($params = array()) {
$record_id = $this->pop($params, 'record_id');
return $this->request('GET', '/Call/'.$record_id.'/', $params);
}
public function get_live_calls($params = array()) {
$params["status"] = "live";
return $this->request('GET', '/Call/', $params);
}
public function get_live_call($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
$params["status"] = "live";
return $this->request('GET', '/Call/'.$call_uuid.'/', $params);
}
public function make_call($params = array()) {
return $this->request('POST', '/Call/', $params);
}
public function hangup_all_calls($params = array()) {
return $this->request('DELETE', '/Call/', $params);
}
public function transfer_call($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('POST', '/Call/'.$call_uuid.'/', $params);
}
public function hangup_call($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('DELETE', '/Call/'.$call_uuid.'/', $params);
}
public function record($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('POST', '/Call/'.$call_uuid.'/Record/', $params);
}
public function stop_record($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('DELETE', '/Call/'.$call_uuid.'/Record/', $params);
}
public function play($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('POST', '/Call/'.$call_uuid.'/Play/', $params);
}
public function stop_play($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('DELETE', '/Call/'.$call_uuid.'/Play/', $params);
}
public function speak($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('POST', '/Call/'.$call_uuid.'/Speak/', $params);
}
public function stop_speak($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('DELETE', '/Call/'.$call_uuid.'/Speak/', $params);
}
public function send_digits($params = array()) {
$call_uuid = $this->pop($params, 'call_uuid');
return $this->request('POST', '/Call/'.$call_uuid.'/DTMF/', $params);
}
## Calls requests ##
public function hangup_request($params = array()) {
$request_uuid = $this->pop($params, 'request_uuid');
return $this->request('DELETE', '/Request/'.$request_uuid.'/', $params);
}
## Conferences ##
public function get_live_conferences($params = array()) {
return $this->request('GET', '/Conference/', $params);
}
public function hangup_all_conferences($params = array()) {
return $this->request('DELETE', '/Conference/', $params);
}
public function get_live_conference($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
return $this->request('GET', '/Conference/'.$conference_name.'/', $params);
}
public function hangup_conference($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
return $this->request('DELETE', '/Conference/'.$conference_name.'/', $params);
}
public function hangup_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('DELETE', '/Conference/'.$conference_name.'/Member/'.$member_id.'/', $params);
}
public function play_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('POST', '/Conference/'.$conference_name.'/Member/'.$member_id.'/Play/', $params);
}
public function stop_play_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('DELETE', '/Conference/'.$conference_name.'/Member/'.$member_id.'/Play/', $params);
}
public function speak_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('POST', '/Conference/'.$conference_name.'/Member/'.$member_id.'/Speak/', $params);
}
public function deaf_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('POST', '/Conference/'.$conference_name.'/Member/'.$member_id.'/Deaf/', $params);
}
public function undeaf_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('DELETE', '/Conference/'.$conference_name.'/Member/'.$member_id.'/Deaf/', $params);
}
public function mute_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('POST', '/Conference/'.$conference_name.'/Member/'.$member_id.'/Mute/', $params);
}
public function unmute_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('DELETE', '/Conference/'.$conference_name.'/Member/'.$member_id.'/Mute/', $params);
}
public function kick_member($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
$member_id = $this->pop($params, 'member_id');
return $this->request('POST', '/Conference/'.$conference_name.'/Member/'.$member_id.'/Kick/', $params);
}
public function record_conference($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
return $this->request('POST', '/Conference/'.$conference_name.'/Record/', $params);
}
public function stop_record_conference($params = array()) {
$conference_name = $this->pop($params, 'conference_name');
$conference_name = rawurlencode($conference_name);
return $this->request('DELETE', '/Conference/'.$conference_name.'/Record/', $params);
}
## Recordings ##
public function get_recordings($params = array()) {
return $this->request('GET', '/Recording/', $params);
}
public function get_recording($params = array()) {
$recording_id = $this->pop($params, 'recording_id');
return $this->request('GET', '/Recording/'.$recording_id.'/', $params);
}
public function delete_recording($params = array()) {
$recording_id = $this->pop($params, 'recording_id');
return $this->request('DELETE', '/Recording/'.$recording_id.'/', $params);
}
## Endpoints ##
public function get_endpoints($params = array()) {
return $this->request('GET', '/Endpoint/', $params);
}
public function create_endpoint($params = array()) {
return $this->request('POST', '/Endpoint/', $params);
}
public function get_endpoint($params = array()) {
$endpoint_id = $this->pop($params, 'endpoint_id');
return $this->request('GET', '/Endpoint/'.$endpoint_id.'/', $params);
}
public function modify_endpoint($params = array()) {
$endpoint_id = $this->pop($params, 'endpoint_id');
return $this->request('POST', '/Endpoint/'.$endpoint_id.'/', $params);
}
public function delete_endpoint($params = array()) {
$endpoint_id = $this->pop($params, 'endpoint_id');
return $this->request('DELETE', '/Endpoint/'.$endpoint_id.'/', $params);
}
## Incoming Carriers ##
public function get_incoming_carriers($params = array()) {
return $this->request('GET', '/IncomingCarrier/', $params);
}
public function create_incoming_carrier($params = array()) {
return $this->request('POST', '/IncomingCarrier/', $params);
}
public function get_incoming_carrier($params = array()) {
$carrier_id = $this->pop($params, 'carrier_id');
return $this->request('GET', '/IncomingCarrier/'.$carrier_id.'/', $params);
}
public function modify_incoming_carrier($params = array()) {
$carrier_id = $this->pop($params, 'carrier_id');
return $this->request('POST', '/IncomingCarrier/'.$carrier_id.'/', $params);
}
public function delete_incoming_carrier($params = array()) {
$carrier_id = $this->pop($params, 'carrier_id');
return $this->request('DELETE', '/IncomingCarrier/'.$carrier_id.'/', $params);
}
## Outgoing Carriers ##
public function get_outgoing_carriers($params = array()) {
return $this->request('GET', '/OutgoingCarrier/', $params);
}
public function create_outgoing_carrier($params = array()) {
return $this->request('POST', '/OutgoingCarrier/', $params);
}
public function get_outgoing_carrier($params = array()) {
$carrier_id = $this->pop($params, 'carrier_id');
return $this->request('GET', '/OutgoingCarrier/'.$carrier_id.'/', $params);
}
public function modify_outgoing_carrier($params = array()) {
$carrier_id = $this->pop($params, 'carrier_id');
return $this->request('POST', '/OutgoingCarrier/'.$carrier_id.'/', $params);
}
public function delete_outgoing_carrier($params = array()) {
$carrier_id = $this->pop($params, 'carrier_id');
return $this->request('DELETE', '/OutgoingCarrier/'.$carrier_id.'/', $params);
}
## Outgoing Carrier Routings ##
public function get_outgoing_carrier_routings($params = array()) {
return $this->request('GET', '/OutgoingCarrierRouting/', $params);
}
public function create_outgoing_carrier_routing($params = array()) {
return $this->request('POST', '/OutgoingCarrierRouting/', $params);
}
public function get_outgoing_carrier_routing($params = array()) {
$routing_id = $this->pop($params, 'routing_id');
return $this->request('GET', '/OutgoingCarrierRouting/'.$routing_id.'/', $params);
}
public function modify_outgoing_carrier_routing($params = array()) {
$routing_id = $this->pop($params, 'routing_id');
return $this->request('POST', '/OutgoingCarrierRouting/'.$routing_id.'/', $params);
}
public function delete_outgoing_carrier_routing($params = array()) {
$routing_id = $this->pop($params, 'routing_id');
return $this->request('DELETE', '/OutgoingCarrierRouting/'.$routing_id.'/', $params);
}
## Pricing ##
public function pricing($params = array()) {
return $this->request('GET', '/Pricing/', $params);
}
## Outgoing Carriers ##
## To be added here ##
## Message ##
public function send_message($params = array()) {
return $this->request('POST', '/Message/', $params);
}
public function get_messages($params = array()) {
return $this->request('GET', '/Message/', $params);
}
public function get_message($params = array()) {
$record_id = $this->pop($params, 'record_id');
return $this->request('GET', '/Message/'.$record_id.'/', $params);
}
}
/* XML */
class Element {
protected $nestables = array();
protected $valid_attributes = array();
protected $attributes = array();
protected $name;
protected $body = null;
protected $childs = array();
function __construct($body = '', $attributes = array()) {
$this->attributes = $attributes;
if ((!$attributes) || ($attributes === null)) {
$this->attributes = array();
}
$this->name = preg_replace('/^'.__NAMESPACE__.'\\\\/', '', get_class($this));
//$this->name = get_class($this);
$this->body = $body;
foreach ($this->attributes as $key => $value) {
if (!in_array($key, $this->valid_attributes)) {
throw new PlivoError("invalid attribute ".$key." for ".$this->name);
}
$this->attributes[ $key ] = $this->convert_value($value);
}
}
protected function convert_value($v) {
if ($v === true) {
return "true";
}
if ($v === false) {
return "false";
}
if ($v === null) {
return "none";
}
if ($v === "get") {
return "GET";
}
if ($v === "post") {
return "POST";
}
return $v;
}
function addSpeak($body = null, $attributes = array()) {
return $this->add(new Speak($body, $attributes));
}
function addPlay($body = null, $attributes = array()) {
return $this->add(new Play($body, $attributes));
}
function addDial($body = null, $attributes = array()) {
return $this->add(new Dial($body, $attributes));
}
function addNumber($body = null, $attributes = array()) {
return $this->add(new Number($body, $attributes));
}
function addUser($body = null, $attributes = array()) {
return $this->add(new User($body, $attributes));
}
function addGetDigits($attributes = array()) {
return $this->add(new GetDigits($attributes));
}
function addRecord($attributes = array()) {
return $this->add(new Record($attributes));
}
function addHangup($attributes = array()) {
return $this->add(new Hangup($attributes));
}
function addRedirect($body = null, $attributes = array()) {
return $this->add(new Redirect($body, $attributes));
}
function addWait($attributes = array()) {
return $this->add(new Wait($attributes));
}
function addConference($body = null, $attributes = array()) {
return $this->add(new Conference($body, $attributes));
}
function addPreAnswer($attributes = array()) {
return $this->add(new PreAnswer($attributes));
}
function addMessage($body = null, $attributes = array()) {
return $this->add(new Message($body, $attributes));
}
function addDTMF($body = null, $attributes = array()) {
return $this->add(new DTMF($body, $attributes));
}
public function getName() {
return $this->name;
}
protected function add($element) {
if (!in_array($element->getName(), $this->nestables)) {
throw new PlivoError($element->getName()." not nestable in ".$this->getName());
}
$this->childs[] = $element;
return $element;
}
public function setAttributes($xml) {
foreach ($this->attributes as $key => $value) {
$xml->addAttribute($key, $value);
}
}
public function asChild($xml) {
if ($this->body) {
$child_xml = $xml->addChild($this->getName(), htmlspecialchars($this->body));
} else {
$child_xml = $xml->addChild($this->getName());
}
$this->setAttributes($child_xml);
foreach ($this->childs as $child) {
$child->asChild($child_xml);
}
}
public function toXML($header = false) {
if (!(isset($xmlstr))) {
$xmlstr = '';
}
if ($this->body) {
$xmlstr.= "<".$this->getName().">".htmlspecialchars($this->body)."</".$this->getName().">";
} else {
$xmlstr.= "<".$this->getName()."></".$this->getName().">";
}
if ($header === true) {
$xmlstr = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>".$xmlstr;
}
$xml = new \SimpleXMLElement($xmlstr);
$this->setAttributes($xml);
foreach ($this->childs as $child) {
$child->asChild($xml);
}
return $xml->asXML();
}
public function __toString() {
return $this->toXML();
}
}
class Response extends Element {
protected $nestables = array(
'Speak',
'Play',
'GetDigits',
'Record',
'Dial',
'Redirect',
'Wait',
'Hangup',
'PreAnswer',
'Conference',
'DTMF',
'Message'
);
function __construct() {
parent::__construct(null);
}
public function toXML($header = false) {
$xml = parent::toXML(true);
return $xml;
}
}
class Speak extends Element {
protected $nestables = array();
protected $valid_attributes = array('voice', 'language', 'loop');
function __construct($body, $attributes = array()) {
if (!$body) {
throw new PlivoError("No text set for ".$this->getName());
} else {
$body = mb_encode_numericentity($body, array(0x80, 0xffff, 0, 0xffff));
}
parent::__construct($body, $attributes);
}
}
class Play extends Element {
protected $nestables = array();
protected $valid_attributes = array('loop');
function __construct($body, $attributes = array()) {
parent::__construct($body, $attributes);
if (!$body) {
throw new PlivoError("No url set for ".$this->getName());
}
}
}
class Wait extends Element {
protected $nestables = array();
protected $valid_attributes = array('length', 'silence', 'min_silence', 'minSilence', 'beep');
function __construct($attributes = array()) {
parent::__construct(null, $attributes);
}
}
class Redirect extends Element {
protected $nestables = array();
protected $valid_attributes = array('method');
function __construct($body, $attributes = array()) {
parent::__construct($body, $attributes);
if (!$body) {
throw new PlivoError("No url set for ".$this->getName());
}
}
}
class Hangup extends Element {
protected $nestables = array();
protected $valid_attributes = array('schedule', 'reason');
function __construct($attributes = array()) {
parent::__construct(null, $attributes);
}
}
class GetDigits extends Element {
protected $nestables = array('Speak', 'Play', 'Wait');
protected $valid_attributes = array(
'action',
'method',
'timeout',
'digitTimeout',
'numDigits',
'retries',
'invalidDigitsSound',
'validDigits',
'playBeep',
'redirect',
"finishOnKey",
'digitTimeout',
'log'
);
function __construct($attributes = array()) {
parent::__construct(null, $attributes);
}
}
class Number extends Element {
protected $nestables = array();
protected $valid_attributes = array('sendDigits', 'sendOnPreanswer', 'sendDigitsMode');
function __construct($body, $attributes = array()) {
parent::__construct($body, $attributes);
if (!$body) {
throw new PlivoError("No number set for ".$this->getName());
}
}
}
class User extends Element {
protected $nestables = array();
protected $valid_attributes = array('sendDigits', 'sendOnPreanswer', 'sipHeaders');
function __construct($body, $attributes = array()) {
parent::__construct($body, $attributes);
if (!$body) {
throw new PlivoError("No user set for ".$this->getName());
}
}
}
class Dial extends Element {
protected $nestables = array('Number', 'User');
protected $valid_attributes = array(
'action',
'method',
'timeout',
'hangupOnStar',
'timeLimit',
'callerId',
'callerName',
'confirmSound',
'dialMusic',
'confirmKey',
'redirect',
'callbackUrl',
'callbackMethod',
'digitsMatch',
'digitsMatchBLeg',
'sipHeaders'
);
function __construct($attributes = array()) {
parent::__construct(null, $attributes);
}
}
class Conference extends Element {
protected $nestables = array();
protected $valid_attributes = array(
'muted',
'beep',
'startConferenceOnEnter',
'endConferenceOnExit',
'waitSound',
'enterSound',
'exitSound',
'timeLimit',
'hangupOnStar',
'maxMembers',
'record',
'recordFileFormat',
'recordWhenAlone',
'action',
'method',
'redirect',
'digitsMatch',
'callbackUrl',
'callbackMethod',
'stayAlone',
'floorEvent',
'transcriptionType',
'transcriptionUrl',
'transcriptionMethod',
'relayDTMF'
);
function __construct($body, $attributes = array()) {
parent::__construct($body, $attributes);
if (!$body) {
throw new PlivoError("No conference name set for ".$this->getName());
}
}
}
class Record extends Element {
protected $nestables = array();
protected $valid_attributes = array(
'action',
'method',
'timeout',
'finishOnKey',
'maxLength',
'playBeep',
'recordSession',
'startOnDialAnswer',
'redirect',
'fileFormat',
'callbackUrl',
'callbackMethod',
'transcriptionType',
'transcriptionUrl',
'transcriptionMethod'
);
function __construct($attributes = array()) {
parent::__construct(null, $attributes);
}
}
class PreAnswer extends Element {
protected $nestables = array('Play', 'Speak', 'GetDigits', 'Wait', 'Redirect', 'Message', 'DTMF');
protected $valid_attributes = array();
function __construct($attributes = array()) {
parent::__construct(null, $attributes);
}
}
class Message extends Element {
protected $nestables = array();
protected $valid_attributes = array('src', 'dst', 'type', 'callbackMethod', 'callbackUrl');
function __construct($body, $attributes = array()) {
parent::__construct($body, $attributes);
if (!$body) {
throw new PlivoError("No text set for ".$this->getName());
}
}
}
class DTMF extends Element {
protected $nestables = array();
protected $valid_attributes = array('async');
function __construct($body, $attributes = array()) {
parent::__construct($body, $attributes);
if (!$body) {