blob: 3942d054080a4c179b0fdbf45ca8244a3af90e4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
-- Gemeinschaft 5 module: call forwarding class
-- (c) AMOOMA GmbH 2012
--
module(...,package.seeall)
CallForwarding = {}
-- Create CallForwarding object
function CallForwarding.new(self, arg, object)
arg = arg or {}
object = arg.object or {}
setmetatable(object, self);
self.__index = self
self.log = arg.log;
self.database = arg.database;
self.record = arg.record;
self.domain = arg.domain;
return object;
end
-- Find call forwarding by id
function CallForwarding.find_by_id(self, id)
local sql_query = 'SELECT * FROM `call_forwards` WHERE `id`= ' .. tonumber(id) .. ' LIMIT 1';
local record = nil
self.database:query(sql_query, function(entry)
record = entry;
end)
if record then
call_forwarding = CallForwarding:new(self)
call_forwarding.record = record
return call_forwarding
end
return nil
end
function CallForwarding.presence_set(self, presence_state)
require 'dialplan.presence'
local presence = dialplan.presence.Presence:new();
presence:init{log = self.log, accounts = { 'f-cftg-' .. tostring(self.record.id) }, domain = self.domain, uuid = 'call_forwarding_' .. tostring(self.record.id)};
return presence:set(presence_state);
end
|