blob: 0e3c0e0b972b28565f33561e887da5d283532688 (
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
|
-- Gemeinschaft 5.0 event handler
-- (c) AMOOMA GmbH 2012
--
-- Set logger
require "common.log"
local log = common.log.Log:new()
log.prefix = "#E# "
log:info('[event] EVENT_MANAGER start');
require 'common.database'
local database = common.database.Database:new{ log = log }:connect();
if not database:connected() then
log:error('[event] EVENT_MANAGER - cannot connect to Gemeinschaft database');
return;
end
require "configuration.sip"
local sip = configuration.sip.Sip:new{ log = log, database = database }
local domain = '127.0.0.1';
local domains = sip:domains();
if domains[1] then
domain = domains[1]['host'];
else
log:error('[event] EVENT_MANAGER - No SIP domains found!');
end
require 'event.event'
local event_manager = event.event.EventManager:new{ log = log, database = database, domain = domain }
event_manager:run();
-- ensure database handle is released on exit
if database then
database:release();
end
log:info('[event] EVENT_MANAGER exit');
|