Create play_file.lua

This commit is contained in:
FusionPBX 2018-02-10 13:35:07 -07:00 committed by GitHub
parent fab5b5a970
commit e29ea61545
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
function play_file(dbh, domain_name, domain_uuid, file_name)
local full_path, is_base64 = find_file(dbh, domain_name, domain_uuid, file_name)
if not full_path then
log.warningf('Can not find audio file: %s. Try using it in raw mode.', file_name)
full_path = file_name
else
log.noticef('Found `%s` as `%s`%s', file_name, full_path, is_base64 and '(BASE64)' or '')
end
session:execute("playback", full_path);
end