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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
class TriggerController < ApplicationController
def voicemail
if !params[:sip_account_id].blank?
sip_account = SipAccount.where(:id => params[:sip_account_id].to_i).first
if sip_account
sip_account.voicemail_messages.where(:notification => nil).each do |message|
message.notification = false
message.save
if !File.exists?( message.file_path )
next
end
user = sip_account.sip_accountable
if user.class != User
next
end
# Indicate a new voicemail in the navigation bar.
#
PrivatePub.publish_to("/users/#{user.id}/messages/new", "$('#new_voicemail_or_fax_indicator').hide('fast').show('slow');")
PrivatePub.publish_to("/users/#{user.id}/messages/new", "document.title = '* ' + document.title.replace( '* ' , '');")
if user.email.blank?
next
end
voicemail_settings = sip_account.voicemail_setting
if !voicemail_settings
voicemail_settings = VoicemailSetting.new(:notify => user.send_voicemail_as_email_attachment, :attachment => user.send_voicemail_as_email_attachment, :mark_read => user.send_voicemail_as_email_attachment)
end
message.notification = voicemail_settings.notify
if voicemail_settings.notify
if Notifications.new_voicemail(message, voicemail_settings.attachment).deliver
if voicemail_settings.purge
message.delete
next
end
message.save
if voicemail_settings.mark_read
message.mark_read
end
end
else
message.save
end
end
render(
:status => 200,
:layout => false,
:content_type => 'text/plain',
:text => "<!-- OK -->",
)
else
render(
:status => 404,
:layout => false,
:content_type => 'text/plain',
:text => "<!-- Account not found -->",
)
end
end
end
def fax_has_been_sent
fax_document = FaxDocument.find(params[:id])
if fax_document
# push the partial to the webbrowser
#
new_html = ActionController::Base.helpers.escape_javascript(render_to_string("fax_documents/_fax_document", :layout => false, :locals => {:fax_document => fax_document}))
PrivatePub.publish_to("/fax_documents/#{fax_document.id}", "$('#" + fax_document.id.to_s + ".fax_document').replaceWith('#{new_html}');")
render(
:status => 200,
:layout => false,
:content_type => 'text/plain',
:text => "<!-- OK -->",
)
else
render(
:status => 501,
:layout => false,
:content_type => 'text/plain',
:text => "<!-- ERRORS: #{errors.join(', ')} -->",
)
end
end
def sip_account_update
sip_account = SipAccount.find(params[:id])
if sip_account.updated_at < Time.now
# Push an update to sip_account.switchboard_entries
#
sip_account.switchboard_entries.each do |switchboard_entry|
escaped_switchboard_entry_partial = ActionController::Base.helpers.escape_javascript(render_to_string("switchboard_entries/_switchboard_entry", :layout => false, :locals => {:switchboard_entry => switchboard_entry}))
PrivatePub.publish_to("/switchboards/#{switchboard_entry.switchboard.id}", "$('#switchboard_entry_id_" + switchboard_entry.id.to_s + "').replaceWith('#{escaped_switchboard_entry_partial}');")
end
# Push an update to the needed switchboards
#
Switchboard.where(:user_id => sip_account.sip_accountable.id).each do |switchboard|
if sip_account.call_legs.where(:sip_account_id => switchboard.user.sip_account_ids).any? ||
sip_account.b_call_legs.where(:sip_account_id => switchboard.user.sip_account_ids).any?
escaped_switchboard_partial = ActionController::Base.helpers.escape_javascript(render_to_string("switchboards/_current_user_dashboard", :layout => false, :locals => {:current_user => switchboard.user}))
PrivatePub.publish_to("/switchboards/#{switchboard.id}", "$('.dashboard').replaceWith('#{escaped_switchboard_partial}');")
end
end
sip_account.touch
end
render(
:status => 200,
:layout => false,
:content_type => 'text/plain',
:text => "<!-- OK -->",
)
end
def fax
if !params[:fax_account_id].blank?
fax_account = FaxAccount.where(:id => params[:fax_account_id].to_i).first
errors = Array.new()
if fax_account
fax_account.fax_documents.where(:state => 'received').each do |fax_document|
pdf_file = fax_document.tiff_to_pdf
if !pdf_file
errors << "#{fax_document.tiff} cound not be converted"
fax_document.state = 'unsuccessful'
fax_document.save
next
end
working_path, tiff_file = File.split(fax_document.tiff)
if fax_document.store_dir != working_path
FileUtils.mkdir(fax_document.store_dir)
FileUtils.mv(fax_document.tiff, fax_document.store_dir)
fax_document.tiff = "#{fax_document.store_dir}/#{tiff_file}"
end
fax_document.document = File.open(pdf_file)
fax_document.state = 'successful'
if fax_document.save
Notifications.new_fax(fax_document).deliver
@last_fax_document = fax_document
begin
File.delete(pdf_file)
rescue => e
logger.error "PDF fax file could not be deleted: #{pdf_file} => #{e.inspect}"
errors << "#{pdf_file} cound not be deleted"
end
fax_document.save
fax_document.render_thumbnails
else
errors << "#{fax_document.id} cound not be saved"
fax_document.state = 'unsuccessful'
fax_document.save
end
end
else
errors << "fax_account=#{params[:fax_account_id]} not found"
end
if errors.count == 0
# Indicate a new fax in the navigation bar.
#
if @last_fax_document.fax_account.fax_accountable.class == User
user = @last_fax_document.fax_account.fax_accountable
PrivatePub.publish_to("/users/#{user.id}/messages/new", "$('#new_voicemail_or_fax_indicator').hide('fast').show('slow');")
PrivatePub.publish_to("/users/#{user.id}/messages/new", "document.title = '* ' + document.title.replace( '* ' , '');")
end
render(
:status => 200,
:layout => false,
:content_type => 'text/plain',
:text => "<!-- OK -->",
)
else
render(
:status => 501,
:layout => false,
:content_type => 'text/plain',
:text => "<!-- ERRORS: #{errors.join(', ')} -->",
)
end
end
end
end
|