2012-06-04 16:58:40 +02:00
|
|
|
--
|
|
|
|
|
-- 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>
|
|
|
|
|
|
2013-05-27 20:55:59 +02:00
|
|
|
--set the variables
|
|
|
|
|
pin_number = "";
|
2015-04-21 18:56:58 +02:00
|
|
|
max_tries = 3;
|
|
|
|
|
digit_timeout = 3000;
|
2013-05-27 20:55:59 +02:00
|
|
|
sounds_dir = "";
|
|
|
|
|
recordings_dir = "";
|
|
|
|
|
file_name = "";
|
|
|
|
|
recording_number = "";
|
|
|
|
|
recording_slots = "";
|
|
|
|
|
recording_prefix = "";
|
|
|
|
|
|
|
|
|
|
--include config.lua
|
2015-08-11 04:06:33 +02:00
|
|
|
require "resources.functions.config";
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2015-04-16 21:13:05 +02:00
|
|
|
--connect to the database
|
2015-08-11 04:06:33 +02:00
|
|
|
require "resources.functions.database_handle";
|
2015-04-16 21:13:05 +02:00
|
|
|
dbh = database_handle('system');
|
|
|
|
|
|
2015-03-31 01:08:21 +02:00
|
|
|
--get the domain_uuid
|
|
|
|
|
domain_uuid = session:getVariable("domain_uuid");
|
|
|
|
|
|
|
|
|
|
--add functions
|
2015-08-11 04:06:33 +02:00
|
|
|
require "resources.functions.mkdir";
|
|
|
|
|
require "resources.functions.explode";
|
2015-03-31 01:08:21 +02:00
|
|
|
|
|
|
|
|
--initialize the recordings
|
|
|
|
|
api = freeswitch.API();
|
|
|
|
|
|
|
|
|
|
--settings
|
2015-08-11 04:06:33 +02:00
|
|
|
require "resources.functions.settings";
|
2015-03-31 01:08:21 +02:00
|
|
|
settings = settings(domain_uuid);
|
2015-04-01 07:44:07 +02:00
|
|
|
storage_type = "";
|
|
|
|
|
storage_path = "";
|
2015-04-06 16:14:32 +02:00
|
|
|
if (settings['recordings'] ~= nil) then
|
|
|
|
|
if (settings['recordings']['storage_type'] ~= nil) then
|
|
|
|
|
if (settings['recordings']['storage_type']['text'] ~= nil) then
|
|
|
|
|
storage_type = settings['recordings']['storage_type']['text'];
|
2015-04-04 11:09:09 +02:00
|
|
|
end
|
|
|
|
|
end
|
2015-04-06 16:14:32 +02:00
|
|
|
if (settings['recordings']['storage_path'] ~= nil) then
|
|
|
|
|
if (settings['recordings']['storage_path']['text'] ~= nil) then
|
|
|
|
|
storage_path = settings['recordings']['storage_path']['text'];
|
|
|
|
|
storage_path = storage_path:gsub("${domain_name}", domain_name);
|
|
|
|
|
storage_path = storage_path:gsub("${voicemail_id}", voicemail_id);
|
|
|
|
|
storage_path = storage_path:gsub("${voicemail_dir}", voicemail_dir);
|
2015-04-04 11:09:09 +02:00
|
|
|
end
|
2015-03-31 01:08:21 +02:00
|
|
|
end
|
|
|
|
|
end
|
2015-08-07 10:11:27 +02:00
|
|
|
if (not temp_dir) or (#temp_dir == 0) then
|
|
|
|
|
if (settings['server'] ~= nil) then
|
|
|
|
|
if (settings['server']['temp'] ~= nil) then
|
|
|
|
|
if (settings['server']['temp']['dir'] ~= nil) then
|
|
|
|
|
temp_dir = settings['server']['temp']['dir'];
|
|
|
|
|
end
|
2015-04-04 11:09:09 +02:00
|
|
|
end
|
2015-03-31 01:08:21 +02:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
--dtmf call back function detects the "#" and ends the call
|
|
|
|
|
function onInput(s, type, obj)
|
|
|
|
|
if (type == "dtmf" and obj['digit'] == '#') then
|
|
|
|
|
return "break";
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
--start the recording
|
|
|
|
|
function begin_record(session, sounds_dir, recordings_dir)
|
|
|
|
|
|
|
|
|
|
--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
|
|
|
|
|
recording_slots = session:getVariable("recording_slots");
|
|
|
|
|
recording_prefix = session:getVariable("recording_prefix");
|
|
|
|
|
recording_name = session:getVariable("recording_name");
|
2015-12-23 20:02:14 +01:00
|
|
|
record_ext = session:getVariable("record_ext");
|
2015-12-06 21:37:35 +01:00
|
|
|
domain_name = session:getVariable("domain_name");
|
2012-06-04 16:58:40 +02:00
|
|
|
|
|
|
|
|
--select the recording number
|
|
|
|
|
if (recording_slots) then
|
|
|
|
|
min_digits = 1;
|
|
|
|
|
max_digits = 20;
|
2015-04-29 23:05:19 +02:00
|
|
|
session:sleep(1000);
|
2014-07-31 00:35:46 +02:00
|
|
|
recording_number = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", sounds_dir.."/"..default_language.."/"..default_dialect.."/"..default_voice.."/ivr/ivr-id_number.wav", "", "\\d+");
|
2015-12-23 20:02:14 +01:00
|
|
|
recording_name = recording_prefix..recording_number.."."..record_ext;
|
2012-06-04 16:58:40 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
--set the default recording name if one was not provided
|
|
|
|
|
if (recording_name) then
|
|
|
|
|
--recording name is provided do nothing
|
|
|
|
|
else
|
|
|
|
|
--set a default recording_name
|
2015-12-23 20:02:14 +01:00
|
|
|
recording_name = "temp_"..session:get_uuid().."."..record_ext;
|
2012-06-04 16:58:40 +02:00
|
|
|
end
|
2012-07-10 18:23:08 +02:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
--prompt for the recording
|
2014-07-31 00:35:46 +02:00
|
|
|
session:streamFile(sounds_dir.."/"..default_language.."/"..default_dialect.."/"..default_voice.."/ivr/ivr-recording_started.wav");
|
2012-06-04 16:58:40 +02:00
|
|
|
session:execute("set", "playback_terminators=#");
|
|
|
|
|
|
|
|
|
|
--begin recording
|
2015-03-31 01:08:21 +02:00
|
|
|
if (storage_type == "base64") then
|
2015-04-01 07:44:07 +02:00
|
|
|
--include the base64 function
|
2015-08-11 04:06:33 +02:00
|
|
|
require "resources.functions.base64";
|
2015-04-01 07:44:07 +02:00
|
|
|
|
2015-03-31 01:08:21 +02:00
|
|
|
--make the directory
|
2015-04-01 07:44:07 +02:00
|
|
|
mkdir(recordings_dir);
|
2015-03-31 01:08:21 +02:00
|
|
|
|
|
|
|
|
--record the file to the file system
|
|
|
|
|
-- syntax is session:recordFile(file_name, max_len_secs, silence_threshold, silence_secs);
|
|
|
|
|
session:execute("record", recordings_dir .."/".. recording_name);
|
|
|
|
|
|
|
|
|
|
--show the storage type
|
|
|
|
|
freeswitch.consoleLog("notice", "[recordings] ".. storage_type .. "\n");
|
|
|
|
|
|
|
|
|
|
--base64 encode the file
|
|
|
|
|
local f = io.open(recordings_dir .."/".. recording_name, "rb");
|
|
|
|
|
local file_content = f:read("*all");
|
|
|
|
|
f:close();
|
2015-03-31 02:50:13 +02:00
|
|
|
recording_base64 = base64.encode(file_content);
|
2015-03-31 01:08:21 +02:00
|
|
|
|
|
|
|
|
elseif (storage_type == "http_cache") then
|
2015-04-15 23:16:11 +02:00
|
|
|
freeswitch.consoleLog("notice", "[recordings] ".. storage_type .. " ".. storage_path .."\n");
|
2015-04-01 10:14:03 +02:00
|
|
|
session:execute("record", storage_path .."/"..recording_name);
|
2015-03-31 01:08:21 +02:00
|
|
|
else
|
|
|
|
|
-- syntax is session:recordFile(file_name, max_len_secs, silence_threshold, silence_secs);
|
|
|
|
|
session:execute("record", "'"..recordings_dir.."/"..recording_name.."' 10800 500 500");
|
|
|
|
|
end
|
2012-06-04 16:58:40 +02:00
|
|
|
|
2015-04-16 16:47:21 +02:00
|
|
|
--delete the previous recording
|
|
|
|
|
sql = "delete from v_recordings ";
|
|
|
|
|
sql = sql .. "where domain_uuid = '".. domain_uuid .. "' ";
|
2015-04-25 14:26:31 +02:00
|
|
|
sql = sql .. "and recording_filename = '".. recording_name .."'";
|
2015-04-16 16:47:21 +02:00
|
|
|
dbh:query(sql);
|
|
|
|
|
|
|
|
|
|
--get a new uuid
|
|
|
|
|
recording_uuid = api:execute("create_uuid");
|
|
|
|
|
|
|
|
|
|
--save the message to the voicemail messages
|
|
|
|
|
local array = {}
|
|
|
|
|
table.insert(array, "INSERT INTO v_recordings ");
|
|
|
|
|
table.insert(array, "(");
|
|
|
|
|
table.insert(array, "recording_uuid, ");
|
|
|
|
|
table.insert(array, "domain_uuid, ");
|
|
|
|
|
table.insert(array, "recording_filename, ");
|
|
|
|
|
if (storage_type == "base64") then
|
|
|
|
|
table.insert(array, "recording_base64, ");
|
|
|
|
|
end
|
|
|
|
|
table.insert(array, "recording_name ");
|
|
|
|
|
table.insert(array, ") ");
|
|
|
|
|
table.insert(array, "VALUES ");
|
|
|
|
|
table.insert(array, "( ");
|
|
|
|
|
table.insert(array, "'"..recording_uuid.."', ");
|
|
|
|
|
table.insert(array, "'"..domain_uuid.."', ");
|
|
|
|
|
table.insert(array, "'"..recording_name.."', ");
|
|
|
|
|
if (storage_type == "base64") then
|
|
|
|
|
table.insert(array, "'"..recording_base64.."', ");
|
|
|
|
|
end
|
|
|
|
|
table.insert(array, "'"..recording_name.."' ");
|
|
|
|
|
table.insert(array, ") ");
|
|
|
|
|
sql = table.concat(array, "\n");
|
|
|
|
|
if (debug["sql"]) then
|
|
|
|
|
freeswitch.consoleLog("notice", "[recording] SQL: " .. sql .. "\n");
|
|
|
|
|
end
|
|
|
|
|
if (storage_type == "base64") then
|
|
|
|
|
array = explode("://", database["system"]);
|
|
|
|
|
local luasql = require "luasql.postgres";
|
|
|
|
|
local env = assert (luasql.postgres());
|
|
|
|
|
local dbh = env:connect(array[2]);
|
|
|
|
|
res, serr = dbh:execute(sql);
|
|
|
|
|
dbh:close();
|
|
|
|
|
env:close();
|
|
|
|
|
else
|
|
|
|
|
dbh:query(sql);
|
|
|
|
|
end
|
|
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
--preview the recording
|
|
|
|
|
session:streamFile(recordings_dir.."/"..recording_name);
|
|
|
|
|
|
|
|
|
|
--approve the recording, to save the recording press 1 to re-record press 2
|
|
|
|
|
min_digits="0" max_digits="1" max_tries = "1"; digit_timeout = "100";
|
|
|
|
|
digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", "voicemail/vm-save_recording.wav", "", "\\d+");
|
|
|
|
|
|
|
|
|
|
if (string.len(digits) == 0) then
|
|
|
|
|
min_digits="0" max_digits="1" max_tries = "1"; digit_timeout = "100";
|
|
|
|
|
digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", "voicemail/vm-press.wav", "", "\\d+");
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if (string.len(digits) == 0) then
|
|
|
|
|
min_digits="0" max_digits="1" max_tries = "1"; digit_timeout = "100";
|
|
|
|
|
digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", "digits/1.wav", "", "\\d+");
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if (string.len(digits) == 0) then
|
|
|
|
|
min_digits="0" max_digits="1" max_tries = "1"; digit_timeout = "100";
|
|
|
|
|
digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", "voicemail/vm-rerecord.wav", "", "\\d+");
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if (string.len(digits) == 0) then
|
|
|
|
|
min_digits="0" max_digits="1" max_tries = "1"; digit_timeout = "100";
|
|
|
|
|
digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", "voicemail/vm-press.wav", "", "\\d+");
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if (string.len(digits) == 0) then
|
|
|
|
|
min_digits="1" max_digits="1" max_tries = "1"; digit_timeout = "5000";
|
|
|
|
|
digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", "digits/2.wav", "", "\\d+");
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if (digits == "1") then
|
|
|
|
|
--recording saved, hangup
|
|
|
|
|
session:streamFile("voicemail/vm-saved.wav");
|
|
|
|
|
return;
|
|
|
|
|
elseif (digits == "2") then
|
|
|
|
|
--delete the old recording
|
|
|
|
|
os.remove (recordings_dir.."/"..recording_name);
|
|
|
|
|
--session:execute("system", "rm "..);
|
|
|
|
|
--make a new recording
|
|
|
|
|
begin_record(session, sounds_dir, recordings_dir);
|
|
|
|
|
else
|
|
|
|
|
--recording saved, hangup
|
|
|
|
|
session:streamFile("voicemail/vm-saved.wav");
|
|
|
|
|
return;
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if ( session:ready() ) then
|
|
|
|
|
session:answer();
|
|
|
|
|
|
|
|
|
|
--get the dialplan variables and set them as local variables
|
|
|
|
|
pin_number = session:getVariable("pin_number");
|
|
|
|
|
sounds_dir = session:getVariable("sounds_dir");
|
2013-05-27 20:55:59 +02:00
|
|
|
domain_name = session:getVariable("domain_name");
|
2015-03-31 01:08:21 +02:00
|
|
|
domain_uuid = session:getVariable("domain_uuid");
|
|
|
|
|
|
2015-12-06 21:37:35 +01:00
|
|
|
--add the domain name to the recordings directory
|
|
|
|
|
recordings_dir = recordings_dir .. "/"..domain_name;
|
2013-05-27 20:55:59 +02:00
|
|
|
|
2012-06-04 16:58:40 +02:00
|
|
|
--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
|
|
|
|
|
|
|
|
|
|
--if the pin number is provided then require it
|
|
|
|
|
if (pin_number) then
|
2015-04-21 18:56:58 +02:00
|
|
|
freeswitch.consoleLog("notice", "[recordings] pin_number: ".. pin_number .. "\n");
|
2012-06-04 16:58:40 +02:00
|
|
|
min_digits = string.len(pin_number);
|
|
|
|
|
max_digits = string.len(pin_number)+1;
|
2014-03-22 00:47:40 +01:00
|
|
|
digits = session:playAndGetDigits(min_digits, max_digits, max_tries, digit_timeout, "#", "phrase:voicemail_enter_pass:#", "", "\\d+");
|
2012-06-04 16:58:40 +02:00
|
|
|
if (digits == pin_number) then
|
|
|
|
|
--pin is correct
|
2015-04-21 18:56:58 +02:00
|
|
|
freeswitch.consoleLog("notice", "[recordings] pin_number: correct \n");
|
2012-06-04 16:58:40 +02:00
|
|
|
else
|
2015-04-21 18:56:58 +02:00
|
|
|
freeswitch.consoleLog("notice", "[recordings] pin_number: incorrect \n");
|
2014-03-22 00:47:40 +01:00
|
|
|
session:streamFile("phrase:voicemail_fail_auth:#");
|
2012-06-04 16:58:40 +02:00
|
|
|
session:hangup("NORMAL_CLEARING");
|
|
|
|
|
return;
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
--start recording
|
|
|
|
|
begin_record(session, sounds_dir, recordings_dir);
|
|
|
|
|
|
2015-03-31 01:08:21 +02:00
|
|
|
--hangup the call
|
|
|
|
|
session:hangup();
|
2015-04-01 07:44:07 +02:00
|
|
|
|
2015-04-21 18:56:58 +02:00
|
|
|
end
|