--set default variables
max_digits = 15;
digit_timeout = 5000;
debug["sql"] = true;
--connect to the database
require "resources.functions.database_handle";
dbh = database_handle('system');
--set the api
api = freeswitch.API();
--get the argv values
action = argv[2];
--get the session variables
if (session:ready()) then
session:answer();
end
--get the session variables
if (session:ready()) then
--general variables
dnfrom = session:getVariable("dnfrom");
uuid = session:get_uuid();
rnoroute = session:getVariable("rnoroute");
end
--get the routing code
sql = "SELECT rnoroute FROM ported_number ";
sql = sql .. "WHERE dnfrom = '" .. dnfrom .."' ";
--set the variables
dnfrom = row.dnfrom;
rnoroute = row.rnoroute;
--show the results
if (dnfrom) then
freeswitch.consoleLog("notice", "[user status][login] agent id: " .. dnfrom .. " dnfrom: " .. dnfrom .. "\n");
end
{"html5":"htmlmixed","css":"css","javascript":"javascript","php":"php","python":"python","ruby":"ruby","lua":"text\/x-lua","bash":"text\/x-sh","go":"go","c":"text\/x-csrc","cpp":"text\/x-c++src","diff":"diff","latex":"stex","sql":"sql","xml":"xml","apl":"apl","asterisk":"asterisk","c_loadrunner":"text\/x-csrc","c_mac":"text\/x-csrc","coffeescript":"text\/x-coffeescript","csharp":"text\/x-csharp","d":"d","ecmascript":"javascript","erlang":"erlang","groovy":"text\/x-groovy","haskell":"text\/x-haskell","haxe":"text\/x-haxe","html4strict":"htmlmixed","java":"text\/x-java","java5":"text\/x-java","jquery":"javascript","mirc":"mirc","mysql":"sql","ocaml":"text\/x-ocaml","pascal":"text\/x-pascal","perl":"perl","perl6":"perl","plsql":"sql","properties":"text\/x-properties","q":"text\/x-q","scala":"scala","scheme":"text\/x-scheme","tcl":"text\/x-tcl","vb":"text\/x-vb","verilog":"text\/x-verilog","yaml":"text\/x-yaml","z80":"text\/x-z80"}