Menu

[r13]: / trunk / phpagi.php  Maximize  Restore  History

Download this file

1785 lines (1640 with data), 66.3 kB

   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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
<?php
/**
* phpagi.php : PHP AGI Functions for Asterisk
* Website: http://phpagi.sourceforge.net/
*
* $Id: phpagi.php,v 2.14 2005/05/25 20:30:46 pinhole Exp $
*
* Copyright (c) 2003 - 2010 Matthew Asham <matthew@ochrelabs.com>, David Eder <david@eder.us> and others
* All Rights Reserved.
*
* This software is released under the terms of the GNU Lesser General Public License v2.1
* A copy of which is available from http://www.gnu.org/copyleft/lesser.html
*
* We would be happy to list your phpagi based application on the phpagi
* website. Drop me an Email if you'd like us to list your program.
*
*
* Written for PHP 4.3.4, should work with older PHP 4.x versions.
*
* Please submit bug reports, patches, etc to http://sourceforge.net/projects/phpagi/
* Gracias. :)
*
*
* @package phpAGI
* @version 2.0
*/
if (!class_exists('AGI_AsteriskManager'))
{
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . 'phpagi-asmanager.php');
}
define('AST_CONFIG_DIR', '/etc/asterisk/');
define('AST_SPOOL_DIR', '/var/spool/asterisk/');
define('AST_TMP_DIR', AST_SPOOL_DIR . '/tmp/');
define('DEFAULT_PHPAGI_CONFIG', AST_CONFIG_DIR . '/phpagi.conf');
define('AST_DIGIT_ANY', '0123456789#*');
define('AGIRES_OK', 200);
define('AST_STATE_DOWN', 0);
define('AST_STATE_RESERVED', 1);
define('AST_STATE_OFFHOOK', 2);
define('AST_STATE_DIALING', 3);
define('AST_STATE_RING', 4);
define('AST_STATE_RINGING', 5);
define('AST_STATE_UP', 6);
define('AST_STATE_BUSY', 7);
define('AST_STATE_DIALING_OFFHOOK', 8);
define('AST_STATE_PRERING', 9);
define('AUDIO_FILENO', 3); // STDERR_FILENO + 1
/**
* AGI class
*
* @package phpAGI
* @link http://www.voip-info.org/wiki-Asterisk+agi
* @example examples/dtmf.php Get DTMF tones from the user and say the digits
* @example examples/input.php Get text input from the user and say it back
* @example examples/ping.php Ping an IP address
*/
class AGI
{
/**
* Request variables read in on initialization.
*
* Often contains any/all of the following:
* agi_request - name of agi script
* agi_channel - current channel
* agi_language - current language
* agi_type - channel type (SIP, ZAP, IAX, ...)
* agi_uniqueid - unique id based on unix time
* agi_callerid - callerID string
* agi_dnid - dialed number id
* agi_rdnis - referring DNIS number
* agi_context - current context
* agi_extension - extension dialed
* agi_priority - current priority
* agi_enhanced - value is 1.0 if started as an EAGI script
* agi_accountcode - set by SetAccount in the dialplan
* agi_network - value is yes if this is a fastagi
* agi_network_script - name of the script to execute
*
* NOTE: program arguments are still in $_SERVER['argv'].
*
* @var array
* @access public
*/
var $request;
/**
* Config variables
*
* @var array
* @access public
*/
var $config;
/**
* Asterisk Manager
*
* @var AGI_AsteriskManager
* @access public
*/
var $asmanager;
/**
* Input Stream
*
* @access private
*/
var $in = NULL;
/**
* Output Stream
*
* @access private
*/
var $out = NULL;
/**
* Audio Stream
*
* @access public
*/
var $audio = NULL;
/**
* Constructor
*
* @param string $config is the name of the config file to parse
* @param array $optconfig is an array of configuration vars and vals, stuffed into $this->config['phpagi']
*/
function AGI($config=NULL, $optconfig=array())
{
// load config
if(!is_null($config) && file_exists($config))
$this->config = parse_ini_file($config, true);
elseif(file_exists(DEFAULT_PHPAGI_CONFIG))
$this->config = parse_ini_file(DEFAULT_PHPAGI_CONFIG, true);
// If optconfig is specified, stuff vals and vars into 'phpagi' config array.
foreach($optconfig as $var=>$val)
$this->config['phpagi'][$var] = $val;
// add default values to config for uninitialized values
if(!isset($this->config['phpagi']['error_handler'])) $this->config['phpagi']['error_handler'] = true;
if(!isset($this->config['phpagi']['debug'])) $this->config['phpagi']['debug'] = false;
if(!isset($this->config['phpagi']['admin'])) $this->config['phpagi']['admin'] = NULL;
if(!isset($this->config['phpagi']['tempdir'])) $this->config['phpagi']['tempdir'] = AST_TMP_DIR;
// festival TTS config
if(!isset($this->config['festival']['text2wave'])) $this->config['festival']['text2wave'] = $this->which('text2wave');
// swift TTS config
if(!isset($this->config['cepstral']['swift'])) $this->config['cepstral']['swift'] = $this->which('swift');
ob_implicit_flush(true);
// open stdin & stdout
$this->in = defined('STDIN') ? STDIN : fopen('php://stdin', 'r');
$this->out = defined('STDOUT') ? STDOUT : fopen('php://stdout', 'w');
// initialize error handler
if($this->config['phpagi']['error_handler'] == true)
{
set_error_handler('phpagi_error_handler');
global $phpagi_error_handler_email;
$phpagi_error_handler_email = $this->config['phpagi']['admin'];
error_reporting(E_ALL);
}
// make sure temp folder exists
$this->make_folder($this->config['phpagi']['tempdir']);
// read the request
$str = fgets($this->in);
while($str != "\n")
{
$this->request[substr($str, 0, strpos($str, ':'))] = trim(substr($str, strpos($str, ':') + 1));
$str = fgets($this->in);
}
// open audio if eagi detected
if($this->request['agi_enhanced'] == '1.0')
{
if(file_exists('/proc/' . getmypid() . '/fd/3'))
$this->audio = fopen('/proc/' . getmypid() . '/fd/3', 'r');
elseif(file_exists('/dev/fd/3'))
{
// may need to mount fdescfs
$this->audio = fopen('/dev/fd/3', 'r');
}
else
$this->conlog('Unable to open audio stream');
if($this->audio) stream_set_blocking($this->audio, 0);
}
$this->conlog('AGI Request:');
$this->conlog(print_r($this->request, true));
$this->conlog('PHPAGI internal configuration:');
$this->conlog(print_r($this->config, true));
}
// *********************************************************************************************************
// ** COMMANDS **
// *********************************************************************************************************
/**
* Answer channel if not already in answer state.
*
* @link http://www.voip-info.org/wiki-answer
* @example examples/dtmf.php Get DTMF tones from the user and say the digits
* @example examples/input.php Get text input from the user and say it back
* @example examples/ping.php Ping an IP address
*
* @return array, see evaluate for return information. ['result'] is 0 on success, -1 on failure.
*/
function answer()
{
return $this->evaluate('ANSWER');
}
/**
* Get the status of the specified channel. If no channel name is specified, return the status of the current channel.
*
* @link http://www.voip-info.org/wiki-channel+status
* @param string $channel
* @return array, see evaluate for return information. ['data'] contains description.
*/
function channel_status($channel='')
{
$ret = $this->evaluate("CHANNEL STATUS $channel");
switch($ret['result'])
{
case -1: $ret['data'] = trim("There is no channel that matches $channel"); break;
case AST_STATE_DOWN: $ret['data'] = 'Channel is down and available'; break;
case AST_STATE_RESERVED: $ret['data'] = 'Channel is down, but reserved'; break;
case AST_STATE_OFFHOOK: $ret['data'] = 'Channel is off hook'; break;
case AST_STATE_DIALING: $ret['data'] = 'Digits (or equivalent) have been dialed'; break;
case AST_STATE_RING: $ret['data'] = 'Line is ringing'; break;
case AST_STATE_RINGING: $ret['data'] = 'Remote end is ringing'; break;
case AST_STATE_UP: $ret['data'] = 'Line is up'; break;
case AST_STATE_BUSY: $ret['data'] = 'Line is busy'; break;
case AST_STATE_DIALING_OFFHOOK: $ret['data'] = 'Digits (or equivalent) have been dialed while offhook'; break;
case AST_STATE_PRERING: $ret['data'] = 'Channel has detected an incoming call and is waiting for ring'; break;
default: $ret['data'] = "Unknown ({$ret['result']})"; break;
}
return $ret;
}
/**
* Deletes an entry in the Asterisk database for a given family and key.
*
* @link http://www.voip-info.org/wiki-database+del
* @param string $family
* @param string $key
* @return array, see evaluate for return information. ['result'] is 1 on sucess, 0 otherwise.
*/
function database_del($family, $key)
{
return $this->evaluate("DATABASE DEL \"$family\" \"$key\"");
}
/**
* Deletes a family or specific keytree within a family in the Asterisk database.
*
* @link http://www.voip-info.org/wiki-database+deltree
* @param string $family
* @param string $keytree
* @return array, see evaluate for return information. ['result'] is 1 on sucess, 0 otherwise.
*/
function database_deltree($family, $keytree='')
{
$cmd = "DATABASE DELTREE \"$family\"";
if($keytree != '') $cmd .= " \"$keytree\"";
return $this->evaluate($cmd);
}
/**
* Retrieves an entry in the Asterisk database for a given family and key.
*
* @link http://www.voip-info.org/wiki-database+get
* @param string $family
* @param string $key
* @return array, see evaluate for return information. ['result'] is 1 on sucess, 0 failure. ['data'] holds the value
*/
function database_get($family, $key)
{
return $this->evaluate("DATABASE GET \"$family\" \"$key\"");
}
/**
* Adds or updates an entry in the Asterisk database for a given family, key, and value.
*
* @param string $family
* @param string $key
* @param string $value
* @return array, see evaluate for return information. ['result'] is 1 on sucess, 0 otherwise
*/
function database_put($family, $key, $value)
{
$value = str_replace("\n", '\n', addslashes($value));
return $this->evaluate("DATABASE PUT \"$family\" \"$key\" \"$value\"");
}
/**
* Sets a global variable, using Asterisk 1.6 syntax.
*
* @link http://www.voip-info.org/wiki/view/Asterisk+cmd+Set
*
* @param string $pVariable
* @param string|int|float $pValue
* @return array, see evaluate for return information. ['result'] is 1 on sucess, 0 otherwise
*/
function set_global_var($pVariable, $pValue)
{
if (is_numeric($pValue))
return $this->evaluate("Set({$pVariable}={$pValue},g);");
else
return $this->evaluate("Set({$pVariable}=\"{$pValue}\",g);");
}
/**
* Sets a variable, using Asterisk 1.6 syntax.
*
* @link http://www.voip-info.org/wiki/view/Asterisk+cmd+Set
*
* @param string $pVariable
* @param string|int|float $pValue
* @return array, see evaluate for return information. ['result'] is 1 on sucess, 0 otherwise
*/
function set_var($pVariable, $pValue)
{
if (is_numeric($pValue))
return $this->evaluate("Set({$pVariable}={$pValue});");
else
return $this->evaluate("Set({$pVariable}=\"{$pValue}\");");
}
/**
* Executes the specified Asterisk application with given options.
*
* @link http://www.voip-info.org/wiki-exec
* @link http://www.voip-info.org/wiki-Asterisk+-+documentation+of+application+commands
* @param string $application
* @param mixed $options
* @return array, see evaluate for return information. ['result'] is whatever the application returns, or -2 on failure to find application
*/
function exec($application, $options)
{
if(is_array($options)) $options = join('|', $options);
return $this->evaluate("EXEC $application $options");
}
/**
* Plays the given file and receives DTMF data.
*
* This is similar to STREAM FILE, but this command can accept and return many DTMF digits,
* while STREAM FILE returns immediately after the first DTMF digit is detected.
*
* Asterisk looks for the file to play in /var/lib/asterisk/sounds by default.
*
* If the user doesn't press any keys when the message plays, there is $timeout milliseconds
* of silence then the command ends.
*
* The user has the opportunity to press a key at any time during the message or the
* post-message silence. If the user presses a key while the message is playing, the
* message stops playing. When the first key is pressed a timer starts counting for
* $timeout milliseconds. Every time the user presses another key the timer is restarted.
* The command ends when the counter goes to zero or the maximum number of digits is entered,
* whichever happens first.
*
* If you don't specify a time out then a default timeout of 2000 is used following a pressed
* digit. If no digits are pressed then 6 seconds of silence follow the message.
*
* If you don't specify $max_digits then the user can enter as many digits as they want.
*
* Pressing the # key has the same effect as the timer running out: the command ends and
* any previously keyed digits are returned. A side effect of this is that there is no
* way to read a # key using this command.
*
* @example examples/ping.php Ping an IP address
*
* @link http://www.voip-info.org/wiki-get+data
* @param string $filename file to play. Do not include file extension.
* @param integer $timeout milliseconds
* @param integer $max_digits
* @return array, see evaluate for return information. ['result'] holds the digits and ['data'] holds the timeout if present.
*
* This differs from other commands with return DTMF as numbers representing ASCII characters.
*/
function get_data($filename, $timeout=NULL, $max_digits=NULL)
{
return $this->evaluate(rtrim("GET DATA $filename $timeout $max_digits"));
}
/**
* Fetch the value of a variable.
*
* Does not work with global variables. Does not work with some variables that are generated by modules.
*
* @link http://www.voip-info.org/wiki-get+variable
* @link http://www.voip-info.org/wiki-Asterisk+variables
* @param string $variable name
* @return array, see evaluate for return information. ['result'] is 0 if variable hasn't been set, 1 if it has. ['data'] holds the value.
*/
function get_variable($variable)
{
return $this->evaluate("GET VARIABLE $variable");
}
/**
* Hangup the specified channel. If no channel name is given, hang up the current channel.
*
* With power comes responsibility. Hanging up channels other than your own isn't something
* that is done routinely. If you are not sure why you are doing so, then don't.
*
* @link http://www.voip-info.org/wiki-hangup
* @example examples/dtmf.php Get DTMF tones from the user and say the digits
* @example examples/input.php Get text input from the user and say it back
* @example examples/ping.php Ping an IP address
*
* @param string $channel
* @return array, see evaluate for return information. ['result'] is 1 on success, -1 on failure.
*/
function hangup($channel='')
{
return $this->evaluate("HANGUP $channel");
}
/**
* Does nothing.
*
* @link http://www.voip-info.org/wiki-noop
* @return array, see evaluate for return information.
*/
function noop($string="")
{
return $this->evaluate("NOOP \"$string\"");
}
/**
* Receive a character of text from a connected channel. Waits up to $timeout milliseconds for
* a character to arrive, or infinitely if $timeout is zero.
*
* @link http://www.voip-info.org/wiki-receive+char
* @param integer $timeout milliseconds
* @return array, see evaluate for return information. ['result'] is 0 on timeout or not supported, -1 on failure. Otherwise
* it is the decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function receive_char($timeout=-1)
{
return $this->evaluate("RECEIVE CHAR $timeout");
}
/**
* Record sound to a file until an acceptable DTMF digit is received or a specified amount of
* time has passed. Optionally the file BEEP is played before recording begins.
*
* @link http://www.voip-info.org/wiki-record+file
* @param string $file to record, without extension, often created in /var/lib/asterisk/sounds
* @param string $format of the file. GSM and WAV are commonly used formats. MP3 is read-only and thus cannot be used.
* @param string $escape_digits
* @param integer $timeout is the maximum record time in milliseconds, or -1 for no timeout.
* @param integer $offset to seek to without exceeding the end of the file.
* @param boolean $beep
* @param integer $silence number of seconds of silence allowed before the function returns despite the
* lack of dtmf digits or reaching timeout.
* @return array, see evaluate for return information. ['result'] is -1 on error, 0 on hangup, otherwise a decimal value of the
* DTMF tone. Use chr() to convert to ASCII.
*/
function record_file($file, $format, $escape_digits='', $timeout=-1, $offset=NULL, $beep=false, $silence=NULL)
{
$cmd = trim("RECORD FILE $file $format \"$escape_digits\" $timeout $offset");
if($beep) $cmd .= ' BEEP';
if(!is_null($silence)) $cmd .= " s=$silence";
return $this->evaluate($cmd);
}
/**
* Say the given digit string, returning early if any of the given DTMF escape digits are received on the channel.
*
* @link http://www.voip-info.org/wiki-say+digits
* @param integer $digits
* @param string $escape_digits
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function say_digits($digits, $escape_digits='')
{
return $this->evaluate("SAY DIGITS $digits \"$escape_digits\"");
}
/**
* Say the given number, returning early if any of the given DTMF escape digits are received on the channel.
*
* @link http://www.voip-info.org/wiki-say+number
* @param integer $number
* @param string $escape_digits
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function say_number($number, $escape_digits='')
{
return $this->evaluate("SAY NUMBER $number \"$escape_digits\"");
}
/**
* Say the given character string, returning early if any of the given DTMF escape digits are received on the channel.
*
* @link http://www.voip-info.org/wiki-say+phonetic
* @param string $text
* @param string $escape_digits
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function say_phonetic($text, $escape_digits='')
{
return $this->evaluate("SAY PHONETIC $text \"$escape_digits\"");
}
/**
* Say a given time, returning early if any of the given DTMF escape digits are received on the channel.
*
* @link http://www.voip-info.org/wiki-say+time
* @param integer $time number of seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC).
* @param string $escape_digits
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function say_time($time=NULL, $escape_digits='')
{
if(is_null($time)) $time = time();
return $this->evaluate("SAY TIME $time \"$escape_digits\"");
}
/**
* Send the specified image on a channel.
*
* Most channels do not support the transmission of images.
*
* @link http://www.voip-info.org/wiki-send+image
* @param string $image without extension, often in /var/lib/asterisk/images
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if the image is sent or
* channel does not support image transmission.
*/
function send_image($image)
{
return $this->evaluate("SEND IMAGE $image");
}
/**
* Send the given text to the connected channel.
*
* Most channels do not support transmission of text.
*
* @link http://www.voip-info.org/wiki-send+text
* @param $text
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if the text is sent or
* channel does not support text transmission.
*/
function send_text($text)
{
return $this->evaluate("SEND TEXT \"$text\"");
}
/**
* Cause the channel to automatically hangup at $time seconds in the future.
* If $time is 0 then the autohangup feature is disabled on this channel.
*
* If the channel is hungup prior to $time seconds, this setting has no effect.
*
* @link http://www.voip-info.org/wiki-set+autohangup
* @param integer $time until automatic hangup
* @return array, see evaluate for return information.
*/
function set_autohangup($time=0)
{
return $this->evaluate("SET AUTOHANGUP $time");
}
/**
* Changes the caller ID of the current channel.
*
* @link http://www.voip-info.org/wiki-set+callerid
* @param string $cid example: "John Smith"<1234567>
* This command will let you take liberties with the <caller ID specification> but the format shown in the example above works
* well: the name enclosed in double quotes followed immediately by the number inside angle brackets. If there is no name then
* you can omit it. If the name contains no spaces you can omit the double quotes around it. The number must follow the name
* immediately; don't put a space between them. The angle brackets around the number are necessary; if you omit them the
* number will be considered to be part of the name.
* @return array, see evaluate for return information.
*/
function set_callerid($cid)
{
return $this->evaluate("SET CALLERID $cid");
}
/**
* Sets the context for continuation upon exiting the application.
*
* Setting the context does NOT automatically reset the extension and the priority; if you want to start at the top of the new
* context you should set extension and priority yourself.
*
* If you specify a non-existent context you receive no error indication (['result'] is still 0) but you do get a
* warning message on the Asterisk console.
*
* @link http://www.voip-info.org/wiki-set+context
* @param string $context
* @return array, see evaluate for return information.
*/
function set_context($context)
{
return $this->evaluate("SET CONTEXT $context");
}
/**
* Set the extension to be used for continuation upon exiting the application.
*
* Setting the extension does NOT automatically reset the priority. If you want to start with the first priority of the
* extension you should set the priority yourself.
*
* If you specify a non-existent extension you receive no error indication (['result'] is still 0) but you do
* get a warning message on the Asterisk console.
*
* @link http://www.voip-info.org/wiki-set+extension
* @param string $extension
* @return array, see evaluate for return information.
*/
function set_extension($extension)
{
return $this->evaluate("SET EXTENSION $extension");
}
/**
* Enable/Disable Music on hold generator.
*
* @link http://www.voip-info.org/wiki-set+music
* @param boolean $enabled
* @param string $class
* @return array, see evaluate for return information.
*/
function set_music($enabled=true, $class='')
{
$enabled = ($enabled) ? 'ON' : 'OFF';
return $this->evaluate("SET MUSIC $enabled $class");
}
/**
* Set the priority to be used for continuation upon exiting the application.
*
* If you specify a non-existent priority you receive no error indication (['result'] is still 0)
* and no warning is issued on the Asterisk console.
*
* @link http://www.voip-info.org/wiki-set+priority
* @param integer $priority
* @return array, see evaluate for return information.
*/
function set_priority($priority)
{
return $this->evaluate("SET PRIORITY $priority");
}
/**
* Sets a variable to the specified value. The variables so created can later be used by later using ${<variablename>}
* in the dialplan.
*
* These variables live in the channel Asterisk creates when you pickup a phone and as such they are both local and temporary.
* Variables created in one channel can not be accessed by another channel. When you hang up the phone, the channel is deleted
* and any variables in that channel are deleted as well.
*
* @link http://www.voip-info.org/wiki-set+variable
* @param string $variable is case sensitive
* @param string $value
* @return array, see evaluate for return information.
*/
function set_variable($variable, $value)
{
$value = str_replace("\n", '\n', addslashes($value));
return $this->evaluate("SET VARIABLE $variable \"$value\"");
}
/**
* Play the given audio file, allowing playback to be interrupted by a DTMF digit. This command is similar to the GET DATA
* command but this command returns after the first DTMF digit has been pressed while GET DATA can accumulated any number of
* digits before returning.
*
* @example examples/ping.php Ping an IP address
*
* @link http://www.voip-info.org/wiki-stream+file
* @param string $filename without extension, often in /var/lib/asterisk/sounds
* @param string $escape_digits
* @param integer $offset
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function stream_file($filename, $escape_digits='', $offset=0)
{
return $this->evaluate("STREAM FILE $filename \"$escape_digits\" $offset");
}
/**
* Enable or disable TDD transmission/reception on the current channel.
*
* @link http://www.voip-info.org/wiki-tdd+mode
* @param string $setting can be on, off or mate
* @return array, see evaluate for return information. ['result'] is 1 on sucess, 0 if the channel is not TDD capable.
*/
function tdd_mode($setting)
{
return $this->evaluate("TDD MODE $setting");
}
/**
* Sends $message to the Asterisk console via the 'verbose' message system.
*
* If the Asterisk verbosity level is $level or greater, send $message to the console.
*
* The Asterisk verbosity system works as follows. The Asterisk user gets to set the desired verbosity at startup time or later
* using the console 'set verbose' command. Messages are displayed on the console if their verbose level is less than or equal
* to desired verbosity set by the user. More important messages should have a low verbose level; less important messages
* should have a high verbose level.
*
* @link http://www.voip-info.org/wiki-verbose
* @param string $message
* @param integer $level from 1 to 4
* @return array, see evaluate for return information.
*/
function verbose($message, $level=1)
{
foreach(explode("\n", str_replace("\r\n", "\n", print_r($message, true))) as $msg)
{
@syslog(LOG_WARNING, $msg);
$ret = $this->evaluate("VERBOSE \"$msg\" $level");
}
return $ret;
}
/**
* Waits up to $timeout milliseconds for channel to receive a DTMF digit.
*
* @link http://www.voip-info.org/wiki-wait+for+digit
* @param integer $timeout in millisecons. Use -1 for the timeout value if you want the call to wait indefinitely.
* @return array, see evaluate for return information. ['result'] is 0 if wait completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function wait_for_digit($timeout=-1)
{
return $this->evaluate("WAIT FOR DIGIT $timeout");
}
// *********************************************************************************************************
// ** APPLICATIONS **
// *********************************************************************************************************
/**
* Set absolute maximum time of call.
*
* Note that the timeout is set from the current time forward, not counting the number of seconds the call has already been up.
* Each time you call AbsoluteTimeout(), all previous absolute timeouts are cancelled.
* Will return the call to the T extension so that you can playback an explanatory note to the calling party (the called party
* will not hear that)
*
* @link http://www.voip-info.org/wiki-Asterisk+-+documentation+of+application+commands
* @link http://www.dynx.net/ASTERISK/AGI/ccard/agi-ccard.agi
* @param $seconds allowed, 0 disables timeout
* @return array, see evaluate for return information.
*/
function exec_absolutetimeout($seconds=0)
{
return $this->exec('AbsoluteTimeout', $seconds);
}
/**
* Executes an AGI compliant application.
*
* @param string $command
* @return array, see evaluate for return information. ['result'] is -1 on hangup or if application requested hangup, or 0 on non-hangup exit.
* @param string $args
*/
function exec_agi($command, $args)
{
return $this->exec("AGI $command", $args);
}
/**
* Set Language.
*
* @param string $language code
* @return array, see evaluate for return information.
*/
function exec_setlanguage($language='en')
{
return $this->exec('Set', 'CHANNEL(language)='. $language);
}
/**
* Do ENUM Lookup.
*
* Note: to retrieve the result, use
* get_variable('ENUM');
*
* @param $exten
* @return array, see evaluate for return information.
*/
function exec_enumlookup($exten)
{
return $this->exec('EnumLookup', $exten);
}
/**
* Dial.
*
* Dial takes input from ${VXML_URL} to send XML Url to Cisco 7960
* Dial takes input from ${ALERT_INFO} to set ring cadence for Cisco phones
* Dial returns ${CAUSECODE}: If the dial failed, this is the errormessage.
* Dial returns ${DIALSTATUS}: Text code returning status of last dial attempt.
*
* @link http://www.voip-info.org/wiki-Asterisk+cmd+Dial
* @param string $type
* @param string $identifier
* @param integer $timeout
* @param string $options
* @param string $url
* @return array, see evaluate for return information.
*/
function exec_dial($type, $identifier, $timeout=NULL, $options=NULL, $url=NULL)
{
return $this->exec('Dial', trim("$type/$identifier,$timeout,$options,$url", ','));
}
/**
* Goto.
*
* This function takes three arguments: context,extension, and priority, but the leading arguments
* are optional, not the trailing arguments. Thuse goto($z) sets the priority to $z.
*
* @param string $a
* @param string $b;
* @param string $c;
* @return array, see evaluate for return information.
*/
function exec_goto($a, $b=NULL, $c=NULL)
{
return $this->exec('Goto', trim("$a,$b,$c", ','));
}
// *********************************************************************************************************
// ** FAST PASSING **
// *********************************************************************************************************
/**
* Say the given digit string, returning early if any of the given DTMF escape digits are received on the channel.
* Return early if $buffer is adequate for request.
*
* @link http://www.voip-info.org/wiki-say+digits
* @param string $buffer
* @param integer $digits
* @param string $escape_digits
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function fastpass_say_digits(&$buffer, $digits, $escape_digits='')
{
$proceed = false;
if($escape_digits != '' && $buffer != '')
{
if(!strpos(chr(255) . $escape_digits, $buffer{strlen($buffer)-1}))
$proceed = true;
}
if($buffer == '' || $proceed)
{
$res = $this->say_digits($digits, $escape_digits);
if($res['code'] == AGIRES_OK && $res['result'] > 0)
$buffer .= chr($res['result']);
return $res;
}
return array('code'=>AGIRES_OK, 'result'=>ord($buffer{strlen($buffer)-1}));
}
/**
* Say the given number, returning early if any of the given DTMF escape digits are received on the channel.
* Return early if $buffer is adequate for request.
*
* @link http://www.voip-info.org/wiki-say+number
* @param string $buffer
* @param integer $number
* @param string $escape_digits
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function fastpass_say_number(&$buffer, $number, $escape_digits='')
{
$proceed = false;
if($escape_digits != '' && $buffer != '')
{
if(!strpos(chr(255) . $escape_digits, $buffer{strlen($buffer)-1}))
$proceed = true;
}
if($buffer == '' || $proceed)
{
$res = $this->say_number($number, $escape_digits);
if($res['code'] == AGIRES_OK && $res['result'] > 0)
$buffer .= chr($res['result']);
return $res;
}
return array('code'=>AGIRES_OK, 'result'=>ord($buffer{strlen($buffer)-1}));
}
/**
* Say the given character string, returning early if any of the given DTMF escape digits are received on the channel.
* Return early if $buffer is adequate for request.
*
* @link http://www.voip-info.org/wiki-say+phonetic
* @param string $buffer
* @param string $text
* @param string $escape_digits
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function fastpass_say_phonetic(&$buffer, $text, $escape_digits='')
{
$proceed = false;
if($escape_digits != '' && $buffer != '')
{
if(!strpos(chr(255) . $escape_digits, $buffer{strlen($buffer)-1}))
$proceed = true;
}
if($buffer == '' || $proceed)
{
$res = $this->say_phonetic($text, $escape_digits);
if($res['code'] == AGIRES_OK && $res['result'] > 0)
$buffer .= chr($res['result']);
return $res;
}
return array('code'=>AGIRES_OK, 'result'=>ord($buffer{strlen($buffer)-1}));
}
/**
* Say a given time, returning early if any of the given DTMF escape digits are received on the channel.
* Return early if $buffer is adequate for request.
*
* @link http://www.voip-info.org/wiki-say+time
* @param string $buffer
* @param integer $time number of seconds elapsed since 00:00:00 on January 1, 1970, Coordinated Universal Time (UTC).
* @param string $escape_digits
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function fastpass_say_time(&$buffer, $time=NULL, $escape_digits='')
{
$proceed = false;
if($escape_digits != '' && $buffer != '')
{
if(!strpos(chr(255) . $escape_digits, $buffer{strlen($buffer)-1}))
$proceed = true;
}
if($buffer == '' || $proceed)
{
$res = $this->say_time($time, $escape_digits);
if($res['code'] == AGIRES_OK && $res['result'] > 0)
$buffer .= chr($res['result']);
return $res;
}
return array('code'=>AGIRES_OK, 'result'=>ord($buffer{strlen($buffer)-1}));
}
/**
* Play the given audio file, allowing playback to be interrupted by a DTMF digit. This command is similar to the GET DATA
* command but this command returns after the first DTMF digit has been pressed while GET DATA can accumulated any number of
* digits before returning.
* Return early if $buffer is adequate for request.
*
* @link http://www.voip-info.org/wiki-stream+file
* @param string $buffer
* @param string $filename without extension, often in /var/lib/asterisk/sounds
* @param string $escape_digits
* @param integer $offset
* @return array, see evaluate for return information. ['result'] is -1 on hangup or error, 0 if playback completes with no
* digit received, otherwise a decimal value of the DTMF tone. Use chr() to convert to ASCII.
*/
function fastpass_stream_file(&$buffer, $filename, $escape_digits='', $offset=0)
{
$proceed = false;
if($escape_digits != '' && $buffer != '')
{
if(!strpos(chr(255) . $escape_digits, $buffer{strlen($buffer)-1}))
$proceed = true;
}
if($buffer == '' || $proceed)
{
$res = $this->stream_file($filename, $escape_digits, $offset);
if($res['code'] == AGIRES_OK && $res['result'] > 0)
$buffer .= chr($res['result']);
return $res;
}
return array('code'=>AGIRES_OK, 'result'=>ord($buffer{strlen($buffer)-1}), 'endpos'=>0);
}
/**
* Use festival to read text.
* Return early if $buffer is adequate for request.
*
* @link http://www.cstr.ed.ac.uk/projects/festival/
* @param string $buffer
* @param string $text
* @param string $escape_digits
* @param integer $frequency
* @return array, see evaluate for return information.
*/
function fastpass_text2wav(&$buffer, $text, $escape_digits='', $frequency=8000)
{
$proceed = false;
if($escape_digits != '' && $buffer != '')
{
if(!strpos(chr(255) . $escape_digits, $buffer{strlen($buffer)-1}))
$proceed = true;
}
if($buffer == '' || $proceed)
{
$res = $this->text2wav($text, $escape_digits, $frequency);
if($res['code'] == AGIRES_OK && $res['result'] > 0)
$buffer .= chr($res['result']);
return $res;
}
return array('code'=>AGIRES_OK, 'result'=>ord($buffer{strlen($buffer)-1}), 'endpos'=>0);
}
/**
* Use Cepstral Swift to read text.
* Return early if $buffer is adequate for request.
*
* @link http://www.cepstral.com/
* @param string $buffer
* @param string $text
* @param string $escape_digits
* @param integer $frequency
* @return array, see evaluate for return information.
*/
function fastpass_swift(&$buffer, $text, $escape_digits='', $frequency=8000, $voice=NULL)
{
$proceed = false;
if($escape_digits != '' && $buffer != '')
{
if(!strpos(chr(255) . $escape_digits, $buffer{strlen($buffer)-1}))
$proceed = true;
}
if($buffer == '' || $proceed)
{
$res = $this->swift($text, $escape_digits, $frequency, $voice);
if($res['code'] == AGIRES_OK && $res['result'] > 0)
$buffer .= chr($res['result']);
return $res;
}
return array('code'=>AGIRES_OK, 'result'=>ord($buffer{strlen($buffer)-1}), 'endpos'=>0);
}
/**
* Say Puncutation in a string.
* Return early if $buffer is adequate for request.
*
* @param string $buffer
* @param string $text
* @param string $escape_digits
* @param integer $frequency
* @return array, see evaluate for return information.
*/
function fastpass_say_punctuation(&$buffer, $text, $escape_digits='', $frequency=8000)
{
$proceed = false;
if($escape_digits != '' && $buffer != '')
{
if(!strpos(chr(255) . $escape_digits, $buffer{strlen($buffer)-1}))
$proceed = true;
}
if($buffer == '' || $proceed)
{
$res = $this->say_punctuation($text, $escape_digits, $frequency);
if($res['code'] == AGIRES_OK && $res['result'] > 0)
$buffer .= chr($res['result']);
return $res;
}
return array('code'=>AGIRES_OK, 'result'=>ord($buffer{strlen($buffer)-1}));
}
/**
* Plays the given file and receives DTMF data.
* Return early if $buffer is adequate for request.
*
* This is similar to STREAM FILE, but this command can accept and return many DTMF digits,
* while STREAM FILE returns immediately after the first DTMF digit is detected.
*
* Asterisk looks for the file to play in /var/lib/asterisk/sounds by default.
*
* If the user doesn't press any keys when the message plays, there is $timeout milliseconds
* of silence then the command ends.
*
* The user has the opportunity to press a key at any time during the message or the
* post-message silence. If the user presses a key while the message is playing, the
* message stops playing. When the first key is pressed a timer starts counting for
* $timeout milliseconds. Every time the user presses another key the timer is restarted.
* The command ends when the counter goes to zero or the maximum number of digits is entered,
* whichever happens first.
*
* If you don't specify a time out then a default timeout of 2000 is used following a pressed
* digit. If no digits are pressed then 6 seconds of silence follow the message.
*
* If you don't specify $max_digits then the user can enter as many digits as they want.
*
* Pressing the # key has the same effect as the timer running out: the command ends and
* any previously keyed digits are returned. A side effect of this is that there is no
* way to read a # key using this command.
*
* @link http://www.voip-info.org/wiki-get+data
* @param string $buffer
* @param string $filename file to play. Do not include file extension.
* @param integer $timeout milliseconds
* @param integer $max_digits
* @return array, see evaluate for return information. ['result'] holds the digits and ['data'] holds the timeout if present.
*
* This differs from other commands with return DTMF as numbers representing ASCII characters.
*/
function fastpass_get_data(&$buffer, $filename, $timeout=NULL, $max_digits=NULL)
{
if(is_null($max_digits) || strlen($buffer) < $max_digits)
{
if($buffer == '')
{
$res = $this->get_data($filename, $timeout, $max_digits);
if($res['code'] == AGIRES_OK)
$buffer .= $res['result'];
return $res;
}
else
{
while(is_null($max_digits) || strlen($buffer) < $max_digits)
{
$res = $this->wait_for_digit();
if($res['code'] != AGIRES_OK) return $res;
if($res['result'] == ord('#')) break;
$buffer .= chr($res['result']);
}
}
}
return array('code'=>AGIRES_OK, 'result'=>$buffer);
}
// *********************************************************************************************************
// ** DERIVED **
// *********************************************************************************************************
/**
* Menu.
*
* This function presents the user with a menu and reads the response
*
* @param array $choices has the following structure:
* array('1'=>'*Press 1 for this', // festival reads if prompt starts with *
* '2'=>'some-gsm-without-extension',
* '*'=>'*Press star for help');
* @return mixed key pressed on sucess, -1 on failure
*/
function menu($choices, $timeout=2000)
{
$keys = join('', array_keys($choices));
$choice = NULL;
while(is_null($choice))
{
foreach($choices as $prompt)
{
if($prompt{0} == '*')
$ret = $this->text2wav(substr($prompt, 1), $keys);
else
$ret = $this->stream_file($prompt, $keys);
if($ret['code'] != AGIRES_OK || $ret['result'] == -1)
{
$choice = -1;
break;
}
if($ret['result'] != 0)
{
$choice = chr($ret['result']);
break;
}
}
if(is_null($choice))
{
$ret = $this->get_data('beep', $timeout, 1);
if($ret['code'] != AGIRES_OK || $ret['result'] == -1)
$choice = -1;
elseif($ret['result'] != '' && strpos(' '.$keys, $ret['result']))
$choice = $ret['result'];
}
}
return $choice;
}
/**
* setContext - Set context, extension and priority.
*
* @param string $context
* @param string $extension
* @param string $priority
*/
function setContext($context, $extension='s', $priority=1)
{
$this->set_context($context);
$this->set_extension($extension);
$this->set_priority($priority);
}
/**
* Parse caller id.
*
* @example examples/dtmf.php Get DTMF tones from the user and say the digits
* @example examples/input.php Get text input from the user and say it back
*
* "name" <proto:user@server:port>
*
* @param string $callerid
* @return array('Name'=>$name, 'Number'=>$number)
*/
function parse_callerid($callerid=NULL)
{
if(is_null($callerid))
$callerid = $this->request['agi_callerid'];
$ret = array('name'=>'', 'protocol'=>'', 'username'=>'', 'host'=>'', 'port'=>'');
$callerid = trim($callerid);
if($callerid{0} == '"' || $callerid{0} == "'")
{
$d = $callerid{0};
$callerid = explode($d, substr($callerid, 1));
$ret['name'] = array_shift($callerid);
$callerid = join($d, $callerid);
}
$callerid = explode('@', trim($callerid, '<> '));
$username = explode(':', array_shift($callerid));
if(count($username) == 1)
$ret['username'] = $username[0];
else
{
$ret['protocol'] = array_shift($username);
$ret['username'] = join(':', $username);
}
$callerid = join('@', $callerid);
$host = explode(':', $callerid);
if(count($host) == 1)
$ret['host'] = $host[0];
else
{
$ret['host'] = array_shift($host);
$ret['port'] = join(':', $host);
}
return $ret;
}
/**
* Use festival to read text.
*
* @example examples/dtmf.php Get DTMF tones from the user and say the digits
* @example examples/input.php Get text input from the user and say it back
* @example examples/ping.php Ping an IP address
*
* @link http://www.cstr.ed.ac.uk/projects/festival/
* @param string $text
* @param string $escape_digits
* @param integer $frequency
* @return array, see evaluate for return information.
*/
function text2wav($text, $escape_digits='', $frequency=8000)
{
$text = trim($text);
if($text == '') return true;
$hash = md5($text);
$fname = $this->config['phpagi']['tempdir'] . DIRECTORY_SEPARATOR;
$fname .= 'text2wav_' . $hash;
// create wave file
if(!file_exists("$fname.wav"))
{
// write text file
if(!file_exists("$fname.txt"))
{
$fp = fopen("$fname.txt", 'w');
fputs($fp, $text);
fclose($fp);
}
shell_exec("{$this->config['festival']['text2wave']} -F $frequency -o $fname.wav $fname.txt");
}
else
{
touch("$fname.txt");
touch("$fname.wav");
}
// stream it
$ret = $this->stream_file($fname, $escape_digits);
// clean up old files
$delete = time() - 2592000; // 1 month
foreach(glob($this->config['phpagi']['tempdir'] . DIRECTORY_SEPARATOR . 'text2wav_*') as $file)
if(filemtime($file) < $delete)
unlink($file);
return $ret;
}
/**
* Use Cepstral Swift to read text.
*
* @link http://www.cepstral.com/
* @param string $text
* @param string $escape_digits
* @param integer $frequency
* @return array, see evaluate for return information.
*/
function swift($text, $escape_digits='', $frequency=8000, $voice=NULL)
{
if(!is_null($voice))
$voice = "-n $voice";
elseif(isset($this->config['cepstral']['voice']))
$voice = "-n {$this->config['cepstral']['voice']}";
$text = trim($text);
if($text == '') return true;
$hash = md5($text);
$fname = $this->config['phpagi']['tempdir'] . DIRECTORY_SEPARATOR;
$fname .= 'swift_' . $hash;
// create wave file
if(!file_exists("$fname.wav"))
{
// write text file
if(!file_exists("$fname.txt"))
{
$fp = fopen("$fname.txt", 'w');
fputs($fp, $text);
fclose($fp);
}
shell_exec("{$this->config['cepstral']['swift']} -p audio/channels=1,audio/sampling-rate=$frequency $voice -o $fname.wav -f $fname.txt");
}
// stream it
$ret = $this->stream_file($fname, $escape_digits);
// clean up old files
$delete = time() - 2592000; // 1 month
foreach(glob($this->config['phpagi']['tempdir'] . DIRECTORY_SEPARATOR . 'swift_*') as $file)
if(filemtime($file) < $delete)
unlink($file);
return $ret;
}
/**
* Text Input.
*
* Based on ideas found at http://www.voip-info.org/wiki-Asterisk+cmd+DTMFToText
*
* Example:
* UC H LC i , SP h o w SP a r e SP y o u ?
* $string = '*8'.'44*'.'*5'.'444*'.'00*'.'0*'.'44*'.'666*'.'9*'.'0*'.'2*'.'777*'.'33*'.'0*'.'999*'.'666*'.'88*'.'0000*';
*
* @link http://www.voip-info.org/wiki-Asterisk+cmd+DTMFToText
* @example examples/input.php Get text input from the user and say it back
*
* @return string
*/
function text_input($mode='NUMERIC')
{
$alpha = array( 'k0'=>' ', 'k00'=>',', 'k000'=>'.', 'k0000'=>'?', 'k00000'=>'0',
'k1'=>'!', 'k11'=>':', 'k111'=>';', 'k1111'=>'#', 'k11111'=>'1',
'k2'=>'A', 'k22'=>'B', 'k222'=>'C', 'k2222'=>'2',
'k3'=>'D', 'k33'=>'E', 'k333'=>'F', 'k3333'=>'3',
'k4'=>'G', 'k44'=>'H', 'k444'=>'I', 'k4444'=>'4',
'k5'=>'J', 'k55'=>'K', 'k555'=>'L', 'k5555'=>'5',
'k6'=>'M', 'k66'=>'N', 'k666'=>'O', 'k6666'=>'6',
'k7'=>'P', 'k77'=>'Q', 'k777'=>'R', 'k7777'=>'S', 'k77777'=>'7',
'k8'=>'T', 'k88'=>'U', 'k888'=>'V', 'k8888'=>'8',
'k9'=>'W', 'k99'=>'X', 'k999'=>'Y', 'k9999'=>'Z', 'k99999'=>'9');
$symbol = array('k0'=>'=',
'k1'=>'<', 'k11'=>'(', 'k111'=>'[', 'k1111'=>'{', 'k11111'=>'1',
'k2'=>'@', 'k22'=>'$', 'k222'=>'&', 'k2222'=>'%', 'k22222'=>'2',
'k3'=>'>', 'k33'=>')', 'k333'=>']', 'k3333'=>'}', 'k33333'=>'3',
'k4'=>'+', 'k44'=>'-', 'k444'=>'*', 'k4444'=>'/', 'k44444'=>'4',
'k5'=>"'", 'k55'=>'`', 'k555'=>'5',
'k6'=>'"', 'k66'=>'6',
'k7'=>'^', 'k77'=>'7',
'k8'=>"\\",'k88'=>'|', 'k888'=>'8',
'k9'=>'_', 'k99'=>'~', 'k999'=>'9');
$text = '';
do
{
$command = false;
$result = $this->get_data('beep');
foreach(explode('*', $result['result']) as $code)
{
if($command)
{
switch($code{0})
{
case '2': $text = substr($text, 0, strlen($text) - 1); break; // backspace
case '5': $mode = 'LOWERCASE'; break;
case '6': $mode = 'NUMERIC'; break;
case '7': $mode = 'SYMBOL'; break;
case '8': $mode = 'UPPERCASE'; break;
case '9': $text = explode(' ', $text); unset($text[count($text)-1]); $text = join(' ', $text); break; // backspace a word
}
$code = substr($code, 1);
$command = false;
}
if($code == '')
$command = true;
elseif($mode == 'NUMERIC')
$text .= $code;
elseif($mode == 'UPPERCASE' && isset($alpha['k'.$code]))
$text .= $alpha['k'.$code];
elseif($mode == 'LOWERCASE' && isset($alpha['k'.$code]))
$text .= strtolower($alpha['k'.$code]);
elseif($mode == 'SYMBOL' && isset($symbol['k'.$code]))
$text .= $symbol['k'.$code];
}
$this->say_punctuation($text);
} while(substr($result['result'], -2) == '**');
return $text;
}
/**
* Say Puncutation in a string.
*
* @param string $text
* @param string $escape_digits
* @param integer $frequency
* @return array, see evaluate for return information.
*/
function say_punctuation($text, $escape_digits='', $frequency=8000)
{
$ret="";
for($i = 0; $i < strlen($text); $i++)
{
switch($text{$i})
{
case ' ': $ret .= 'SPACE ';
case ',': $ret .= 'COMMA '; break;
case '.': $ret .= 'PERIOD '; break;
case '?': $ret .= 'QUESTION MARK '; break;
case '!': $ret .= 'EXPLANATION POINT '; break;
case ':': $ret .= 'COLON '; break;
case ';': $ret .= 'SEMICOLON '; break;
case '#': $ret .= 'POUND '; break;
case '=': $ret .= 'EQUALS '; break;
case '<': $ret .= 'LESS THAN '; break;
case '(': $ret .= 'LEFT PARENTHESIS '; break;
case '[': $ret .= 'LEFT BRACKET '; break;
case '{': $ret .= 'LEFT BRACE '; break;
case '@': $ret .= 'AT '; break;
case '$': $ret .= 'DOLLAR SIGN '; break;
case '&': $ret .= 'AMPERSAND '; break;
case '%': $ret .= 'PERCENT '; break;
case '>': $ret .= 'GREATER THAN '; break;
case ')': $ret .= 'RIGHT PARENTHESIS '; break;
case ']': $ret .= 'RIGHT BRACKET '; break;
case '}': $ret .= 'RIGHT BRACE '; break;
case '+': $ret .= 'PLUS '; break;
case '-': $ret .= 'MINUS '; break;
case '*': $ret .= 'ASTERISK '; break;
case '/': $ret .= 'SLASH '; break;
case "'": $ret .= 'SINGLE QUOTE '; break;
case '`': $ret .= 'BACK TICK '; break;
case '"': $ret .= 'QUOTE '; break;
case '^': $ret .= 'CAROT '; break;
case "\\": $ret .= 'BACK SLASH '; break;
case '|': $ret .= 'BAR '; break;
case '_': $ret .= 'UNDERSCORE '; break;
case '~': $ret .= 'TILDE '; break;
default: $ret .= $text{$i} . ' '; break;
}
}
return $this->text2wav($ret, $escape_digits, $frequency);
}
/**
* Create a new AGI_AsteriskManager.
*/
function &new_AsteriskManager()
{
$this->asm = new AGI_AsteriskManager(NULL, $this->config);
$this->asm->pagi =& $this;
$this->config =& $this->asm->config;
return $this->asm;
}
// *********************************************************************************************************
// ** PRIVATE **
// *********************************************************************************************************
/**
* Evaluate an AGI command.
*
* @access private
* @param string $command
* @return array ('code'=>$code, 'result'=>$result, 'data'=>$data)
*/
function evaluate($command)
{
$broken = array('code'=>500, 'result'=>-1, 'data'=>'');
// write command
if(!@fwrite($this->out, trim($command) . "\n")) return $broken;
fflush($this->out);
// Read result. Occasionally, a command return a string followed by an extra new line.
// When this happens, our script will ignore the new line, but it will still be in the
// buffer. So, if we get a blank line, it is probably the result of a previous
// command. We read until we get a valid result or asterisk hangs up. One offending
// command is SEND TEXT.
$count = 0;
do
{
$str = trim(fgets($this->in, 4096));
} while($str == '' && $count++ < 5);
if($count >= 5)
{
// $this->conlog("evaluate error on read for $command");
return $broken;
}
// parse result
$ret['code'] = substr($str, 0, 3);
$str = trim(substr($str, 3));
if($str{0} == '-') // we have a multiline response!
{
$count = 0;
$str = substr($str, 1) . "\n";
$line = fgets($this->in, 4096);
while(substr($line, 0, 3) != $ret['code'] && $count < 5)
{
$str .= $line;
$line = fgets($this->in, 4096);
$count = (trim($line) == '') ? $count + 1 : 0;
}
if($count >= 5)
{
// $this->conlog("evaluate error on multiline read for $command");
return $broken;
}
}
$ret['result'] = NULL;
$ret['data'] = '';
if($ret['code'] != AGIRES_OK) // some sort of error
{
$ret['data'] = $str;
$this->conlog(print_r($ret, true));
}
else // normal AGIRES_OK response
{
$parse = explode(' ', trim($str));
$in_token = false;
foreach($parse as $token)
{
if($in_token) // we previously hit a token starting with ')' but not ending in ')'
{
$ret['data'] .= ' ' . trim($token, '() ');
if($token{strlen($token)-1} == ')') $in_token = false;
}
elseif($token{0} == '(')
{
if($token{strlen($token)-1} != ')') $in_token = true;
$ret['data'] .= ' ' . trim($token, '() ');
}
elseif(strpos($token, '='))
{
$token = explode('=', $token);
$ret[$token[0]] = $token[1];
}
elseif($token != '')
$ret['data'] .= ' ' . $token;
}
$ret['data'] = trim($ret['data']);
}
// log some errors
if($ret['result'] < 0)
$this->conlog("$command returned {$ret['result']}");
return $ret;
}
/**
* Log to console if debug mode.
*
* @example examples/ping.php Ping an IP address
*
* @param string $str
* @param integer $vbl verbose level
*/
function conlog($str, $vbl=1)
{
static $busy = false;
if($this->config['phpagi']['debug'] != false)
{
if(!$busy) // no conlogs inside conlog!!!
{
$busy = true;
$this->verbose($str, $vbl);
$busy = false;
}
}
}
/**
* Find an execuable in the path.
*
* @access private
* @param string $cmd command to find
* @param string $checkpath path to check
* @return string the path to the command
*/
function which($cmd, $checkpath=NULL)
{
global $_ENV;
$chpath = is_null($checkpath) ? $_ENV['PATH'] : $checkpath;
foreach(explode(':', $chpath) as $path)
if(is_executable("$path/$cmd"))
return "$path/$cmd";
if(is_null($checkpath))
return $this->which($cmd, '/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:'.
'/usr/X11R6/bin:/usr/local/apache/bin:/usr/local/mysql/bin');
return false;
}
/**
* Make a folder recursively.
*
* @access private
* @param string $folder
* @param integer $perms
* @return boolean
*/
function make_folder($folder, $perms=0755)
{
$f = explode(DIRECTORY_SEPARATOR, $folder);
$base = '';
for($i = 0; $i < count($f); $i++)
{
$base .= $f[$i];
if($f[$i] != '' && !file_exists($base)) {
if(mkdir($base, $perms)==FALSE){
return(FALSE);
}
}
$base .= DIRECTORY_SEPARATOR;
}
return(TRUE);
}
}
/**
* error handler for phpagi.
*
* @param integer $level PHP error level
* @param string $message error message
* @param string $file path to file
* @param integer $line line number of error
* @param array $context variables in the current scope
*/
function phpagi_error_handler($level, $message, $file, $line, $context)
{
if(ini_get('error_reporting') == 0) return; // this happens with an @
@syslog(LOG_WARNING, $file . '[' . $line . ']: ' . $message);
global $phpagi_error_handler_email;
if(function_exists('mail') && !is_null($phpagi_error_handler_email)) // generate email debugging information
{
// decode error level
switch($level)
{
case E_WARNING:
case E_USER_WARNING:
$level = "Warning";
break;
case E_NOTICE:
case E_USER_NOTICE:
$level = "Notice";
break;
case E_USER_ERROR:
$level = "Error";
break;
}
// build message
$basefile = basename($file);
$subject = "$basefile/$line/$level: $message";
$message = "$level: $message in $file on line $line\n\n";
if(function_exists('mysql_errno') && strpos(' '.strtolower($message), 'mysql'))
$message .= 'MySQL error ' . mysql_errno() . ": " . mysql_error() . "\n\n";
// figure out who we are
if(function_exists('socket_create'))
{
$addr = NULL;
$port = 80;
$socket = @socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
@socket_connect($socket, '64.0.0.0', $port);
@socket_getsockname($socket, $addr, $port);
@socket_close($socket);
$message .= "\n\nIP Address: $addr\n";
}
// include variables
$message .= "\n\nContext:\n" . print_r($context, true);
$message .= "\n\nGLOBALS:\n" . print_r($GLOBALS, true);
$message .= "\n\nBacktrace:\n" . print_r(debug_backtrace(), true);
// include code fragment
if(file_exists($file))
{
$message .= "\n\n$file:\n";
$code = @file($file);
for($i = max(0, $line - 10); $i < min($line + 10, count($code)); $i++)
$message .= ($i + 1)."\t$code[$i]";
}
// make sure message is fully readable (convert unprintable chars to hex representation)
$ret = '';
for($i = 0; $i < strlen($message); $i++)
{
$c = ord($message{$i});
if($c == 10 || $c == 13 || $c == 9)
$ret .= $message{$i};
elseif($c < 16)
$ret .= '\x0' . dechex($c);
elseif($c < 32 || $c > 127)
$ret .= '\x' . dechex($c);
else
$ret .= $message{$i};
}
$message = $ret;
// send the mail if less than 5 errors
static $mailcount = 0;
if($mailcount < 5)
@mail($phpagi_error_handler_email, $subject, $message);
$mailcount++;
}
}
$phpagi_error_handler_email = NULL;
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.