120 lines
4.0 KiB
Lua
120 lines
4.0 KiB
Lua
--
|
|
-- FusionPBX
|
|
-- Version: MPL 1.1
|
|
--
|
|
-- The contents of this file are subject to the Mozilla Public License Version
|
|
-- 1.1 (the "License"); you may not use this file except in compliance with
|
|
-- the License. You may obtain a copy of the License at
|
|
-- http://www.mozilla.org/MPL/
|
|
--
|
|
-- Software distributed under the License is distributed on an "AS IS" basis,
|
|
-- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
-- for the specific language governing rights and limitations under the
|
|
-- License.
|
|
--
|
|
-- The Original Code is FusionPBX
|
|
--
|
|
-- The Initial Developer of the Original Code is
|
|
-- Mark J Crane <markjcrane@fusionpbx.com>
|
|
-- Copyright (C) 2010
|
|
-- the Initial Developer. All Rights Reserved.
|
|
--
|
|
-- Contributor(s):
|
|
-- Mark J Crane <markjcrane@fusionpbx.com>
|
|
|
|
max_tries = "3";
|
|
digit_timeout = "5000";
|
|
|
|
extension = argv[1];
|
|
|
|
--include config.lua
|
|
scripts_dir = string.sub(debug.getinfo(1).source,2,string.len(debug.getinfo(1).source)-(string.len(argv[0])+1));
|
|
dofile(scripts_dir.."/resources/functions/config.lua");
|
|
dofile(config());
|
|
|
|
--add the file_exists function
|
|
dofile(scripts_dir.."/resources/functions/file_exists.lua");
|
|
|
|
--connect to the database
|
|
if (file_exists(database_dir.."/core.db")) then
|
|
--dbh = freeswitch.Dbh("core:core"); -- when using sqlite
|
|
dbh = freeswitch.Dbh("sqlite://"..database_dir.."/core.db");
|
|
freeswitch.consoleLog("NOTICE", "[eavesdrop] using core.db\n");
|
|
else
|
|
dofile(scripts_dir.."/resources/functions/database_handle.lua");
|
|
dbh = database_handle('switch');
|
|
freeswitch.consoleLog("NOTICE", "[eavesdrop] using freeswitch db\n");
|
|
|
|
end
|
|
|
|
--exits the script if we didn't connect properly
|
|
assert(dbh:connected());
|
|
|
|
if ( session:ready() ) then
|
|
session:answer( );
|
|
pin_number = session:getVariable("pin_number");
|
|
sounds_dir = session:getVariable("sounds_dir");
|
|
domain_name = session:getVariable("domain_name");
|
|
|
|
--set the sounds path for the language, dialect and voice
|
|
default_language = session:getVariable("default_language");
|
|
default_dialect = session:getVariable("default_dialect");
|
|
default_voice = session:getVariable("default_voice");
|
|
if (not default_language) then default_language = 'en'; end
|
|
if (not default_dialect) then default_dialect = 'us'; end
|
|
if (not default_voice) then default_voice = 'callie'; end
|
|
|
|
--set defaults
|
|
if (digit_min_length) then
|
|
--do nothing
|
|
else
|
|
digit_min_length = "2";
|
|
end
|
|
|
|
if (digit_max_length) then
|
|
--do nothing
|
|
else
|
|
digit_max_length = "11";
|
|
end
|
|
|
|
--if the pin number is provided then require it
|
|
if (pin_number) then
|
|
min_digits = string.len(pin_number);
|
|
max_digits = string.len(pin_number)+1;
|
|
--digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", "phrase:voicemail_enter_pass:#", "", "\\d+");
|
|
digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", sounds_dir.."/"..default_language.."/"..default_dialect.."/"..default_voice.."/ivr/ivr-please_enter_pin_followed_by_pound.wav", "", "\\d+");
|
|
if (digits == pin_number) then
|
|
--pin is correct
|
|
freeswitch.consoleLog("NOTICE", "[eavesdrop] pin is correct\n");
|
|
else
|
|
session:streamFile(sounds_dir.."/"..default_language.."/"..default_dialect.."/"..default_voice.."/voicemail/vm-fail_auth.wav");
|
|
session:hangup("NORMAL_CLEARING");
|
|
return;
|
|
end
|
|
end
|
|
|
|
--check the database to get the uuid
|
|
--eavesdrop
|
|
sql = "select uuid from channels where presence_id = '"..extension.."@"..domain_name.."' ";
|
|
freeswitch.consoleLog("NOTICE", "[eavesdrop] sql "..sql.."\n");
|
|
dbh:query(sql, function(result)
|
|
for key, val in pairs(result) do
|
|
freeswitch.consoleLog("NOTICE", "[eavesdrop] result "..key.." "..val.."\n");
|
|
end
|
|
uuid = result.uuid;
|
|
end);
|
|
|
|
end
|
|
|
|
--eavesdrop
|
|
if (uuid) then
|
|
session:execute("eavesdrop", uuid); --call barge
|
|
end
|
|
|
|
--notes
|
|
--originate a call
|
|
--cmd = "originate user/1007@voip.example.com &eavesdrop("..uuid..")";
|
|
--cmd = "uuid_bridge "..caller_uuid.." "..uuid;
|
|
--api = freeswitch.API();
|
|
--result = api:executeString(cmd);
|