From Soft Goat, 8 Years ago, written in Plain Text.
- view diff
Embed Show code
  1.  
  2.  
  3. --set default variables
  4.         max_digits = 15;
  5.         digit_timeout = 5000;
  6.         debug["sql"] = true;
  7.  
  8. --connect to the database
  9.         require "resources.functions.database_handle";
  10.         dbh = database_handle('system');
  11.  
  12. --set the api
  13.         api = freeswitch.API();
  14.  
  15. --get the argv values
  16.         action = argv[2];
  17.  
  18. --get the session variables
  19.         if (session:ready()) then
  20.                 session:answer();
  21.         end
  22.  
  23. --get the session variables
  24.         if (session:ready()) then
  25.                 --general variables
  26.                         dnfrom = session:getVariable("dnfrom");
  27.                         uuid = session:get_uuid();
  28.                         rnoroute = session:getVariable("rnoroute");
  29.  
  30.         end
  31.  
  32.  
  33. --get the routing code
  34.         sql = "SELECT rnoroute FROM ported_number ";
  35.         sql = sql .. "WHERE dnfrom = '" .. dnfrom .."' ";
  36.                 --set the variables
  37.                         dnfrom = row.dnfrom;
  38.                         rnoroute = row.rnoroute;
  39.  
  40. --show the results
  41.         if (dnfrom) then
  42.                 freeswitch.consoleLog("notice", "[user status][login] agent id: " .. dnfrom .. " dnfrom: " .. dnfrom .. "\n");
  43.         end
  44.  
  45.  
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
 
 
--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