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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
|
class VoicemailMessagesController < ApplicationController
load_resource :voicemail_account
load_and_authorize_resource :voicemail_message, :through => [:voicemail_account]
before_filter :set_and_authorize_parent
before_filter :spread_breadcrumbs
helper_method :sort_column, :sort_descending
before_filter { |controller|
if ! params[:type].blank? then
@type = params[:type].to_s
end
if ! params[:page].blank? then
@pagination_page_number = params[:page].to_i
end
}
def index
@messages_count = @voicemail_account.voicemail_messages.count
@messages_unread_count = @voicemail_account.voicemail_messages.where(:read_epoch => 0).count
@messages_read_count = @messages_count - @messages_unread_count
if @type == 'read'
@voicemail_messages = @voicemail_account.voicemail_messages.where('read_epoch > 0').order(sort_column + ' ' + (sort_descending ? 'DESC' : 'ASC')).paginate(
:page => @pagination_page_number,
:per_page => GsParameter.get('DEFAULT_PAGINATION_ENTRIES_PER_PAGE')
)
elsif @type == 'unread'
@voicemail_messages = @voicemail_account.voicemail_messages.where(:read_epoch => 0).order(sort_column + ' ' + (sort_descending ? 'DESC' : 'ASC')).paginate(
:page => @pagination_page_number,
:per_page => GsParameter.get('DEFAULT_PAGINATION_ENTRIES_PER_PAGE')
)
else
@voicemail_messages = @voicemail_account.voicemail_messages.order(sort_column + ' ' + (sort_descending ? 'DESC' : 'ASC')).paginate(
:page => @pagination_page_number,
:per_page => GsParameter.get('DEFAULT_PAGINATION_ENTRIES_PER_PAGE')
)
end
@available_sip_account = available_sip_account()
end
def show
respond_to do |format|
format.wav {
if @voicemail_message.file_path
send_file @voicemail_message.file_path, :type => "audio/x-wav",
:filename => "#{Time.at(@voicemail_message.created_epoch).strftime('%Y%m%d-%H%M%S')}-#{@voicemail_message.cid_number}.wav"
else
render(
:status => 404,
:layout => false,
:content_type => 'text/plain',
:text => "<!-- Message not found -->",
)
end
}
end
end
def new
end
def create
end
def edit
end
def update
end
def destroy
@voicemail_message.destroy
m = method( :"#{@parent.class.name.underscore}_voicemail_messages_url" )
redirect_to m.(), :notice => t('voicemail_messages.controller.successfuly_destroyed')
end
def destroy_multiple
result = false
if ! params[:selected_uuids].blank? then
voicemail_messages = @voicemail_account.voicemail_messages.where(:uuid => params[:selected_uuids])
voicemail_messages.each do |voicemail_message|
result = voicemail_message.destroy
end
end
m = method( :"#{@parent.class.name.underscore}_voicemail_messages_url" )
if result
redirect_to m.(), :notice => t('voicemail_messages.controller.successfuly_destroyed')
else
redirect_to m.()
end
end
def available_sip_account
voicemail_accountable = @voicemail_account.voicemail_accountable
if voicemail_accountable.class == SipAccount
return voicemail_accountable
elsif voicemail_accountable.class == User
return voicemail_accountable.sip_accounts.first
end
end
def call
phone_number = @voicemail_message.cid_number
sip_account = self.available_sip_account
if ! phone_number.blank? && sip_account && sip_account.registration
sip_account.call(phone_number)
end
redirect_to(:back)
end
def mark_read
@voicemail_message.mark_read
redirect_to(:back)
end
def mark_unread
@voicemail_message.mark_read(false)
redirect_to(:back)
end
private
def set_and_authorize_parent
@parent = @voicemail_account
authorize! :read, @parent
@show_path_method = method( :"#{@parent.class.name.underscore}_voicemail_message_path" )
@index_path_method = method( :"#{@parent.class.name.underscore}_voicemail_messages_path" )
@new_path_method = method( :"new_#{@parent.class.name.underscore}_voicemail_message_path" )
@edit_path_method = method( :"edit_#{@parent.class.name.underscore}_voicemail_message_path" )
end
def spread_breadcrumbs
parent = @voicemail_account.voicemail_accountable
if parent.class == User
add_breadcrumb t("users.index.page_title"), tenant_users_path(parent.current_tenant)
add_breadcrumb parent, tenant_user_path(parent.current_tenant, parent)
elsif parent.class == SipAccount
if parent.sip_accountable.class == User
add_breadcrumb t("users.index.page_title"), tenant_users_path(parent.sip_accountable.current_tenant)
add_breadcrumb parent.sip_accountable, tenant_user_path(parent.sip_accountable.current_tenant, parent.sip_accountable)
end
add_breadcrumb t("sip_accounts.index.page_title"), method( :"#{parent.sip_accountable.class.name.underscore}_sip_accounts_url" ).(parent.sip_accountable)
add_breadcrumb parent, method( :"#{parent.sip_accountable.class.name.underscore}_sip_account_path" ).(parent.sip_accountable, parent)
end
add_breadcrumb t("voicemail_accounts.index.page_title"), method( :"#{parent.class.name.underscore}_voicemail_accounts_url" ).(parent)
add_breadcrumb @voicemail_account.name, method( :"#{parent.class.name.underscore}_voicemail_account_path" ).(parent, @voicemail_account)
add_breadcrumb t("voicemail_messages.index.page_title")
end
def sort_descending
if sort_column == 'created_epoch' && params[:desc].to_s.blank?
return true
end
params[:desc].to_s == 'true'
end
def sort_column
VoicemailMessage.column_names.include?(params[:sort]) ? params[:sort] : 'created_epoch'
end
end
|