Fix the emergency lua script
This commit is contained in:
parent
e753ce9175
commit
490c26ab52
|
|
@ -71,17 +71,17 @@ else
|
|||
headers = {}
|
||||
end
|
||||
|
||||
function escapeCSV(s)
|
||||
function escape_csv(s)
|
||||
if string.find(s, '[,"]') then
|
||||
s = '"' .. string.gsub(s, '"', '""') .. '"'
|
||||
end
|
||||
return s
|
||||
end
|
||||
|
||||
function toCSV(tt)
|
||||
function to_csv(tt)
|
||||
local s = ""
|
||||
for _,p in ipairs(tt) do
|
||||
s = s .. "," .. escapeCSV(p)
|
||||
s = s .. "," .. escape_csv(p)
|
||||
end
|
||||
return string.sub(s, 2)
|
||||
end
|
||||
|
|
@ -110,11 +110,9 @@ local sql = "SELECT * FROM v_default_settings ";
|
|||
sql = sql .. "WHERE default_setting_category = 'email' ";
|
||||
sql = sql .. "AND (default_setting_subcategory = 'smtp_from' ";
|
||||
sql = sql .. "OR default_setting_subcategory = 'smtp_from_name') ";
|
||||
|
||||
if (debug["sql"]) then
|
||||
freeswitch.consoleLog("notice", "[emergency] SQL: " .. sql .. "\n");
|
||||
end
|
||||
|
||||
dbh:query(sql, function(row)
|
||||
if (row.default_setting_subcategory == "smtp_from") then
|
||||
from = row.default_setting_value;
|
||||
|
|
@ -124,17 +122,17 @@ local sql = "SELECT * FROM v_default_settings ";
|
|||
end
|
||||
end);
|
||||
|
||||
|
||||
|
||||
-- get vars
|
||||
--get variables
|
||||
if (session and session:ready()) then
|
||||
domain_uuid = session:getVariable("domain_uuid");
|
||||
call_date = session:getVariable("call_date");
|
||||
caller_id_name = session:getVariable("caller_id_name");
|
||||
caller_id_number = session:getVariable("caller_id_number");
|
||||
sip_from_user = session:getVariable("sip_from_user");
|
||||
emergency_caller_id_name = session:getVariable("emergency_caller_id_name");
|
||||
emergency_caller_id_number = session:getVariable("emergency_caller_id_number");
|
||||
call_duration = session:getVariable("call_duration");
|
||||
destination_number = session:getVariable("destination_number");
|
||||
end
|
||||
|
||||
--domain level check
|
||||
result = {}
|
||||
|
|
@ -189,11 +187,7 @@ local sql = "SELECT count(domain_setting_value) ";
|
|||
|
||||
end);
|
||||
|
||||
dbh:release()
|
||||
|
||||
if (#to > 0) then
|
||||
--set event
|
||||
destination_number = session:getVariable("destination_number");
|
||||
if (tonumber(destination_number) == 933) then
|
||||
event = '933 Emergency Address Validation Service';
|
||||
else if (tonumber(destination_number) == 911) then
|
||||
|
|
@ -201,6 +195,19 @@ if (#to > 0) then
|
|||
end
|
||||
end
|
||||
|
||||
--connect to the database
|
||||
local dbh = Database.new('system');
|
||||
|
||||
--set the call date
|
||||
sql = "SELECT now() as call_date ";
|
||||
if (debug["sql"]) then
|
||||
freeswitch.consoleLog("NOTICE", "[event] "..sql.."\n");
|
||||
end
|
||||
local t = dbh:first_row(sql);
|
||||
call_date = t.call_date;
|
||||
|
||||
--send the email
|
||||
if (#to > 0) then
|
||||
--prepare the body
|
||||
if (body ~= nil) then
|
||||
body = body:gsub("${caller_id_name}", caller_id_name);
|
||||
|
|
@ -225,50 +232,26 @@ if (#to > 0) then
|
|||
end
|
||||
end
|
||||
|
||||
-- Insert into Emergency Logs
|
||||
emergency_logs_uuid = api:executeString("create_uuid");
|
||||
domain_uuid = session:getVariable("domain_uuid");
|
||||
|
||||
-- Set time and date
|
||||
local delimiter = " ";
|
||||
local y = 0;
|
||||
local tab = {}
|
||||
|
||||
while true do
|
||||
local endindex = call_date:find(delimiter,y);
|
||||
if not endindex then
|
||||
break
|
||||
end
|
||||
table.insert(tab,call_date:sub(y,endindex-1))
|
||||
y = endindex + 1;
|
||||
end
|
||||
|
||||
table.insert(tab,call_date:sub(y));
|
||||
local time = tab[2] .. " " .. tab[3];
|
||||
|
||||
freeswitch.consoleLog("info", "[emergency] Getting Date " .. tab[1] .. " Time " .. tab[2] .. " Format " .. tab[3] .. "\n");
|
||||
|
||||
--connect to the database
|
||||
local dbh = Database.new('system');
|
||||
|
||||
--insert into emergency logs
|
||||
local sql = "INSERT INTO v_emergency_logs ( ";
|
||||
sql = sql .. " log_uuid, ";
|
||||
sql = sql .. " emergency_log_uuid, ";
|
||||
sql = sql .. " domain_uuid, ";
|
||||
sql = sql .. " date, ";
|
||||
sql = sql .. " time, ";
|
||||
sql = sql .. " insert_date, ";
|
||||
sql = sql .. " extension, ";
|
||||
sql = sql .. " event ";
|
||||
sql = sql .. ") ";
|
||||
sql = sql .. "VALUES ( ";
|
||||
sql = sql .. " :emergency_logs_uuid, ";
|
||||
sql = sql .. " :emergency_log_uuid, ";
|
||||
sql = sql .. " :domain_uuid, ";
|
||||
sql = sql .. " :date, ";
|
||||
sql = sql .. " :time, ";
|
||||
sql = sql .. " now(), ";
|
||||
sql = sql .. " :extension, ";
|
||||
sql = sql .. " :event ";
|
||||
sql = sql .. ") ";
|
||||
|
||||
local params = {emergency_logs_uuid = emergency_logs_uuid,domain_uuid = domain_uuid, date = tab[1], time = time, extension = caller_id_number, event = event}
|
||||
local params = {emergency_log_uuid = call_uuid, domain_uuid = domain_uuid, extension = caller_id_number, event = event}
|
||||
|
||||
if (debug["sql"]) then
|
||||
freeswitch.consoleLog("info", "[emergency] SQL: " .. sql .. "\n");
|
||||
|
|
|
|||
Loading…
Reference in New Issue