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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
# == Schema Information
# Schema version: 20131024114346
#
# Table name: outgoing_messages
#
# id :integer not null, primary key
# info_request_id :integer not null
# body :text not null
# status :string(255) not null
# message_type :string(255) not null
# created_at :datetime not null
# updated_at :datetime not null
# last_sent_at :datetime
# incoming_message_followup_id :integer
# what_doing :string(255) not null
# prominence :string(255) default("normal"), not null
# prominence_reason :text
#
# models/outgoing_message.rb:
# A message, associated with a request, from the user of the site to somebody
# else. e.g. An initial request for information, or a complaint.
#
# Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved.
# Email: hello@mysociety.org; WWW: http://www.mysociety.org/
class OutgoingMessage < ActiveRecord::Base
extend MessageProminence
include Rails.application.routes.url_helpers
include LinkToHelper
# To override the default letter
attr_accessor :default_letter
validates_presence_of :info_request
validates_inclusion_of :status, :in => ['ready', 'sent', 'failed']
validates_inclusion_of :message_type, :in => ['initial_request', 'followup']
validate :format_of_body
belongs_to :info_request
belongs_to :incoming_message_followup, :foreign_key => 'incoming_message_followup_id', :class_name => 'IncomingMessage'
# can have many events, for items which were resent by site admin e.g. if
# contact address changed
has_many :info_request_events
after_initialize :set_default_letter
after_save :purge_in_cache
# reindex if body text is edited (e.g. by admin interface)
after_update :xapian_reindex_after_update
strip_attributes!
has_prominence
self.default_url_options[:host] = AlaveteliConfiguration.domain
# https links in emails if forcing SSL
if AlaveteliConfiguration::force_ssl
self.default_url_options[:protocol] = "https"
end
def self.default_salutation(public_body)
_("Dear {{public_body_name}},", :public_body_name => public_body.name)
end
def self.placeholder_salutation
_("Dear [Authority name],")
end
def self.fill_in_salutation(body, public_body)
body.gsub(placeholder_salutation, default_salutation(public_body))
end
# How the default letter starts and ends
def get_salutation
if info_request.is_batch_request_template?
return OutgoingMessage.placeholder_salutation
end
ret = ""
if message_type == 'followup' &&
!incoming_message_followup.nil? &&
!incoming_message_followup.safe_mail_from.nil? &&
incoming_message_followup.valid_to_reply_to?
ret += OutgoingMailer.name_for_followup(info_request, incoming_message_followup)
else
return OutgoingMessage.default_salutation(info_request.public_body)
end
salutation = _("Dear {{public_body_name}},", :public_body_name => ret)
end
def get_signoff
if message_type == 'followup' &&
!incoming_message_followup.nil? &&
!incoming_message_followup.safe_mail_from.nil? &&
incoming_message_followup.valid_to_reply_to?
_("Yours sincerely,")
else
_("Yours faithfully,")
end
end
def get_internal_review_insert_here_note
_("GIVE DETAILS ABOUT YOUR COMPLAINT HERE")
end
def get_default_letter
return default_letter if default_letter
if what_doing == 'internal_review'
letter = _("Please pass this on to the person who conducts Freedom of Information reviews.")
letter += "\n\n"
letter += _("I am writing to request an internal review of {{public_body_name}}'s handling of my FOI request '{{info_request_title}}'.",
:public_body_name => info_request.public_body.name,
:info_request_title => info_request.title)
letter += "\n\n\n\n [ #{ get_internal_review_insert_here_note } ] \n\n\n\n"
letter += _("A full history of my FOI request and all correspondence is available on the Internet at this address: {{url}}",
:url => request_url(info_request))
letter += "\n"
else
""
end
end
def get_default_message
msg = get_salutation
msg += "\n\n"
msg += get_default_letter
msg += "\n\n"
msg += get_signoff
msg += "\n\n"
end
def set_signature_name(name)
# TODO: We use raw_body here to get unstripped one
if raw_body == get_default_message
self.body = raw_body + name
end
end
def body
ret = read_attribute(:body)
if ret.nil?
return ret
end
ret = ret.dup
ret.strip!
ret.gsub!(/(?:\n\s*){2,}/, "\n\n") # remove excess linebreaks that unnecessarily space it out
# Remove things from censor rules
unless info_request.nil?
self.info_request.apply_censor_rules_to_text!(ret)
end
ret
end
def raw_body
read_attribute(:body)
end
# Used to give warnings when writing new messages
def contains_email?
MySociety::Validate.email_find_regexp.match(body)
end
def contains_postcode?
MySociety::Validate.contains_postcode?(body)
end
def record_email_delivery(to_addrs, message_id, log_event_type = 'sent')
self.last_sent_at = Time.now
self.status = 'sent'
save!
log_event_type = "followup_#{ log_event_type }" if message_type == 'followup'
info_request.log_event(log_event_type, { :email => to_addrs,
:outgoing_message_id => id,
:smtp_message_id => message_id })
set_info_request_described_state
end
def sendable?
if status == 'ready'
if message_type == 'initial_request'
return true
elsif message_type == 'followup'
return true
else
raise "Message id #{id} has type '#{message_type}' which cannot be sent"
end
elsif status == 'sent'
raise "Message id #{id} has already been sent"
else
raise "Message id #{id} not in state for sending"
end
end
# An admin function
def prepare_message_for_resend
if ['initial_request', 'followup'].include?(message_type) and status == 'sent'
self.status = 'ready'
else
raise "Message id #{id} has type '#{message_type}' status " \
"'#{status}' which prepare_message_for_resend can't handle"
end
end
# Returns the text to quote the original message when sending this one
def quoted_part_to_append_to_email
if message_type == 'followup' && !incoming_message_followup.nil?
quoted = "\n\n-----Original Message-----\n\n"
quoted += incoming_message_followup.get_body_for_quoting
quoted += "\n"
else
""
end
end
# We hide emails from display in outgoing messages.
def remove_privacy_sensitive_things!(text)
text.gsub!(MySociety::Validate.email_find_regexp, "[email address]")
end
# Returns text for indexing / text display
def get_text_for_indexing(strip_salutation = true)
text = body.strip
# Remove salutation
text.sub!(/Dear .+,/, "") if strip_salutation
# Remove email addresses from display/index etc.
self.remove_privacy_sensitive_things!(text)
text
end
# Return body for display as HTML
def get_body_for_html_display
text = body.strip
self.remove_privacy_sensitive_things!(text)
# reparagraph and wrap it so is good preview of emails
text = MySociety::Format.wrap_email_body_by_lines(text)
text = CGI.escapeHTML(text)
text = MySociety::Format.make_clickable(text, :contract => 1)
text.gsub!(/\[(email address|mobile number)\]/, '[<a href="/help/officers#mobiles">\1</a>]')
text = text.gsub(/\n/, '<br>')
text.html_safe
end
# Return body for display as text
def get_body_for_text_display
get_text_for_indexing(strip_salutation=false)
end
def fully_destroy
ActiveRecord::Base.transaction do
info_request_event = InfoRequestEvent.find_by_outgoing_message_id(id)
info_request_event.track_things_sent_emails.each { |a| a.destroy }
info_request_event.user_info_request_sent_alerts.each { |a| a.destroy }
info_request_event.destroy
destroy
end
end
def purge_in_cache
info_request.purge_in_cache
end
def for_admin_column
self.class.content_columns.each do |column|
yield(column.human_name, self.send(column.name), column.type.to_s, column.name)
end
end
def xapian_reindex_after_update
if changes.include?('body')
info_request_events.each do |event|
event.xapian_mark_needs_index
end
end
end
private
def set_info_request_described_state
if message_type == 'initial_request'
info_request.set_described_state('waiting_response')
elsif message_type == 'followup'
if info_request.described_state == 'waiting_clarification'
info_request.set_described_state('waiting_response')
end
if what_doing == 'internal_review'
info_request.set_described_state('internal_review')
end
end
end
def set_default_letter
self.body = get_default_message if raw_body.nil?
end
def format_of_body
if body.empty? || body =~ /\A#{Regexp.escape(get_salutation)}\s+#{Regexp.escape(get_signoff)}/ || body =~ /#{Regexp.escape(get_internal_review_insert_here_note)}/
if message_type == 'followup'
if what_doing == 'internal_review'
errors.add(:body, _("Please give details explaining why you want a review"))
else
errors.add(:body, _("Please enter your follow up message"))
end
elsif
errors.add(:body, _("Please enter your letter requesting information"))
else
raise "Message id #{id} has type '#{message_type}' which validate can't handle"
end
end
if body =~ /#{get_signoff}\s*\Z/m
errors.add(:body, _("Please sign at the bottom with your name, or alter the \"{{signoff}}\" signature", :signoff => get_signoff))
end
unless MySociety::Validate.uses_mixed_capitals(body)
errors.add(:body, _('Please write your message using a mixture of capital and lower case letters. This makes it easier for others to read.'))
end
if what_doing.nil? || !['new_information', 'internal_review', 'normal_sort'].include?(what_doing)
errors.add(:what_doing_dummy, _('Please choose what sort of reply you are making.'))
end
end
end
|