Node.php
34.9 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
<?php
/**
* A node, used to get input from the user, validate it, play prompt messages,
* etc.
*
* PHP Version 5.3
*
* @category PAGI
* @package Node
* @author Marcelo Gornstein <[email protected]>
* @license http://marcelog.github.com/PAGI/ Apache License 2.0
* @version SVN: $Id$
* @link http://marcelog.github.com/PAGI/
*
* Copyright 2011 Marcelo Gornstein <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
namespace PAGI\Node;
use PAGI\Client\IClient;
use PAGI\Client\Result\IReadResult;
use PAGI\Client\Result\IResult;
use PAGI\Node\Exception\NodeException;
/**
* A node, used to get input from the user, validate it, play prompt messages,
* etc.
*
* @category PAGI
* @package Node
* @author Marcelo Gornstein <[email protected]>
* @license http://marcelog.github.com/PAGI/ Apache License 2.0
* @link http://marcelog.github.com/PAGI/
*/
class Node
{
/**
* Any of the available DTMF digits in a classic telephone.
* @var string
*/
const DTMF_ANY = '0123456789*#';
/**
* DTMF digit '*'
* @var string
*/
const DTMF_STAR = '*';
/**
* DTMF digit '#'
* @var string
*/
const DTMF_HASH = '#';
/**
* DTMF digits which are integers (numbers)
* @var string
*/
const DTMF_NUMERIC = '1234567890';
/**
* DTMF digits non numeric
* @var string
*/
const DTMF_NONNUMERIC = '#*';
/**
* DTMF digit '1'
* @var string
*/
const DTMF_1 = '1';
/**
* DTMF digit '2'
* @var string
*/
const DTMF_2 = '2';
/**
* DTMF digit '3'
* @var string
*/
const DTMF_3 = '3';
/**
* DTMF digit '4'
* @var string
*/
const DTMF_4 = '4';
/**
* DTMF digit '5'
* @var string
*/
const DTMF_5 = '5';
/**
* DTMF digit '6'
* @var string
*/
const DTMF_6 = '6';
/**
* DTMF digit '7'
* @var string
*/
const DTMF_7 = '7';
/**
* DTMF digit '8'
* @var string
*/
const DTMF_8 = '8';
/**
* DTMF digit '9'
* @var string
*/
const DTMF_9 = '9';
/**
* DTMF digit '0'
* @var string
*/
const DTMF_0 = '0';
/**
* No DTMFs.
* @var string
*/
const DTMF_NONE = '';
/**
* State when the node has not be run yet.
* @var integer
*/
const STATE_NOT_RUN = 1;
/**
* State reached when the node can be cancelled (it has a cancel digit set)
* and the user pressed it.
* @var integer
*/
const STATE_CANCEL = 2;
/**
* State reached when the input is considered complete (it has at least
* the minimum number of digits)
* @var integer
*/
const STATE_COMPLETE = 3;
/**
* The user has not entered any input.
* @var integer
*/
const STATE_TIMEOUT = 4;
/**
* The user exceeded the maximum number of attempts allowed to enter
* a valid option.
* @var integer
*/
const STATE_MAX_INPUTS_REACHED = 5;
/**
* Used when evaluating input, returned when the user presses the end of
* input digit.
* @var integer
*/
const INPUT_END = 1;
/**
* Used when evaluating input, returned when the user presses the cancel
* digit.
* @var integer
*/
const INPUT_CANCEL = 2;
/**
* Used when evaluating input, returned when the user presses a digit
* that is not a cancel or end of input digit.
* @var integer
*/
const INPUT_NORMAL = 3;
/**
* Used to specify infinite time for timeouts.
* @var integer
*/
const TIME_INFINITE = -1;
/**
* Holds the PAGI client.
* @var \PAGI\Client\IClient
*/
private $client = null;
/**
* Here's where the user input is appended one digit at the time.
* @var string
*/
private $input = self::DTMF_NONE;
/**
* Node state.
* @var integer
*/
protected $state = self::STATE_NOT_RUN;
/**
* Holds the configured end of input digit.
* @var string
*/
private $endOfInputDigit = 'X';
/**
* Holds the configured cancel digit.
* @var string
*/
private $cancelDigit = 'X';
/**
* The minimum configured expected input length.
* @var integer
*/
private $minInput = 0;
/**
* The maximum configured expected input length.
* @var integer
*/
private $maxInput = 0;
/**
* In milliseconds, maximum time to wait for user input between digits.
* Only taken into account when expecting input outside prompt and preprompt
* messages.
* @var integer
*/
private $timeBetweenDigits = self::TIME_INFINITE;
/**
* In milliseconds, maximum time to wait for a complete user input (per
* attempt).
* @var integer
*/
private $totalTimeForInput = self::TIME_INFINITE;
/**
* Holds the prompt messages (actions) to be used before expecting the user
* input (like sounds, numbers, datetimes, etc).
* @var string[]
*/
private $promptMessages = array();
/**
* Similar to prompt messages, but dynamically populated and cleared with
* pre prompt messages, like error messages from validations.
* @var string[]
*/
private $prePromptMessages = array();
/**
* True if the pre prompt messages can be interrupted with a dtmf digit.
* @var boolean
*/
private $prePromptMessagesInterruptable = true;
/**
* When the user can interrupt the pre prompt messages, this will indicate
* if the digit pressed count as input (thus, discarding the prompt
* messages).
* @var boolean
*/
private $acceptPrePromptInputAsInput = true;
/**
* Node name.
* @var string
*/
private $name = 'X';
/**
* Holds all input validators.
* @var \Closure[]
*/
private $inputValidations = array();
/**
* Total attempts for the user to enter a valid input. Will loop input
* routine this many times when the input is not validated.
* @var integer
*/
private $totalAttemptsForInput = 1;
/**
* Optional message to play when the user did not enter any digits on
* input.
* @var string
*/
private $onNoInputMessage = null;
/**
* Optinal message to play when the user exceeded the maximum allowed
* attempts to enter a valid input.
* @var string
*/
private $onMaxValidInputAttempts = null;
/**
* True if prompt messages can be interrupted.
* @var boolean
*/
private $promptsCanBeInterrupted = true;
/**
* When pre prompt or prompt messages can be interrupted, these are the
* valid interrupt digits.
* @var string
*/
private $validInterruptDigits = self::DTMF_ANY;
/**
* Carries state. This is where optional custom data can be saved in the
* callbacks and 3rd party software. Keys are strings.
* @var mixed[]
*/
private $registry = array();
/**
* Callback to execute on valid input from the user.
* @var \Closure
*/
private $executeOnValidInput = null;
/**
* Callback to execute when the node failed to correctly
* Enter description here ...
* @var \Closure
*/
private $executeOnInputFailed = null;
/**
* When true, the user may retry the input by pressing the cancel button
* if and only if he/she has already input one or more digits.
* @var boolean
*/
private $cancelWithInputRetriesInput = false;
/**
* Used to save the total amount of opportunities used to enter valid input.
* @var integer
*/
private $inputAttemptsUsed = 0;
/**
* Execute before running this node.
* @var \Closure
*/
private $executeBeforeRun = null;
/**
* Execute after running this node.
* @var \Closure
*/
private $executeAfterRun = null;
/**
* Execute after a validation has failed.
* @var \Closure
*/
private $executeAfterFailedValidation = null;
/**
* Play "no input" message in last attempt too.
* @var boolean
*/
private $playOnNoInputInLastAttempt = false;
/**
* Make pre prompt messages not interruptable
*
* @return Node
*/
public function prePromptMessagesNotInterruptable()
{
$this->prePromptMessagesInterruptable = false;
$this->validInterruptDigits = self::DTMF_NONE;
return $this;
}
/**
* Digits entered during the pre prompt messages are not considered
* as node input.
*
* @return Node
*/
public function dontAcceptPrePromptInputAsInput()
{
$this->acceptPrePromptInputAsInput = false;
return $this;
}
/**
* Make prompt messages not interruptable.
*
* @return Node
*/
public function unInterruptablePrompts()
{
$this->promptsCanBeInterrupted = false;
$this->validInterruptDigits = self::DTMF_NONE;
return $this;
}
/**
* Specify an optional message to play when the user did not enter any
* input at all. By default, will NOT be played if this happens in the last
* allowed attempt.
*
* @param string $filename Sound file to play.
*
* @return Node
*/
public function playOnNoInput($filename)
{
$this->onNoInputMessage = $filename;
return $this;
}
/**
* Forces to play "no input" message on last attempt too.
*
* @return Node
*/
public function playNoInputMessageOnLastAttempt()
{
$this->playOnNoInputInLastAttempt = true;
return $this;
}
/**
* Optional message to play when the user exhausted all the available
* attempts to enter a valid input.
*
* @param string $filename Sound file to play.
*
* @return Node
*/
public function playOnMaxValidInputAttempts($filename)
{
$this->onMaxValidInputAttempts = $filename;
return $this;
}
/**
* Specify a maximum attempt number for the user to enter a valid input.
* Defaults to 1.
*
* @param integer $number
*
* @return Node
*/
public function maxAttemptsForInput($number)
{
$this->totalAttemptsForInput = $number;
return $this;
}
/**
* Given a callback and an optional sound to play on error, this will
* return a validator information structure to be used with
* validateInputWith().
*
* @param \Closure $validation Callback to use as validator
* @param string|null $soundOnError Sound file to play on error
*
* @return validatorInfo
*/
public static function createValidatorInfo(
\Closure $validation,
$soundOnError = null
) {
return array(
'callback' => $validation,
'soundOnError' => $soundOnError
);
}
/**
* Given an array of validator information structures, this will load
* all validators into this node.
*
* @param validatorInfo[] $validatorsInformation
*
* @return Node
*/
public function loadValidatorsFrom(array $validatorsInformation)
{
foreach ($validatorsInformation as $name => $validatorInfo) {
$this->validateInputWith(
$name,
$validatorInfo['callback'],
$validatorInfo['soundOnError']
);
}
return $this;
}
/**
* Add an input validation to this node.
*
* @param string $name A distrinctive name for this validator
* @param \Closure $validation Callback to use for validation
* @param string|null $soundOnError Optional sound to play on error
*
* @return Node
*/
public function validateInputWith($name, \Closure $validation, $soundOnError = null)
{
$this->inputValidations[$name] = self::createValidatorInfo(
$validation,
$soundOnError
);
return $this;
}
/**
* Calls all validators in order. Will stop when any of them returns false.
*
* @return boolean
*/
public function validate()
{
foreach ($this->inputValidations as $name => $data) {
$validator = $data['callback'];
$result = $validator($this);
if ($result === false) {
$this->logDebug("Validation FAILED: $name");
$onError = $data['soundOnError'];
if (is_array($onError)) {
foreach ($onError as $msg) {
$this->addPrePromptMessage($msg);
}
} elseif (is_string($onError)) {
$this->addPrePromptMessage($onError);
} else {
$this->logDebug("Ignoring validation sound: " . print_r($onError, true));
}
return false;
}
$this->logDebug("Validation OK: $name");
}
return true;
}
/**
* Removes prompt messages.
*
* @return Node
*/
public function clearPromptMessages()
{
$this->promptMessages = array();
return $this;
}
/**
* Internally used to execute prompt messages in the agi client.
*
* @return void
*/
protected function addClientMethodCall()
{
$args = func_get_args();
$name = array_shift($args);
$this->promptMessages[] = array($name => $args);
}
/**
* Internally used to execute pre prompt messages in the agi client.
*
* @return void
*/
protected function addPrePromptClientMethodCall()
{
$args = func_get_args();
$name = array_shift($args);
$this->prePromptMessages[] = array($name => $args);
}
/**
* Adds a sound file to play as a pre prompt message.
*
* @param string $filename
*
* @return void
*/
public function addPrePromptMessage($filename)
{
$this->addPrePromptClientMethodCall(
'streamFile',
$filename,
$this->validInterruptDigits
);
}
/**
* Loads a prompt message for saying the digits of the given number.
*
* @param integer $digits
*
* @return Node
*/
public function sayDigits($digits)
{
$this->addClientMethodCall('sayDigits', $digits, $this->validInterruptDigits);
return $this;
}
/**
* Loads a prompt message for saying a number.
*
* @param integer $number
*
* @return Node
*/
public function sayNumber($number)
{
$this->addClientMethodCall('sayNumber', $number, $this->validInterruptDigits);
return $this;
}
/**
* Loads a prompt message for saying a date/time expressed by a unix
* timestamp and a format.
*
* @param integer $timestamp
* @param string $format
*
* @return Node
*/
public function sayDateTime($timestamp, $format)
{
$this->addClientMethodCall('sayDateTime', $timestamp, $format, $this->validInterruptDigits);
return $this;
}
/**
* Loads a prompt message for playing an audio file.
*
* @param string $filename
*
* @return Node
*/
public function saySound($filename)
{
$this->addClientMethodCall('streamFile', $filename, $this->validInterruptDigits);
return $this;
}
/**
* Configure the node to expect at least this many digits. The input is
* considered complete when this many digits has been entered. Cancel and
* end of input digits (if configured) are not taken into account.
*
* @param integer $length
*
* @return Node
*/
public function expectAtLeast($length)
{
$this->minInput = $length;
return $this;
}
/**
* Configure the node to expect at most this many digits. The reading loop
* will try to read this many digits.
*
* @param integer $length
*
* @return Node
*/
public function expectAtMost($length)
{
$this->maxInput = $length;
return $this;
}
/**
* Configure this node to expect at least and at most this many digits.
*
* @param integer $length
*
* @return Node
*/
public function expectExactly($length)
{
return $this->expectAtLeast($length)->expectAtMost($length);
}
/**
* Configures a specific digit as the cancel digit.
*
* @param string $digit A single character, one of the DTMF_* constants.
*
* @return Node
*/
public function cancelWith($digit)
{
$this->cancelDigit = $digit;
return $this;
}
/**
* Configures a specific digit as the end of input digit.
*
* @param string $digit A single character, one of the DTMF_* constants.
*
* @return Node
*/
public function endInputWith($digit)
{
$this->endOfInputDigit = $digit;
return $this;
}
/**
* Configures the maximum time available between digits before a timeout.
*
* @param integer $milliseconds
*
* @return Node
*/
public function maxTimeBetweenDigits($milliseconds)
{
$this->timeBetweenDigits = $milliseconds;
return $this;
}
/**
* Configures the maximum time available for the user to enter valid input
* per attempt.
*
* @param integer $milliseconds
*
* @return Node
*/
public function maxTotalTimeForInput($milliseconds)
{
$this->totalTimeForInput = $milliseconds;
return $this;
}
/**
* True if this node has at least this many digits entered.
*
* @param integer $length
*
* @return boolean
*/
public function inputLengthIsAtLeast($length)
{
return strlen($this->input) >= $length;
}
/**
* True if this node has at least 1 digit as input, excluding cancel and
* end of input digits.
*
* @return boolean
*/
public function hasInput()
{
return $this->inputLengthIsAtLeast(1);
}
/**
* Returns input.
*
* @return string
*/
public function getInput()
{
return $this->input;
}
/**
* Returns the agi client in use.
*
* @return \PAGI\Client\IClient
*/
public function getClient()
{
return $this->client;
}
/**
* Gives a name for this node.
*
* @param string $name
*
* @return Node
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* Sets the pagi client to use by this node.
*
* @param \PAGI\Client\IClient $client
*
* @return Node
*/
public function setAgiClient(IClient $client)
{
$this->client = $client;
return $this;
}
/**
* Appends an input to the node input.
*
* @param string $digit A single character, one of the DTMF_* constants.
*
* @return void
*/
protected function appendInput($digit)
{
$this->input .= $digit;
}
/**
* True if the digit matches the cancel digit.
*
* @param string $digit A single character, one of the DTMF_* constants.
*
* @return boolean
*/
protected function inputIsCancel($digit)
{
return $digit == $this->cancelDigit;
}
/**
* True if the digit matches the end of input digit.
*
* @param string $digit A single character, one of the DTMF_* constants.
*
* @return boolean
*/
protected function inputIsEnd($digit)
{
return $digit == $this->endOfInputDigit;
}
/**
* Returns the kind of digit entered by the user, CANCEL, END, NORMAL.
*
* @param string $digit A single character, one of the DTMF_* constants.
*
* @return integer
*/
protected function evaluateInput($digit)
{
if ($this->inputIsCancel($digit)) {
return self::INPUT_CANCEL;
}
if ($this->inputIsEnd($digit)) {
return self::INPUT_END;
}
return self::INPUT_NORMAL;
}
/**
* Process a single digit input by the user. Changes the node state
* according to the digit entered (CANCEL, COMPLETE).
*
* @param @param string $digit A single character, one of the DTMF_* constants.
*
* @return void
*/
protected function acceptInput($digit)
{
switch ($this->evaluateInput($digit)) {
case self::INPUT_CANCEL:
$this->state = self::STATE_CANCEL;
break;
case self::INPUT_END:
$this->state = self::STATE_COMPLETE;
break;
default:
$this->appendInput($digit);
if ($this->minInput > 0 && $this->inputLengthIsAtLeast($this->minInput)) {
$this->state = self::STATE_COMPLETE;
}
}
}
/**
* True if the user reached the maximum allowed attempts for valid input.
*
* @return boolean
*/
public function maxInputsReached()
{
return $this->state == self::STATE_MAX_INPUTS_REACHED;
}
/**
* True if this node is in CANCEL state.
*
* @return boolean
*/
public function wasCancelled()
{
return $this->state == self::STATE_CANCEL;
}
/**
* True if this node is in TIMEOUT state.
*
* @return boolean
*/
public function isTimeout()
{
return $this->state == self::STATE_TIMEOUT;
}
/**
* True if this node is in COMPLETE state.
*
* @return boolean
*/
public function isComplete()
{
return $this->state == self::STATE_COMPLETE;
}
/**
* Call a specific method on a client.
*
* @param string $name
* @param string[] $arguments
*
* @return IResult
*/
protected function callClientMethod($name, array $arguments = array())
{
$this->logDebug("$name(" . implode(",", $arguments) . ")");
return call_user_func_array(array($this->client, $name), $arguments);
}
/**
* Calls methods in the PAGI client.
*
* @param methodInfo[] $methods Methods to call, an array of arrays. The
* second array has the method name as key and an array of arguments as
* value.
* @param \Closure $stopWhen If any, this callback is evaluated before
* returning. Will return when false.
*
* @return IResult
*/
protected function callClientMethods($methods, $stopWhen = null)
{
$result = null;
foreach ($methods as $callInfo) {
foreach ($callInfo as $name => $arguments) {
$result = $this->callClientMethod($name, $arguments);
if ($stopWhen !== null) {
if ($stopWhen($result)) {
return $result;
}
}
}
}
return $result;
}
/**
* Plays pre prompt messages, like error messages from validations.
*
* @return IResult|null
*/
protected function playPromptMessages()
{
$interruptable = $this->promptsCanBeInterrupted;
$result = $this->callClientMethods(
$this->promptMessages,
function ($result) use ($interruptable) {
/* @var $result IReadResult */
return $interruptable && !$result->isTimeout();
}
);
return $result;
}
/**
* Internally used to clear pre prompt messages after being played.
*
* @return void
*/
protected function clearPrePromptMessages()
{
$this->prePromptMessages = array();
}
/**
* Internally used to play all pre prompt queued messages. Clears the
* queue after it.
*
* @return IResult
*/
protected function playPrePromptMessages()
{
$interruptable = $this->prePromptMessagesInterruptable;
$result = $this->callClientMethods(
$this->prePromptMessages,
function ($result) use ($interruptable) {
/* @var $result IReadResult */
return $interruptable && !$result->isTimeout();
}
);
$this->clearPrePromptMessages();
return $result;
}
/**
* Saves a custom key/value to the registry.
*
* @param string $key
* @param mixed $value
*
* @return Node
*/
public function saveCustomData($key, $value)
{
$this->registry[$key] = $value;
return $this;
}
/**
* Returns the value for the given key in the registry.
*
* @param string $key
*
* @return mixed
*/
public function getCustomData($key)
{
return $this->registry[$key];
}
/**
* True if the given key exists in the registry.
*
* @param string $key
*
* @return boolean
*/
public function hasCustomData($key)
{
return isset($this->registry[$key]);
}
/**
* Remove a key/value from the registry.
*
* @param string $key
*
* @return Node
*/
public function delCustomData($key)
{
unset($this->registry[$key]);
return $this;
}
/**
* Allow the user to retry input by pressing the cancel digit after entered
* one or more digits. For example, when entering a 12 number pin, the user
* might press the cancel digit at the 5th digit to re-enter it. This
* counts as a failed input, but will not cancel the node. The node will be
* cancelled only if the user presses the cancel digit with NO input at all.
*
* @return Node
*/
public function cancelWithInputRetriesInput()
{
$this->cancelWithInputRetriesInput = true;
return $this;
}
/**
* Specify a callback function to invoke when the user entered a valid
* input.
*
* @param \Closure $callback
*
* @return Node
*/
public function executeOnValidInput(\Closure $callback)
{
$this->executeOnValidInput = $callback;
return $this;
}
/**
* Executes a callback when the node fails to properly get input from the
* user (either because of cancel, max attempts reached, timeout).
*
* @param \Closure $callback
*
* @return Node
*/
public function executeOnInputFailed(\Closure $callback)
{
$this->executeOnInputFailed = $callback;
return $this;
}
/**
* Returns the total number of input attempts used by the user.
*
* @return integer
*/
public function getTotalInputAttemptsUsed()
{
return $this->inputAttemptsUsed;
}
/**
* Internally used to clear the input per input attempt. Also resets state
* to TIMEOUT.
*
* @return Node
*/
protected function resetInput()
{
if ($this->minInput === 0) {
$this->state = self::STATE_COMPLETE;
} else {
$this->state = self::STATE_TIMEOUT;
}
$this->input = self::DTMF_NONE;
return $this;
}
/**
* Internally used to accept input from the user. Plays pre prompt messages,
* prompt, and waits for a complete input or cancel.
*
* @return void
*/
protected function doInput()
{
/* @var $result IReadResult */
$this->resetInput();
$this->inputAttemptsUsed++;
$result = $this->playPrePromptMessages();
if (!$this->acceptPrePromptInputAsInput) {
$result = $this->playPromptMessages();
if ($result !== null && !$result->isTimeout()) {
$this->acceptInput($result->getDigits());
}
} elseif ($result !== null && !$result->isTimeout()) {
$this->acceptInput($result->getDigits());
} else {
$result = $this->playPromptMessages();
if ($result !== null) {
$this->acceptInput($result->getDigits());
}
}
if ($this->inputLengthIsAtLeast($this->maxInput) // max = 1
|| $this->wasCancelled()
|| ($this->isComplete() && !$this->hasInput()) // user pressed eoi
) {
return;
}
$len = strlen($this->input);
$start = time();
for ($i = $len; $i < $this->maxInput; $i++) {
if ($this->totalTimeForInput != -1) {
$totalElapsedTime = (time() - $start) * 1000;
if ($totalElapsedTime >= $this->totalTimeForInput) {
$this->logDebug("Expired total available time for input");
break;
}
}
$this->logDebug($this->name . ": Reading Digit #: " . ($i + 1));
$result = $this->callClientMethods(array(
array('waitDigit' => array($this->timeBetweenDigits))
));
if ($result->isTimeout()) {
$this->logDebug("Expired available time per digit");
break;
}
$input = $result->getDigits();
$this->acceptInput($input);
if ($this->inputIsEnd($input) || $this->wasCancelled()) {
break;
}
}
}
/**
* Convenient hook to execute before calling the onValidInput callback.
*
* @return void
*/
protected function beforeOnValidInput()
{
}
/**
* Convenient hook to execute before calling the onInputFailed callback.
*
* @return void
*/
protected function beforeOnInputFailed()
{
}
/**
* Executes before running the node.
*
* @param \closure $callback
*
* @return Node
*/
public function executeBeforeRun(\Closure $callback)
{
$this->executeBeforeRun = $callback;
return $this;
}
/**
* Executes after running the node.
*
* @param \Closure $callback
*
* @return Node
*/
public function executeAfterRun(\Closure $callback)
{
$this->executeAfterRun = $callback;
return $this;
}
/**
* Executes after the 1st failed validation.
*
* @param \Closure $callback
*
* @return Node
*/
public function executeAfterFailedValidation(\Closure $callback)
{
$this->executeAfterFailedValidation = $callback;
return $this;
}
/**
* Executes this node.
*
* @return Node
*/
public function run()
{
$this->inputAttemptsUsed = 0;
if ($this->executeBeforeRun !== null) {
$callback = $this->executeBeforeRun;
$callback($this);
}
for ($attempts = 0; $attempts < $this->totalAttemptsForInput; $attempts++) {
$this->doInput();
if ($this->wasCancelled()) {
if ($this->cancelWithInputRetriesInput && $this->hasInput()) {
$this->logDebug("Cancelled input, retrying");
continue;
}
$this->logDebug("Cancelled node, quitting");
break;
}
// dont play on last attempt by default
if ($this->onNoInputMessage !== null
&& !$this->hasInput()
&& ($this->playOnNoInputInLastAttempt || $attempts != ($this->totalAttemptsForInput - 1))
) {
$this->addPrePromptMessage($this->onNoInputMessage);
continue;
}
if ($this->hasInput()) {
if ($this->validate()) {
$this->logDebug("Input validated");
if ($this->executeOnValidInput !== null) {
$callback = $this->executeOnValidInput;
$this->beforeOnValidInput();
$callback($this);
}
break;
} elseif ($this->executeAfterFailedValidation !== null) {
$callback = $this->executeAfterFailedValidation;
$callback($this);
}
}
}
$result = $this->playPrePromptMessages();
if ($this->minInput > 0 && $attempts == $this->totalAttemptsForInput) {
$this->logDebug("Max attempts reached");
$this->state = self::STATE_MAX_INPUTS_REACHED;
if ($this->onMaxValidInputAttempts !== null) {
$this->callClientMethods(array(
array('streamFile' => array($this->onMaxValidInputAttempts, self::DTMF_ANY))
));
}
}
if (!$this->isComplete() && $this->executeOnInputFailed !== null) {
$callback = $this->executeOnInputFailed;
$this->beforeOnInputFailed();
$callback($this);
}
if ($this->executeAfterRun !== null) {
$callback = $this->executeAfterRun;
$callback($this);
}
$this->logDebug($this);
return $this;
}
/**
* Used internally to log debug messages
*
* @param string $msg
*
* @return void
*/
protected function logDebug($msg)
{
$logger = $this->client->getAsteriskLogger();
$ani = $this->client->getChannelVariables()->getCallerIdName();
$dnis = $this->client->getChannelVariables()->getDNIS();
$logger->debug("Node: {$this->name}: $ani -> $dnis: $msg");
}
/**
* Returns the node name.
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Maps the current node state to a human readable string.
*
* @param integer $state One of the STATE_* constants.
*
* @return string
* @throws Exception\NodeException
*/
protected function stateToString($state)
{
switch ($state) {
case self::STATE_CANCEL:
return "cancel";
case self::STATE_COMPLETE:
return "complete";
case self::STATE_NOT_RUN: // a string like 'foo' matches here?
return "not run";
case self::STATE_TIMEOUT:
return "timeout";
case self::STATE_MAX_INPUTS_REACHED:
return "max valid input attempts reached";
default:
throw new NodeException("Bad state for node");
}
}
/**
* A classic!
*
* @return string
*/
public function __toString()
{
return
"[ Node: " . $this->name
. " input: (" . $this->input . ") "
. " state: (" . $this->stateToString($this->state) . ")"
. "]"
;
}
}