mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-03 07:32:32 +01:00
Providing a Not Found Message when a Third Party entity is not found to match with details provided, and providing an Error Message when the SQL Lookup fails. This will help Asterisk Users determine whether the CallerID would be usable from Dolibarr or to reject and continue with existing CID from Asterisk
80 lines
2.2 KiB
PHP
80 lines
2.2 KiB
PHP
<?php
|
|
/* Copyright (C) 2010 Servitux Servicios Informaticos <info@servitux.es>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/asterisk/cidlookup.php
|
|
* \brief Script to search companies names based on incoming calls
|
|
* \remarks To use this script, your Asterisk must be compiled with CURL,
|
|
* and your dialplan must be something like this:
|
|
*
|
|
* exten => s,1,Set(CALLERID(name)=${CURL(http://IP-DOLIBARR:80/asterisk/cidlookup.php?phone=${CALLERID(num)})})
|
|
*
|
|
* Change IP-DOLIBARR to the IP address of your dolibarr
|
|
* server
|
|
*
|
|
*/
|
|
|
|
|
|
include '../master.inc.php';
|
|
|
|
$phone = GETPOST('phone');
|
|
$notfound = "Not found";
|
|
$error = "Error"
|
|
|
|
// Security check
|
|
if (empty($conf->clicktodial->enabled)) {
|
|
print "Error: Module Click to dial not active\n";
|
|
exit;
|
|
}
|
|
|
|
// Check parameters
|
|
if (empty($phone))
|
|
{
|
|
print "Error: Url must be called with parameter phone=phone to search\n";
|
|
exit;
|
|
}
|
|
|
|
$sql = "SELECT s.nom as name FROM ".MAIN_DB_PREFIX."societe as s";
|
|
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."socpeople as sp ON sp.fk_soc = s.rowid";
|
|
$sql.= " WHERE s.entity IN (".getEntity('societe', 1).")";
|
|
$sql.= " AND (s.phone='".$db->escape($phone)."'";
|
|
$sql.= " OR sp.phone='".$db->escape($phone)."'";
|
|
$sql.= " OR sp.phone_perso='".$db->escape($phone)."'";
|
|
$sql.= " OR sp.phone_mobile='".$db->escape($phone)."')";
|
|
$sql.= $db->plimit(1);
|
|
|
|
dol_syslog('cidlookup search information with phone '.$phone, LOG_DEBUG);
|
|
$resql = $db->query($sql);
|
|
if ($resql)
|
|
{
|
|
$obj = $db->fetch_object($resql);
|
|
if ($obj)
|
|
{
|
|
$found = $obj->name;
|
|
} else {
|
|
$found = $notfound;
|
|
}
|
|
$db->free($resql);
|
|
}
|
|
else
|
|
{
|
|
dol_print_error($db,'Error');
|
|
$found = $error;
|
|
}
|
|
|
|
echo $found;
|