MySQL,Asterisk Dialplans和呼叫转发

时间:2008-09-16 05:53:03

标签: mysql asterisk telephony

如何根据将来电号码与要转发的号码相匹配,让Asterisk转接来电?这两个数字都存储在MySQL数据库中。

3 个答案:

答案 0 :(得分:3)

对于长代码示例感到抱歉,但超过一半的代码是调试代码来帮助您设置它。

我假设你的服务器已经有一个带有PDO库的PHP的现代版本(/usr/bin/php),并且你有一个名为fwd_table的数据库表,列caller_iddestination

在/ var / lib / asterisk / agi-bin中获取PHP AGI库的副本。然后创建一个名为forward_by_callerid.agi的文件,其中包含:

#!/usr/bin/php
<?php
ini_set('display_errors','false'); //Supress errors getting sent to the Asterisk process

require('phpagi.php');
$agi = new AGI();

try {
    $pdo = new PDO('mysql:host='.$db_hostname.';dbname='.$db_database.';charset=UTF-8', $db_user, $db_pass);
} catch (PDOException $e) {
    $agi->conlog("FAIL: Error connecting to the database! " . $e->getMessage());
    die();
}

$find_fwd_by_callerid = $pdo->prepare('SELECT destination FROM fwd_table WHERE caller_id=? ');

$caller_id = $agi->request['agi_callerid'];

if($callerid=="unknown" or $callerid=="private" or $callerid==""){
    $agi->conlog("Call came in without caller id, I give up");
    exit;
}else{
    $agi->conlog("Call came in with caller id number $caller_id.");
}

if($find_fwd_by_callerid->execute(array($caller_id)) === false){
    $agi->conlog("Database problem searching for forward destination (find_fwd_by_callerid), croaking");
    exit;
} 
$found_fwds = $find_fwd_by_callerid->fetchAll();
if(count($found_fwds) > 0){
    $destination = $found_contacts[0]['destination'];
    $agi->set_variable('FWD_TO', $destination);

    $agi->conlog("Caller ID matched, setting FWD_TO variable to ''");
}

?>

然后从拨号计划中你可以这样称呼它:

AGI(forward_by_callerid.agi)

如果您的数据库匹配,它会将变量FWD_TO设置为goodness。如果您需要更多帮助将其集成到拨号计划中,请编辑您的问题。

答案 1 :(得分:1)

This article应该做到这一点。这是大约3行代码和一些简单的查询来添加和删除转发规则。

答案 2 :(得分:1)

我正在寻找的解决方案最终看起来像这样:

[default]
exten => _X.,1,Set(ARRAY(${EXTEN}_phone)=${DTC_ICF(phone_number,${EXTEN})})
exten => _X.,n(callphone),Dial(SIP/metaswitch/${${EXTEN}_phone},26)
exten => _X.,n(end),Hangup()