fusionpbx/resources/install/scripts/destination_caller_id.lua

75 lines
3.0 KiB
Lua
Raw Normal View History

2012-10-24 01:00:25 +02:00
-- intercom.lua
-- Part of FusionPBX
-- Copyright (C) 2010 Mark J Crane <markjcrane@fusionpbx.com>
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- 1. Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
--
-- 2. Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
--
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
-- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
-- AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
-- AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
-- OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
--include config.lua
require "resources.functions.config";
2012-10-24 01:00:25 +02:00
--connect to the database
local Database = require "resources.functions.database";
dbh = Database.new('system');
--include json library
local json
if (debug["sql"]) then
json = require "resources.functions.lunajson"
end
2012-10-24 01:00:25 +02:00
--define the trim function
require "resources.functions.trim"
2012-10-24 01:00:25 +02:00
--get the variables
domain_name = session:getVariable("domain_name");
outbound_number = session:getVariable("destination_number");
freeswitch.consoleLog("notice", "outbound_number: --" .. outbound_number .. "--\n");
outbound_area_code = string.sub(outbound_number,3,5);
freeswitch.consoleLog("notice", "Area Code: " .. outbound_area_code .. "\n");
--caller_id_name = session:getVariable("caller_id_name");
--caller_id_number = session:getVariable("caller_id_number");
--get the destination_number
sql = "SELECT destination_number FROM v_destinations where destination_number like :destination_number";
local params = {destination_number = '1'.. outbound_area_code .. '%'};
if (debug["sql"]) then
freeswitch.consoleLog("notice", "SQL: " .. sql .. "; params:" .. json.encode(params) .. "\n");
end
2012-10-24 01:00:25 +02:00
x = 0;
dbh:query(sql, params, function(row)
2012-10-24 01:00:25 +02:00
destination_number = row.destination_number;
--destination_caller_id_name = row.destination_caller_id_name;
--destination_caller_id_number = row.destination_caller_id_number;
x = x + 1;
end);
--session actions
if (session:ready()) then
if (destination_number) then
freeswitch.consoleLog("notice", "effective_caller_id_number="..destination_number.."\n");
session:execute("set", "effective_caller_id_number="..destination_number);
end
--session:hangup();
end