Update incoming.php
gitea/vn-asterisk/pipeline/pr-master There was a failure building this commit Details

This commit is contained in:
Juan Ferrer 2025-03-07 13:01:39 +00:00
parent bce6df9e0e
commit 9e09ce6afc
1 changed files with 48 additions and 53 deletions

View File

@ -19,53 +19,55 @@ $countryCode = Agi::get('agi_arg_1');
// Formats the caller phone number
if (preg_match('/^\\+/', $callerId)) {
$callerId = '00'. substr($callerId, 1);
$callerId = '00'. substr($callerId, 1);
}
elseif (!preg_match('/^00/', $callerId) && $countryCode) {
$prefix = $db->getValue(
'SELECT prefix FROM prefix WHERE country = #',
[$countryCode]
);
if ($prefix)
$callerId = $prefix . $callerId;
$prefix = $db->getValue(
'SELECT prefix FROM prefix WHERE country = #',
[$countryCode]
);
if ($prefix)
$callerId = $prefix . $callerId;
}
$countryPrefix = $db->getValue('SELECT defaultPrefix FROM config');
$prefixLen = strlen($countryPrefix);
if (substr($callerId, 0, $prefixLen) === $countryPrefix)
$callerId = substr($callerId, $prefixLen);
$callerId = substr($callerId, $prefixLen);
// Checks if phone number is on the blacklist
if ($db->getValue('SELECT COUNT(*) > 0 FROM blacklist WHERE phone = #', [$callerId])) {
Agi::exec('HANGUP');
exit;
Agi::exec('HANGUP');
exit;
}
// Checks schedules
if ($countryCode) {
$isInSchedule = $db->getValue(
'SELECT COUNT(*) > 0 FROM pbx.schedule
WHERE weekDays & (1 << WEEKDAY(CURDATE()))
AND country = #
AND TIME(NOW()) BETWEEN startTime AND endTime',
[$countryCode]
);
$isInSchedule = $db->getValue(
'SELECT COUNT(*) > 0 FROM pbx.schedule
WHERE weekDays & (1 << WEEKDAY(CURDATE()))
AND country = #
AND TIME(NOW()) BETWEEN startTime AND endTime',
[$countryCode]
);
if ($isInSchedule) {
$isOutOfHours = $db->getValue(
'SELECT COUNT(*) > 0 FROM pbx.holiday
WHERE country = #
AND `day` = CURDATE()',
[$countryCode]
);
} else
$isOutOfHours = true;
if ($isInSchedule) {
$isOutOfHours = $db->getValue(
'SELECT COUNT(*) > 0 FROM pbx.holiday
WHERE country = #
AND `day` = CURDATE()',
[$countryCode]
);
} else
$isOutOfHours = true;
if ($isOutOfHours) {
Agi::exec('SET VARIABLE MACRO out-of-ours');
exit;
}
if ($isOutOfHours) {
Agi::exec('SET VARIABLE MACRO out-of-ours');
exit;
}
}
// Gets the client from the phone number
@ -73,27 +75,20 @@ if ($countryCode) {
$clientId = $db->getValue('SELECT clientFromPhone(#)', [$callerId]);
if ($clientId) {
$client = $db->getObject(
'SELECT d.pbxQueue, c.id, d.notificationEmail
FROM vn.client c
JOIN vn.worker w ON w.id = c.salesPersonFk
JOIN vn.business b ON b.id = w.businessFk
JOIN vn.department d ON d.id = b.departmentFk
WHERE c.id= #',[$clientId]
);
$client = $db->getObject(
'SELECT d.pbxQueue, c.id, d.notificationEmail
FROM vn.client c
JOIN vn.worker w ON w.id = c.salesPersonFk
JOIN vn.business b ON b.id = w.businessFk
JOIN vn.department d ON d.id = b.departmentFk
WHERE c.id= #',[$clientId]
);
if ($client) {
Agi::exec('SET VARIABLE MACRO queue');
Agi::exec("SET VARIABLE ARG1 \"{$client->pbxQueue}\"");
Agi::exec("SET VARIABLE ARG2 \"Client {$client->id}\"");
Agi::exec("SET VARIABLE ARG3 \"{$client->id}\"");
Agi::exec("SET VARIABLE ARG4 \"{$client->notificationEmail}\"");
}
}
// Checks if phone number is on the blacklist
if ($db->getValue('SELECT COUNT(*) > 0 FROM blacklist WHERE phone = #', [$callerId])) {
Agi::exec('HANGUP');
exit;
if ($client) {
Agi::exec('SET VARIABLE MACRO queue');
Agi::exec("SET VARIABLE ARG1 \"{$client->pbxQueue}\"");
Agi::exec("SET VARIABLE ARG2 \"Client {$client->id}\"");
Agi::exec("SET VARIABLE ARG3 \"{$client->id}\"");
Agi::exec("SET VARIABLE ARG4 \"{$client->notificationEmail}\"");
}
}