|
1
|
|
|
<?php |
|
2
|
|
|
/* |
|
3
|
|
|
* MikoPBX - free phone system for small business |
|
4
|
|
|
* Copyright (C) 2017-2021 Alexey Portnov and Nikolay Beketov |
|
5
|
|
|
* |
|
6
|
|
|
* This program is free software: you can redistribute it and/or modify |
|
7
|
|
|
* it under the terms of the GNU General Public License as published by |
|
8
|
|
|
* the Free Software Foundation; either version 3 of the License, or |
|
9
|
|
|
* (at your option) any later version. |
|
10
|
|
|
* |
|
11
|
|
|
* This program is distributed in the hope that it will be useful, |
|
12
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
14
|
|
|
* GNU General Public License for more details. |
|
15
|
|
|
* |
|
16
|
|
|
* You should have received a copy of the GNU General Public License along with this program. |
|
17
|
|
|
* If not, see <https://www.gnu.org/licenses/>. |
|
18
|
|
|
*/ |
|
19
|
|
|
|
|
20
|
|
|
namespace MikoPBX\Core\Asterisk\Configs; |
|
21
|
|
|
|
|
22
|
|
|
use MikoPBX\Common\Models\SoundFiles; |
|
23
|
|
|
use MikoPBX\Core\System\Util; |
|
24
|
|
|
|
|
25
|
|
|
class ExtensionsInterception extends CoreConfigClass |
|
26
|
|
|
{ |
|
27
|
|
|
/** |
|
28
|
|
|
* Prepares additional contexts sections in the extensions.conf file |
|
29
|
|
|
* |
|
30
|
|
|
* @return string |
|
31
|
|
|
*/ |
|
32
|
|
|
public function extensionGenContexts(): string |
|
33
|
|
|
{ |
|
34
|
|
|
return '[interception-bridge]' . PHP_EOL. |
|
35
|
|
|
'exten => failed,1,Hangup()' . PHP_EOL. |
|
36
|
|
|
'exten => _[0-9*#+a-zA-Z][0-9*#+a-zA-Z]!,1,ExecIf($[ "${ORIGINATE_SRC_CHANNEL}x" != "x" ]?Wait(0.2))' . PHP_EOL."\t". |
|
37
|
|
|
'same => n,ExecIf($[ "${ORIGINATE_SRC_CHANNEL}x" != "x" ]?ChannelRedirect(${ORIGINATE_SRC_CHANNEL},${CONTEXT},${ORIGINATE_DST_EXTEN},1))' . PHP_EOL."\t". |
|
38
|
|
|
'same => n,ExecIf($[ "${ORIGINATE_SRC_CHANNEL}x" != "x" ]?Hangup())' . PHP_EOL."\t". |
|
39
|
|
|
'same => n,Set(MASTER_CHANNEL(M_TIMEOUT_CHANNEL)=${INTECEPTION_CNANNEL})' . PHP_EOL."\t". |
|
40
|
|
|
'same => n,AGI(/usr/www/src/Core/Asterisk/agi-bin/clean_timeout.php)' . PHP_EOL."\t". |
|
41
|
|
|
'same => n,Gosub(dial_interception,${EXTEN},1)' . PHP_EOL."\t". |
|
42
|
|
|
'same => n,Gosub(dial_answer,${EXTEN},1)' . PHP_EOL."\t". |
|
43
|
|
|
'same => n,Bridge(${INTECEPTION_CNANNEL},tk)' . PHP_EOL."\t". |
|
44
|
|
|
'same => n,Hangup()' . PHP_EOL; |
|
45
|
|
|
} |
|
46
|
|
|
|
|
47
|
|
|
} |