This repository was archived by the owner on Jul 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCrossBar.php
1619 lines (1391 loc) · 42.2 KB
/
CrossBar.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
require_once("kazoo-php-sdk/vendor/autoload.php");
require_once("FailureHandler.php");
/**
* Wrapper for official kazoo-php-sdk while integrating with existing aastra apps
* Author: Daniel Finke 2015
* Some code borrowed from Chris Megalos' previous CrossBar SDK
*
* TODO: unauthenticated Riak tie-in
**/
class CrossBar {
var $host; /**< ipv4 address or hostname */
var $port;
var $xauth;
var $use_account_id;
var $auth_account_id;
var $usermd5; /**< usermd5 md5 of "user:password" */
var $realm;
var $authToken;
var $is_authenticated = false; /**< is_authenticated boolean flag that is changed upon authentication. */
var $logfile; /**< Log file */
var $color = true;
var $colors = array();
var $debug = false; /**< debug enables debugging if true. */
// The heavy-lifting beast used for requests
var $sdk;
// Handler for dealing with problems that occur during requests
// Should implement FailureHandler interface
var $failureHandler;
//var $force_no_decode = false; /**< force_no_decode disables json_decode from the send method. */
public function __construct($options) {
// Default log locations
if(strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$this->logfile = "c:/Program Files (x86)/Apache Software Foundation/Apache2.2/logs/xbar.log";
}
else {
$this->logfile = "/var/log/xbar.log";
}
$this->colors = array(
"red" => chr(0x1B).'[1;31m',
"green" => chr(0x1B).'[1;32m',
"yellow" => chr(0x1B).'[1;33m',
"blue" => chr(0x1B).'[1;34m',
"purple" => chr(0x1B).'[1;35m',
"cyan" => chr(0x1B).'[1;36m',
"white" => chr(0x1B).'[1;37m',
"reset" => chr(0x1B).'[0m'
);
$scheme = 'http';
// Add variables
foreach($options as $key => $value) {
$this->$key = $value;
}
// Server to connect to for crossbar API reqs
$kazooOpts = array(
'base_url' => $scheme . '://' . $this->host . ':' . $this->port
);
// Auth token from cached creds
if(isset($this->xauth) && isset($this->auth_account_id)) {
$this->authToken = new \Kazoo\AuthToken\XAuth($this->xauth, $this->auth_account_id);
$this->is_authenticated = true;
}
// Or from user md5
else {
$this->authToken = new \Kazoo\AuthToken\UserMd5($this->usermd5, $this->realm);
}
// Create SDK used for reqs
$this->sdk = new \Kazoo\SDK($this->authToken, $kazooOpts);
// We assume xauth mode is already authenticated
// If it fails it is handled by FailureHandler at request time
$this->validateAuthToken();
}
public function validateAuthToken() {
try {
$this->xauth = $this->authToken->getToken();
$this->auth_account_id = $this->authToken->getAccountId();
$this->use_account_id = $this->authToken->getAccountId();
$this->is_authenticated = true;
}
catch(Kazoo\AuthToken\Exception\Unauthenticated $e) {
$this->is_authenticated = false;
// Side effect of logging the auth failure for us
$this->formatException($e);
}
catch(Kazoo\Api\Exception\Validation $e) {
$this->is_authenticated = false;
// Side effect of logging the auth failure for us
$this->formatException($e);
}
return $this->is_authenticated;
}
function use_account($accountId, $cache = false) {
$this->use_account_id = $accountId;
//load all data?
/*if($cache) {
$this->cache = true;
}
else {
$this->cache = false;
}*/
}
/**
@brief Writes a log line to /var/log/xbar.log (default) or if $debug is set then it's sent to stdout
@param $logthis is the string to log
@return null
**/
public function log($logthis) {
if($this->color) {
$logthis = $this->applyColor($logthis);
}
if($this->debug) {
echo $logthis."\n";
}
else {
syslog(LOG_INFO,"CrossBar: ".$_SERVER['REMOTE_ADDR']." - ".$logthis);
file_put_contents($this->logfile,date("Y-m-d H:i:s")." - {$_SERVER['REMOTE_ADDR']} - ".$logthis."\n",FILE_APPEND);
}
}
private function applyColor($text) {
foreach($this->colors as $key => $color) {
$text = str_replace('<'.$key.'>', $color, $text);
}
return $text;
}
/**
*
* Start of API methods
*
*
*
**/
/**
@brief attempts to retrieve the version. Usually returns 403 forbidden
@return array data representing about page
**/
function get_version() {
return $this->get(array(
'About' => array()
));
}
function get_accounts($accountId = null) {
$children = $this->get_children($accountId);
$realms = array();
foreach($children as $child) {
$realms[$child['realm']] = $child['id'];
}
$crealm = $this->get_account($this->auth_account_id);
$realms[$crealm['realm']] = $this->auth_account_id;
return $realms;
}
function get_account($accountId = null) {
return $this->get(array('Account' => array('id' => $accountId)));
}
function get_account_id_by_did($did, $realmId = null) {
if($realmId == null) {
$realmId = $this->use_account_id;
}
$child_nums = array();
$current_nums = array();
static $account_id = null;
$check_response = $this->get(array(
'Account' => array('id' => $realmId),
'PhoneNumbers' => array()
));
foreach($check_response['numbers'] as $number => $data) {
if($number == $did) {
$account_id = $realmId;
return $realmId;
}
}
$children = $this->get_children($realmId);
foreach($children as $child) {
$account_id = $this->get_account_id_by_did($did, $child['id']);
if($account_id != null) {
return $account_id;
}
}
return $account_id;
}
function get_account_id_by_realm($realm, $accountId = null) {
$realms = $this->get_accounts($accountId);
return $realms[$realm];
}
function put_account($data, $accountId = null) {
/*if($accountId != null) {
$this->use_account_id = $accountId;
}*/
return $this->put(array(
'Account' => array('id' => $accountId),
'addChild' => array('args' => $data)
), null);
}
function post_account($data, $accountId = null) {
return $this->post(array(
'Account' => array('id' => $accountId)
), $data);
}
function del_account($accountId) {
return $this->del(array(
'Account' => array('id' => $accountId)
));
}
function get_children($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'children' => array()
));
}
function get_siblings($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'siblings' => array()
));
}
function get_descendants($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'descendants' => array()
));
}
//
function set_parent($account_id, $new_parent_id ) {
if( $account_id == null ) $account_id = $this->use_account_id;
$response = $this->send("POST","/v1/accounts/{$account_id}/parent","parent=$new_parent_id");
return($response['data']);
}
function get_credits($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'braintreeCredits' => array()
));
}
/**
@brief Gets the details on all the cdrs
@param $filters The filters to apply to the search
@param $accountId The account that the cdr belongs too
@return $response The response is an array that is just passed through.
**/
function get_cdrs($filters = array(), $accountId = null) {
if($filters == null) {
$filters = array();
}
return $this->get(array(
'Account' => array('id' => $accountId),
'Cdrs' => array('filters' => $filters)
));
}
function get_connectivity($cid = null, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Connectivities' => array('id' => $cid)
));
}
/**
@brief updates the connectivity
@return string json data
**/
function put_connectivity($data, $accountId = null) {
return $this->put(array(
'Account' => array('id' => $accountId),
'Connectivity' => array()
), $data);
}
/**
@brief create new connectivity (attach a pbx)
@return string json data
**/
function post_connectivity($data, $cid, $accountId = null) {
return $this->post(array(
'Account' => array('id' => $accountId),
'Connectivity' => array('id' => $cid)
), $data);
}
/**
@brief deletes the connectivity
@return string json data
**/
function del_connectivity($cid, $accountId = null) {
return $this->del(array(
'Account' => array('id' => $accountId),
'Connectivity' => array('id' => $cid)
));
}
function get_pbxs($accountId = null) {
return $this->get_connectivity(null, $accountId);
}
function get_pbx($cid, $accountId = null) {
return $this->get_connectivity($cid, $accountId);
}
function put_pbx($data, $accountId = null) {
return $this->put_connectivity($data, $accountId);
}
function post_pbx($data, $accountId = null) {
return $this->post_connectivity($data, $accountId);
}
function del_pbx($cid, $accountId = null) {
return $this->del_connectivity($cid, $accountId);
}
function get_callflows($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Callflows' => array()
));
}
function get_callflow_id_map($accountId = null) {
$cfs = $this->get_callflows($accountId);
$nums = array();
foreach($cfs as $key => $data) {
foreach($data['numbers'] as $num) {
$nums[$num] = $data['id'];
}
}
return $nums;
}
function get_callflows_by($accountId = null, $type = 'device') {
$aout = array();
$cfs = $this->get_callflows($accountId);
foreach($cfs as $cf) {
$xcf = $this->get_callflow($cf['id']);
foreach($xcf['metadata'] as $key => $data) {
if($data['pvt_type'] == $type) {
$aout[$xcf['id']] = $cf['numbers'];
}
}
}
return $aout;
}
/**
* Get all callflows which have user object with the user's id
* @param $userId user id who the call flows should reference
* @param $accountId kazoo account id to search in
*/
function get_callflows_by_user($userId, $accountId = null) {
$cfs = $this->get_callflows($accountId);
$userCfs = array();
foreach($cfs as $cf) {
// User ID required
if(!isset($cf['user_id'])) {
continue;
}
// If user matches, add them
if($cf['user_id'] == $userId) {
$userCfs[] = $cf;
}
}
return $userCfs;
}
function get_callflow($cfId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Callflow' => array('id' => $cfId)
));
}
function put_callflow($data, $accountId = null) {
return $this->put(array(
'Account' => array('id' => $accountId),
'Callflow' => array()
), $data);
}
function post_callflow($data, $cfId, $accountId = null) {
return $this->post(array(
'Account' => array('id' => $accountId),
'Callflow' => array('id' => $cfId)
), $data);
}
function del_callflow($cfId, $accountId = null) {
return $this->del(array(
'Account' => array('id' => $accountId),
'Callflow' => array('id' => $cfId)
));
}
function get_all_info($accountId = null) {
$temp_users = $this->get_users($accountId);
$temp_devices = $this->get_devices($accountId);
$devices_status = $this->get_devices_status($accountId);
$vmboxes = $this->get_vmboxes($accountId);
ob_start();
$this->log(ob_get_clean());
$users = array();
foreach( $temp_users as $user ) { $users[$user['id']] = $user; }
foreach( $temp_devices as $device ) {
if( isset($devices_status[$device['id']]) ) $device['online'] = true;
$device['user'] = $users[$device['owner_id']];
}
}
function get_users($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Users' => array()
));
}
function get_user_by_name($username, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'Users' => array('filters' => array('username' => $username))
));
return $response[0];
}
function get_user_id($username) {
$user = $this->get_user_by_name($username);
if(isset($user['id'])) {
return $user['id'];
}
return false;
}
function get_user($userId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'User' => array('id' => $userId)
));
}
function put_user($data, $accountId = null) {
return $this->put(array(
'Account' => array('id' => $accountId),
'User' => array()
), $data);
}
function post_user($data, $userId, $accountId = null) {
return $this->post(array(
'Account' => array('id' => $accountId),
'User' => array('id' => $userId)
), $data);
}
function del_user($userId, $accountId = null) {
return $this->del(array(
'Account' => array('id' => $accountId),
'User' => array('id' => $userId)
));
}
function get_devices($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Devices' => array()
));
}
function get_devices_status($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Devices' => array(),
'status' => array()
));
}
function get_devices_by_owner($ownerId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Devices' => array('filters' => array('owner_id' => $ownerId))
));
}
function get_device_by_name($name, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'Devices' => array('filters' => array('name' => $name))
));
return $response[0];
}
function get_device_by_owner($ownerId, $accountId = null) {
$response = $this->get_devices_by_owner($ownerId, $accountId);
return $response[0];
}
function get_device($deviceId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Device' => array('id' => $deviceId)
));
}
function put_device($data, $accountId = null) {
return $this->put(array('Account' => array('id' => $accountId), 'Device' => array()), $data);
}
function post_device($data, $deviceId, $accountId = null) {
return $this->post(array(
'Account' => array('id' => $accountId),
'Device' => array('id' => $deviceId)
), $data);
}
function del_device($deviceId, $accountId = null) {
return $this->del(array(
'Account' => array('id' => $accountId),
'Device' => array('id' => $deviceId)
));
}
function get_vmboxes($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'VMBoxes' => array()
));
}
function get_vmbox($boxId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'VMBox' => array('id' => $boxId)
));
}
function get_vmbox_by_name($name, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'VMBoxes' => array('filters' => array('name' => $name))
));
return $response[0];
}
function get_vmbox_by_ext($extension, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'VMBoxes' => array('filters' => array('mailbox' => $extension))
));
return $response[0];
}
function get_vmbox_by_number($number, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'VMBoxes' => array('filters' => array('mailbox' => $number))
));
return $response[0];
}
function get_vmbox_by_owner($ownerId, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'VMBoxes' => array('filters' => array('owner_id' => $ownerId))
));
foreach($response as $key => $data) {
$response[$key] = array_merge($data, $this->get_vmbox($data['id'], $accountId));
}
return $response;
}
function put_vmbox($data, $accountId = null) {
return $this->put(array(
'Account' => array('id' => $accountId),
'VMBox' => array()
), $data);
}
function post_vmbox($data, $boxId, $accountId = null) {
return $this->post(array(
'Account' => array('id' => $accountId),
'VMBox' => array('id' => $boxId)
), $data);
}
function del_vmbox($boxId, $accountId = null) {
return $this->del(array(
'Account' => array('id' => $accountId),
'VMBox' => array('id' => $boxId)
));
}
function login_vmbox($mailbox, $pin, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'VMBoxes' => array('filters' => array('mailbox' => $mailbox, 'pin' => $pin))
));
return $response[0];
}
function get_messages($boxId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'VMBox' => array('id' => $boxId),
'Messages' => array()
));
}
function get_message($messageId, $boxId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'VMBox' => array('id' => $boxId),
'Message' => array('id' => $messageId)
));
}
// TODO: make this work with Message\Response class
function get_message_raw($messageId, $boxId, $accountId = null) {
if($accountId == null) {
$accountId = $this->use_account_id;
}
return $this->sdk->get(
"http://{$this->host}:{$this->port}/v1/accounts/{$accountId}/vmboxes/{$boxId}/messages/{$messageId}/raw");
}
function del_message($messageId, $boxId, $accountId = null) {
return $this->del(array(
'Account' => array('id' => $accountId),
'VMBox' => array('id' => $boxId),
'Message' => array('id' => $messageId)
));
}
function get_queues($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Queues' => array()
));
}
function get_queues_stats($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Queues' => array(),
'stats' => array()
));
}
function get_queues_waiting_calls($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Queues' => array(),
'stats' => array('args' => array(array('status' => 'waiting')))
));
}
function get_queue($queueId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Queue' => array('id' => $queueId)
));
}
function get_queue_status($queueId, $agentId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId)
));
}
function get_agents_stats($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Agents' => array(),
'stats' => array()
));
}
function get_agent_status($agentId, $type = null, $accountId = null) {
if(!is_null($type)) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Agent' => array('id' => $agentId),
'status' => array('args' => array(array('status' => $type, 'recent' => 'true')))
));
}
else {
return $this->get(array(
'Account' => array('id' => $accountId),
'Agent' => array('id' => $agentId),
'status' => array('args' => array(array('recent' => 'true')))
));
}
}
function logout_queue($queueId, $accountId = null) {
$queue = $this->sdk->Account($accountId)->Queue($queueId);
return $queue->saveRoster(array());
}
function login_agent($agentId, $queueId, $accountId = null) {
$queue = $this->sdk->Account($accountId)->Queue($queueId);
$queueAgents = $queue->agents;
foreach($queueAgents as $key => $agent) {
if($agent == $agentId) {
unset($queueAgents[$key]);
}
}
$queueAgents[] = $agentId;
return $queue->saveRoster($queueAgents);
}
function logout_agent($agentId, $queueId, $accountId = null) {
$queue = $this->sdk->Account($accountId)->Queue($queueId);
$queueAgents = $queue->agents;
foreach($queueAgents as $key => $agent) {
if($agent == $agentId) {
unset($queueAgents[$key]);
}
}
return $queue->saveRoster(array_values($queueAgents));
}
/**
@brief Gets the details on all the faxes
@param $accountId The account that the fax belongs too
@return $response The response is an array that is just passed through.
**/
function get_faxes($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Faxes' => array(),
'outgoing' => array()
));
}
/**
@brief Gets the details on a specific fax
@param $faxId The unique fax id as returned by the get_faxes func
@param $accountId The account that the fax belongs too
@return $response The response is an array that is just passed through.
**/
function get_fax($faxId = null, $accountId = null) {
if($faxId == null) {
return $this->get_faxes($accountId);
}
return $this->get(array(
'Account' => array('id' => $accountId),
'Fax' => array('id' => $faxId)
));
}
/**
@brief Gets the actual fax file that was sent
@param $fax_id The unique fax id as returned by the get_faxes func
@param $account_id The account that the fax belongs too
@return $response The response is an array that is just passed through.
**/
// TODO: finish implementation
function get_fax_file( $fax_id = null, $account_id = null ) {
// Doesn't exist in the 2600 api yet but should.
$bldred=chr(0x1B).'[1;31m';
$this->log("{$bldred}!!!!: get_fax_file not yet implemented.");
return( array('status' => 'failure', 'message' => 'del_fax not yet implemented.') );
/*
// From the get_media_raw call above and tweaked a bit.
$tmp = $this->force_no_decode;
$this->force_no_decode = true;
if( $account_id == null ) $account_id = $this->use_account_id;
$response = $this->send("GET","/v1/accounts/{$account_id}/faxes/{$fax_id}/file" );
$this->force_no_decode = $tmp;
return($response);
*/
}
/**
@brief Accepts a URL to a PDF to then fax out
@param $data The data as defined at https://2600hz.atlassian.net/wiki/display/docs/Faxes+API
@param $accountId The account that is sending the fax
@return $response The response is an array that is just passed through.
**/
function put_fax($data, $accountId = null) {
return $this->put(array(
'Account' => array('id' => $accountId),
'Fax' => array()
), $data['data']);
}
/**
@brief Deletes a fax from the queue? Do we really need this?
@param $faxId The unique fax id as returned by the get_faxes func
@param $accountId The account that the fax belongs too
@return $response The response is an array that is just passed through.
**/
// TODO: finish implementation
function del_fax($faxId, $accountId = null) {
// Doesn't exist in the 2600 api yet but should.
$bldred=chr(0x1B).'[1;31m';
$this->log("{$bldred}!!!!: del_fax not yet implemented.");
return( array('status' => 'failure', 'message' => 'del_fax not yet implemented.') );
/*
// From the del_media call above and tweaked a bit.
if( $account_id == null ) $account_id = $this->use_account_id;
$response = $this->send("DELETE","/v1/accounts/{$account_id}/faxes/{$fax_id}" );
return($response);
*/
}
function get_media($mediaId = null, $accountId = null) {
if($mediaId == null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Medias' => array()
));
}
else {
return $this->get(array(
'Account' => array('id' => $accountId),
'Media' => array('id' => $mediaId)
));
}
}
function get_media_by_name($name, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'Medias' => array('filters' => array('name' => $name))
));
return $response[0];
}
function get_media_raw($mediaId = null, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Media' => array('id' => $mediaId),
'getRaw' => array()
));
}
function put_media($data, $accountId = null) {
$response = $this->put(array(
'Account' => array('id' => $accountId),
'Media' => array()
), $data['data']);
if($response['status'] == 'success' && isset($response['data']['id']) &&
isset($data['raw'])) {
return $this->post(array(
'Account' => array('id' => $accountId),
'Media' => array('id' => $response['data']['id']),
'postRaw' => array('args' => array(
'raw' => $data['raw'],
'type' => $data['type']
))
), array('id' => $response['data']['id']));
}
else {
return $response;
}
}
function post_media($data, $mediaId, $accountId = null) {
$response = $this->post(array(
'Account' => array('id' => $accountId),
'Media' => array('id' => $mediaId)
), $data['data']);
if($response['status'] == 'success' && isset($data['raw'])) {
return $this->post(array(
'Account' => array('id' => $accountId),
'Media' => array('id' => $response['data']['id']),
'postRaw' => array('args' => array(
'raw' => $data['raw'],
'type' => $data['type']
))
), null);
}
else {
return $response;
}
}
function del_media($mediaId, $accountId = null) {
return $this->del(array(
'Account' => array('id' => $accountId),
'Media' => array('id' => $mediaId)
));
}
function get_menus($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Menus' => array()
));
}
function get_menu($menuId, $accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Menu' => array('id' => $menuId)
));
}
function get_menu_by_name($name, $accountId = null) {
$response = $this->get(array(
'Account' => array('id' => $accountId),
'Menus' => array('filters' => array('name' => $name))
));
return $response[0];
}
function put_menu($data, $accountId = null) {
return $this->put(array(
'Account' => array('id' => $accountId),
'Menu' => array()
), $data);
}
function post_menu($data, $menuId, $accountId = null) {
return $this->post(array(
'Account' => array('id' => $accountId),
'Menu' => array('id' => $menuId)
), $data);
}
function del_menu($menuId, $accountId = null) {
return $this->del(array(
'Account' => array('id' => $accountId),
'Menu' => array('id' => $menuId)
));
}
function get_conferences($accountId = null) {
return $this->get(array(
'Account' => array('id' => $accountId),
'Conferences' => array()
));
}
function get_conference($conferenceId = null, $accountId = null) {
if($conferenceId == null) {
return $this->get_conferences($accountId);