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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
class CallRoutesController < ApplicationController
authorize_resource :call_route, :except => [:sort]
before_filter { |controller|
if !params[:call_route].blank? && !params[:call_route][:endpoint_str].blank?
params[:call_route][:endpoint_type], delimeter, params[:call_route][:endpoint_id] = params[:call_route][:endpoint_str].partition('=')
end
}
def index
@call_routes = CallRoute.order([:routing_table, :position])
@routing_tables = @call_routes.pluck(:routing_table).uniq.sort
spread_breadcrumbs
end
def show
@call_route = CallRoute.find(params[:id])
spread_breadcrumbs
end
def new
@call_route = CallRoute.new
@endpoints = Gateway.all.collect {|r| [ "gateway: #{r.to_s}", "gateway=#{r.id}" ] }
@endpoints << [ 'phonenumber', 'phonenumber=' ]
@endpoints << [ 'dialplanfunction', 'dialplanfunction=' ]
@endpoints << [ 'hangup', 'hangup=' ]
@endpoints << [ 'unknown', 'unknown=' ]
spread_breadcrumbs
end
def create
@call_route = CallRoute.new(call_route_parameter_params)
spread_breadcrumbs
if @call_route.save
redirect_to @call_route, :notice => t('call_routes.controller.successfuly_created')
else
render :new
end
end
def edit
@call_route = CallRoute.find(params[:id])
@endpoints = Gateway.all.collect {|r| [ "gateway: #{r.to_s}", "gateway=#{r.id}" ] }
@endpoints << [ 'phonenumber', 'phonenumber=' ]
@endpoints << [ 'dialplanfunction', 'dialplanfunction=' ]
@endpoints << [ 'hangup', 'hangup=' ]
@endpoints << [ 'unknown', 'unknown=' ]
spread_breadcrumbs
end
def update
@call_route = CallRoute.find(params[:id])
spread_breadcrumbs
if @call_route.update_attributes(call_route_parameter_params)
redirect_to @call_route, :notice => t('call_routes.controller.successfuly_updated')
else
render :edit
end
end
def destroy
@call_route = CallRoute.find(params[:id])
@call_route.destroy
redirect_to call_routes_url, :notice => t('call_routes.controller.successfuly_destroyed')
end
def sort
params[:call_route].each_with_index do |id, index|
CallRoute.update_all({position: index+1}, {id: id})
#CallRoute.find(:id).move_to_bottom
end
render nothing: true
end
def show_variables
@channel_variables = Hash.new()
file_name = '/var/log/freeswitch/variables'
if File.readable?(file_name)
File.readlines(file_name).each do |line|
key, delimeter, value = line.partition(': ')
key = to_channel_variable_name(key)
if !key.blank?
@channel_variables[key] = URI.unescape(value.gsub(/\n/, ''));
end
end
end
end
private
def call_route_parameter_params
params.require(:call_route).permit(:routing_table, :name, :endpoint_type, :endpoint_id, :position)
end
def spread_breadcrumbs
add_breadcrumb t("call_routes.index.page_title"), call_routes_path
if @call_route && !@call_route.new_record?
add_breadcrumb @call_route, @call_route
end
end
def to_channel_variable_name(name)
variables_map = {
'Channel-State' => 'state',
'Channel-State-Number' => 'state_number',
'Channel-Name' => 'channel_name',
'Unique-ID' => 'uuid',
'Call-Direction' => 'direction',
'Answer-State' => 'state',
'Channel-Read-Codec-Name' => 'read_codec',
'Channel-Read-Codec-Rate' => 'read_rate',
'Channel-Write-Codec-Name' => 'write_codec',
'Channel-Write-Codec-Rate' => 'write_rate',
'Caller-Username' => 'username',
'Caller-Dialplan' => 'dialplan',
'Caller-Caller-ID-Name' => 'caller_id_name',
'Caller-Caller-ID-Number' => 'caller_id_number',
'Caller-ANI' => 'ani',
'Caller-ANI-II' => 'aniii',
'Caller-Network-Addr' => 'network_addr',
'Caller-Destination-Number' => 'destination_number',
'Caller-Unique-ID' => 'uuid',
'Caller-Source' => 'source',
'Caller-Context' => 'context',
'Caller-RDNIS' => 'rdnis',
'Caller-Channel-Name' => 'channel_name',
'Caller-Profile-Index' => 'profile_index',
'Caller-Channel-Created-Time' => 'created_time',
'Caller-Channel-Answered-Time' => 'answered_time',
'Caller-Channel-Hangup-Time' => 'hangup_time',
'Caller-Channel-Transfer-Time' => 'transfer_time',
'Caller-Screen-Bit' => 'screen_bit',
'Caller-Privacy-Hide-Name' => 'privacy_hide_name',
'Caller-Privacy-Hide-Number' => 'privacy_hide_number',
}
name = name.gsub(/[^a-zA-Z1-9_\-]/, '')
if variables_map[name]
return variables_map[name]
elsif name.match(/^variable_/)
return name.gsub(/^variable_/, '')
end
return nil
end
end
|