blob: db6d9d620ec17daa0d4d1885d8746c9836bdf6bb (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
class Call < ActiveRecord::Base
self.table_name = 'detailed_calls'
self.primary_key = 'uuid'
attr_writer :sip_account_id
validates :dest,
:presence => true
def create(attributes=nil)
if ! attributes
return
end
self.sip_account = SipAccount.where(:id => attributes[:sip_account_id]).first
self.dest = attributes[:dest]
return self
end
def save(attributes=nil)
end
def call(number=nil)
if @sip_account && self.dest
return @sip_account.call(self.dest)
end
return false
end
def destroy
return self.delete
end
def delete
require 'freeswitch_event'
return FreeswitchAPI.execute('uuid_kill', self.uuid, true);
end
def sip_account=(sip_a)
@sip_account = sip_a
end
def sip_account
if @sip_account
return @sip_account
end
result = self.presence_id.match('^(.+)@(.+)$')
if result && ! result[1].blank? and ! result[2].blank?
domain = SipDomain.where(:host => result[2]).first
if domain
@sip_account = SipAccount.where(:auth_name => result[1], :sip_domain_id => domain.id).first
end
end
return @sip_account
end
def sip_account_bleg
result = self.b_presence_id.match('^(.+)@(.+)$')
if result && ! result[1].blank? and ! result[2].blank?
domain = SipDomain.where(:host => result[2]).first
if domain
return SipAccount.where(:auth_name => result[1], :sip_domain_id => domain.id).first
end
end
end
def get_variable_from_uuid(channel_uuid, variable_name)
if channel_uuid.blank?
return nil
end
require 'freeswitch_event'
result = FreeswitchAPI.channel_variable_get(channel_uuid, variable_name);
if result == '_undef_'
return nil
end
return result
end
def get_variable(variable_name)
return get_variable_from_uuid(self.uuid, variable_name);
end
def get_variable_bleg(variable_name)
return get_variable_from_uuid(self.b_uuid, variable_name);
end
def is_sip
return self.name.match('^sofia') != nil
end
def is_caller
if (self.uuid == self.call_uuid) || self.call_uuid.blank?
true
end
end
end
|