2016-06-24 18:32:19 +02:00
|
|
|
require "resources.functions.config"
|
|
|
|
|
require "resources.functions.split"
|
|
|
|
|
|
2016-06-30 17:55:37 +02:00
|
|
|
local log = require "resources.functions.log".call_flow_subscribe
|
2016-07-08 21:10:43 +02:00
|
|
|
local EventConsumer = require "resources.functions.event_consumer"
|
2016-06-30 17:55:37 +02:00
|
|
|
local presence_in = require "resources.functions.presence_in"
|
|
|
|
|
local Database = require "resources.functions.database"
|
2016-07-08 21:10:43 +02:00
|
|
|
|
|
|
|
|
local find_call_flow do
|
2016-06-24 18:32:19 +02:00
|
|
|
|
|
|
|
|
local find_call_flow_sql = [[select t1.call_flow_uuid, t1.call_flow_status
|
|
|
|
|
from v_call_flows t1 inner join v_domains t2 on t1.domain_uuid = t2.domain_uuid
|
|
|
|
|
where t2.domain_name = '%s' and t1.call_flow_feature_code = '%s'
|
|
|
|
|
]]
|
|
|
|
|
|
2016-07-08 21:10:43 +02:00
|
|
|
function find_call_flow(user)
|
2016-06-24 18:32:19 +02:00
|
|
|
local ext, domain_name = split_first(user, '@', true)
|
|
|
|
|
if not domain_name then return end
|
|
|
|
|
local dbh = Database.new('system')
|
|
|
|
|
if not dbh then return end
|
|
|
|
|
local sql = string.format(find_call_flow_sql, dbh:escape(domain_name), dbh:escape(ext))
|
|
|
|
|
local row = dbh:first_row(sql)
|
|
|
|
|
dbh:release()
|
|
|
|
|
if not row then return end
|
|
|
|
|
return row.call_flow_uuid, row.call_flow_status
|
|
|
|
|
end
|
|
|
|
|
|
2016-07-08 21:10:43 +02:00
|
|
|
end
|
|
|
|
|
|
2016-06-30 17:55:37 +02:00
|
|
|
local sleep = 60000
|
2016-06-24 18:32:19 +02:00
|
|
|
local pid_file = scripts_dir .. "/run/call_flow_subscribe.tmp"
|
2016-07-08 21:10:43 +02:00
|
|
|
local shutdown_event = "CUSTOM::fusion::flow::shutdown"
|
2016-06-24 18:32:19 +02:00
|
|
|
|
2016-07-08 21:10:43 +02:00
|
|
|
local events = EventConsumer.new(sleep, pid_file)
|
2016-06-24 18:32:19 +02:00
|
|
|
|
2016-07-08 21:10:43 +02:00
|
|
|
-- FS shutdown
|
|
|
|
|
events:bind("SHUTDOWN", function(self, name, event)
|
|
|
|
|
log.notice("shutdown")
|
|
|
|
|
return self:stop()
|
|
|
|
|
end)
|
2016-06-24 18:32:19 +02:00
|
|
|
|
2016-07-08 21:10:43 +02:00
|
|
|
-- shutdown command
|
|
|
|
|
if shutdown_event then
|
|
|
|
|
events:bind(shutdown_event, function(self, name, event)
|
|
|
|
|
log.notice("shutdown")
|
|
|
|
|
return self:stop()
|
|
|
|
|
end)
|
|
|
|
|
end
|
2016-06-24 18:32:19 +02:00
|
|
|
|
2016-07-08 21:10:43 +02:00
|
|
|
-- FS receive SUBSCRIBE to BLF from device
|
|
|
|
|
events:bind("PRESENCE_PROBE", function(self, name, event)
|
|
|
|
|
--handle only blf with `flow+` prefix
|
|
|
|
|
if event:getHeader('proto') ~= 'flow' then return end
|
2016-06-24 18:32:19 +02:00
|
|
|
|
2016-07-08 21:10:43 +02:00
|
|
|
local from, to = event:getHeader('from'), event:getHeader('to')
|
|
|
|
|
local expires = tonumber(event:getHeader('expires'))
|
|
|
|
|
if expires and expires > 0 then
|
|
|
|
|
local call_flow_uuid, call_flow_status = find_call_flow(to)
|
|
|
|
|
if call_flow_uuid then
|
|
|
|
|
log.noticef("Find call flow: %s staus: %s", to, tostring(call_flow_status))
|
|
|
|
|
presence_in.turn_lamp(call_flow_status == "false", to, call_flow_uuid)
|
|
|
|
|
else
|
|
|
|
|
log.warningf("Can not find call flow: %s", to)
|
2016-06-24 18:32:19 +02:00
|
|
|
end
|
2016-07-08 21:10:43 +02:00
|
|
|
else
|
|
|
|
|
log.noticef("%s UNSUBSCRIBE from %s", from, to)
|
2016-06-24 18:32:19 +02:00
|
|
|
end
|
2016-07-08 21:10:43 +02:00
|
|
|
end)
|
2016-06-24 18:32:19 +02:00
|
|
|
|
2016-07-08 21:10:43 +02:00
|
|
|
log.notice("start")
|
|
|
|
|
|
|
|
|
|
events:run()
|
2016-07-06 20:37:16 +02:00
|
|
|
|
|
|
|
|
log.notice("stop")
|