107 lines
4.5 KiB
Lua
107 lines
4.5 KiB
Lua
-- Part of FusionPBX
|
|
-- Copyright (C) 2013 Mark J Crane <markjcrane@fusionpbx.com>
|
|
-- All rights reserved.
|
|
--
|
|
-- Redistribution and use in source and binary forms, with or without
|
|
-- modification, are permitted provided that the following conditions are met:
|
|
--
|
|
-- 1. Redistributions of source code must retain the above copyright notice,
|
|
-- this list of conditions and the following disclaimer.
|
|
--
|
|
-- 2. Redistributions in binary form must reproduce the above copyright
|
|
-- notice, this list of conditions and the following disclaimer in the
|
|
-- documentation and/or other materials provided with the distribution.
|
|
--
|
|
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
-- INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
-- AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
-- AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
|
-- OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
-- POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
--define a function to send sms
|
|
function send_sms(id, uuid)
|
|
debug["info"] = true;
|
|
api = freeswitch.API();
|
|
|
|
--get voicemail message details
|
|
sql = [[SELECT * FROM v_voicemails
|
|
WHERE domain_uuid = ']] .. domain_uuid ..[['
|
|
AND voicemail_id = ']] .. id ..[[']]
|
|
if (debug["sql"]) then
|
|
freeswitch.consoleLog("notice", "[voicemail] SQL: " .. sql .. "\n");
|
|
end
|
|
status = dbh:query(sql, function(row)
|
|
db_voicemail_uuid = string.lower(row["voicemail_uuid"]);
|
|
voicemail_sms_to = row["voicemail_sms_to"];
|
|
voicemail_file = row["voicemail_file"];
|
|
end);
|
|
|
|
--get the sms_body template
|
|
if (settings['voicemail']['voicemail_sms_body'] ~= nil) then
|
|
if (settings['voicemail']['voicemail_sms_body']['text'] ~= nil) then
|
|
sms_body = settings['voicemail']['voicemail_sms_body']['text'];
|
|
end
|
|
else
|
|
sms_body = 'You have a new voicemail from: ${caller_id_name} - ${caller_id_number} length ${message_length_formatted}';
|
|
end
|
|
|
|
|
|
--require the sms address to send to
|
|
if (string.len(voicemail_sms_to) > 2) then
|
|
--include languages file
|
|
local Text = require "resources.functions.text"
|
|
local text = Text.new("app.voicemail.app_languages")
|
|
|
|
--get voicemail message details
|
|
sql = [[SELECT * FROM v_voicemail_messages
|
|
WHERE domain_uuid = ']] .. domain_uuid ..[['
|
|
AND voicemail_message_uuid = ']] .. uuid ..[[']]
|
|
if (debug["sql"]) then
|
|
freeswitch.consoleLog("notice", "[voicemail] SQL: " .. sql .. "\n");
|
|
end
|
|
status = dbh:query(sql, function(row)
|
|
--get the values from the database
|
|
--uuid = row["voicemail_message_uuid"];
|
|
created_epoch = row["created_epoch"];
|
|
caller_id_name = row["caller_id_name"];
|
|
caller_id_number = row["caller_id_number"];
|
|
message_length = row["message_length"];
|
|
end);
|
|
|
|
--format the message length and date
|
|
message_length_formatted = format_seconds(message_length);
|
|
if (debug["info"]) then
|
|
freeswitch.consoleLog("notice", "[voicemail-sms] message length: " .. message_length .. "\n");
|
|
freeswitch.consoleLog("notice", "[voicemail-sms] transcription: " .. transcription .. "\n");
|
|
freeswitch.consoleLog("notice", "[voicemail-sms] domain_name: " .. domain_name .. "\n");
|
|
end
|
|
local message_date = os.date("%A, %d %b %Y %I:%M %p", created_epoch)
|
|
|
|
sms_body = sms_body:gsub("${caller_id_name}", caller_id_name);
|
|
sms_body = sms_body:gsub("${caller_id_number}", caller_id_number);
|
|
sms_body = sms_body:gsub("${message_date}", message_date);
|
|
sms_body = sms_body:gsub("${message_duration}", message_length_formatted);
|
|
sms_body = sms_body:gsub("${account}", id);
|
|
sms_body = sms_body:gsub("${domain_name}", domain_name);
|
|
sms_body = sms_body:gsub("${sip_to_user}", id);
|
|
sms_body = sms_body:gsub("${dialed_user}", id);
|
|
if (transcription ~= nil) then
|
|
sms_body = sms_body:gsub("${message_text}", transcription);
|
|
end
|
|
|
|
if (debug["info"]) then
|
|
freeswitch.consoleLog("notice", "[voicemail-sms] sms_body: " .. sms_body .. "\n");
|
|
end
|
|
|
|
-- sms_body = "hello";
|
|
cmd = "luarun app.lua sms outbound " .. voicemail_sms_to .. "@" .. domain_name .. " " .. voicemail_to_sms_did .. " '" .. sms_body .. "'";
|
|
api:executeString(cmd);
|
|
|
|
end
|
|
|
|
end |