1 Star 0 Fork 14

暮雪超霸/freeswitch-lua-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
score.lua 837 Bytes
一键复制 编辑 原始数据 按行查看 历史
tianzhenjiu 提交于 2019-03-20 17:11 . 更改
--处理打分的lua
session:consoleLog("info","进入打分");
local callnum=session:getVariable("caller_id_number");
local sessionuuid=session:getVariable("uuid");
local count=3;
local isbreak=0;
while(session:ready() ==true and count > 0)do
local digit=session:playAndGetDigits(1, 1, 1, 1000, "#",
"/usr/local/freeswitch/sounds/score.wav",
"",
"(.)+");
if(digit == "1") then
session:consoleLog("info","好评");
isbreak=1;
end
if(digit == "0") then
session:consoleLog("info","差评")
isbreak=1;
end;
if(isbreak == 1) then
local event = freeswitch.Event("CUSTOM", "NECO:CC_SCORE");
event:addHeader("Caller-Orig-Caller-ID-Number",callnum);
event:addHeader("Score-Digit",digit);
event:addHeader("Unique-ID",sessionuuid);
event:fire();
return "break";
end
count=count-1;
end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Lua
1
https://gitee.com/chaoba/freeswitch-lua-demo.git
git@gitee.com:chaoba/freeswitch-lua-demo.git
chaoba
freeswitch-lua-demo
freeswitch-lua-demo
master

搜索帮助