##// END OF EJS Templates
Fixed MailHandler broken by I18n fallback added in r4679....
Jean-Philippe Lang -
r4562:7b7577c747ce
parent child
Show More
@@ -1,361 +1,361
1 1 # redMine - project management software
2 2 # Copyright (C) 2006-2007 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class MailHandler < ActionMailer::Base
19 19 include ActionView::Helpers::SanitizeHelper
20 20 include Redmine::I18n
21 21
22 22 class UnauthorizedAction < StandardError; end
23 23 class MissingInformation < StandardError; end
24 24
25 25 attr_reader :email, :user
26 26
27 27 def self.receive(email, options={})
28 28 @@handler_options = options.dup
29 29
30 30 @@handler_options[:issue] ||= {}
31 31
32 32 @@handler_options[:allow_override] = @@handler_options[:allow_override].split(',').collect(&:strip) if @@handler_options[:allow_override].is_a?(String)
33 33 @@handler_options[:allow_override] ||= []
34 34 # Project needs to be overridable if not specified
35 35 @@handler_options[:allow_override] << 'project' unless @@handler_options[:issue].has_key?(:project)
36 36 # Status overridable by default
37 37 @@handler_options[:allow_override] << 'status' unless @@handler_options[:issue].has_key?(:status)
38 38
39 39 @@handler_options[:no_permission_check] = (@@handler_options[:no_permission_check].to_s == '1' ? true : false)
40 40 super email
41 41 end
42 42
43 43 # Processes incoming emails
44 44 # Returns the created object (eg. an issue, a message) or false
45 45 def receive(email)
46 46 @email = email
47 47 sender_email = email.from.to_a.first.to_s.strip
48 48 # Ignore emails received from the application emission address to avoid hell cycles
49 49 if sender_email.downcase == Setting.mail_from.to_s.strip.downcase
50 50 logger.info "MailHandler: ignoring email from Redmine emission address [#{sender_email}]" if logger && logger.info
51 51 return false
52 52 end
53 53 @user = User.find_by_mail(sender_email) if sender_email.present?
54 54 if @user && !@user.active?
55 55 logger.info "MailHandler: ignoring email from non-active user [#{@user.login}]" if logger && logger.info
56 56 return false
57 57 end
58 58 if @user.nil?
59 59 # Email was submitted by an unknown user
60 60 case @@handler_options[:unknown_user]
61 61 when 'accept'
62 62 @user = User.anonymous
63 63 when 'create'
64 64 @user = MailHandler.create_user_from_email(email)
65 65 if @user
66 66 logger.info "MailHandler: [#{@user.login}] account created" if logger && logger.info
67 67 Mailer.deliver_account_information(@user, @user.password)
68 68 else
69 69 logger.error "MailHandler: could not create account for [#{sender_email}]" if logger && logger.error
70 70 return false
71 71 end
72 72 else
73 73 # Default behaviour, emails from unknown users are ignored
74 74 logger.info "MailHandler: ignoring email from unknown user [#{sender_email}]" if logger && logger.info
75 75 return false
76 76 end
77 77 end
78 78 User.current = @user
79 79 dispatch
80 80 end
81 81
82 82 private
83 83
84 84 MESSAGE_ID_RE = %r{^<redmine\.([a-z0-9_]+)\-(\d+)\.\d+@}
85 85 ISSUE_REPLY_SUBJECT_RE = %r{\[[^\]]*#(\d+)\]}
86 86 MESSAGE_REPLY_SUBJECT_RE = %r{\[[^\]]*msg(\d+)\]}
87 87
88 88 def dispatch
89 89 headers = [email.in_reply_to, email.references].flatten.compact
90 90 if headers.detect {|h| h.to_s =~ MESSAGE_ID_RE}
91 91 klass, object_id = $1, $2.to_i
92 92 method_name = "receive_#{klass}_reply"
93 93 if self.class.private_instance_methods.collect(&:to_s).include?(method_name)
94 94 send method_name, object_id
95 95 else
96 96 # ignoring it
97 97 end
98 98 elsif m = email.subject.match(ISSUE_REPLY_SUBJECT_RE)
99 99 receive_issue_reply(m[1].to_i)
100 100 elsif m = email.subject.match(MESSAGE_REPLY_SUBJECT_RE)
101 101 receive_message_reply(m[1].to_i)
102 102 else
103 103 receive_issue
104 104 end
105 105 rescue ActiveRecord::RecordInvalid => e
106 106 # TODO: send a email to the user
107 107 logger.error e.message if logger
108 108 false
109 109 rescue MissingInformation => e
110 110 logger.error "MailHandler: missing information from #{user}: #{e.message}" if logger
111 111 false
112 112 rescue UnauthorizedAction => e
113 113 logger.error "MailHandler: unauthorized attempt from #{user}" if logger
114 114 false
115 115 end
116 116
117 117 # Creates a new issue
118 118 def receive_issue
119 119 project = target_project
120 120 # check permission
121 121 unless @@handler_options[:no_permission_check]
122 122 raise UnauthorizedAction unless user.allowed_to?(:add_issues, project)
123 123 end
124 124
125 125 issue = Issue.new(:author => user, :project => project)
126 126 issue.safe_attributes = issue_attributes_from_keywords(issue)
127 127 issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)}
128 128 issue.subject = email.subject.to_s.chomp[0,255]
129 129 if issue.subject.blank?
130 130 issue.subject = '(no subject)'
131 131 end
132 132 issue.description = cleaned_up_text_body
133 133
134 134 # add To and Cc as watchers before saving so the watchers can reply to Redmine
135 135 add_watchers(issue)
136 136 issue.save!
137 137 add_attachments(issue)
138 138 logger.info "MailHandler: issue ##{issue.id} created by #{user}" if logger && logger.info
139 139 issue
140 140 end
141 141
142 142 # Adds a note to an existing issue
143 143 def receive_issue_reply(issue_id)
144 144 issue = Issue.find_by_id(issue_id)
145 145 return unless issue
146 146 # check permission
147 147 unless @@handler_options[:no_permission_check]
148 148 raise UnauthorizedAction unless user.allowed_to?(:add_issue_notes, issue.project) || user.allowed_to?(:edit_issues, issue.project)
149 149 end
150 150
151 151 # ignore CLI-supplied defaults for new issues
152 152 @@handler_options[:issue].clear
153 153
154 154 journal = issue.init_journal(user, cleaned_up_text_body)
155 155 issue.safe_attributes = issue_attributes_from_keywords(issue)
156 156 issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)}
157 157 add_attachments(issue)
158 158 issue.save!
159 159 logger.info "MailHandler: issue ##{issue.id} updated by #{user}" if logger && logger.info
160 160 journal
161 161 end
162 162
163 163 # Reply will be added to the issue
164 164 def receive_journal_reply(journal_id)
165 165 journal = Journal.find_by_id(journal_id)
166 166 if journal && journal.journalized_type == 'Issue'
167 167 receive_issue_reply(journal.journalized_id)
168 168 end
169 169 end
170 170
171 171 # Receives a reply to a forum message
172 172 def receive_message_reply(message_id)
173 173 message = Message.find_by_id(message_id)
174 174 if message
175 175 message = message.root
176 176
177 177 unless @@handler_options[:no_permission_check]
178 178 raise UnauthorizedAction unless user.allowed_to?(:add_messages, message.project)
179 179 end
180 180
181 181 if !message.locked?
182 182 reply = Message.new(:subject => email.subject.gsub(%r{^.*msg\d+\]}, '').strip,
183 183 :content => cleaned_up_text_body)
184 184 reply.author = user
185 185 reply.board = message.board
186 186 message.children << reply
187 187 add_attachments(reply)
188 188 reply
189 189 else
190 190 logger.info "MailHandler: ignoring reply from [#{sender_email}] to a locked topic" if logger && logger.info
191 191 end
192 192 end
193 193 end
194 194
195 195 def add_attachments(obj)
196 196 if email.has_attachments?
197 197 email.attachments.each do |attachment|
198 198 Attachment.create(:container => obj,
199 199 :file => attachment,
200 200 :author => user,
201 201 :content_type => attachment.content_type)
202 202 end
203 203 end
204 204 end
205 205
206 206 # Adds To and Cc as watchers of the given object if the sender has the
207 207 # appropriate permission
208 208 def add_watchers(obj)
209 209 if user.allowed_to?("add_#{obj.class.name.underscore}_watchers".to_sym, obj.project)
210 210 addresses = [email.to, email.cc].flatten.compact.uniq.collect {|a| a.strip.downcase}
211 211 unless addresses.empty?
212 212 watchers = User.active.find(:all, :conditions => ['LOWER(mail) IN (?)', addresses])
213 213 watchers.each {|w| obj.add_watcher(w)}
214 214 end
215 215 end
216 216 end
217 217
218 218 def get_keyword(attr, options={})
219 219 @keywords ||= {}
220 220 if @keywords.has_key?(attr)
221 221 @keywords[attr]
222 222 else
223 223 @keywords[attr] = begin
224 224 if (options[:override] || @@handler_options[:allow_override].include?(attr.to_s)) && (v = extract_keyword!(plain_text_body, attr, options[:format]))
225 225 v
226 226 elsif !@@handler_options[:issue][attr].blank?
227 227 @@handler_options[:issue][attr]
228 228 end
229 229 end
230 230 end
231 231 end
232 232
233 233 # Destructively extracts the value for +attr+ in +text+
234 234 # Returns nil if no matching keyword found
235 235 def extract_keyword!(text, attr, format=nil)
236 236 keys = [attr.to_s.humanize]
237 237 if attr.is_a?(Symbol)
238 keys << l("field_#{attr}", :default => '', :locale => user.language) if user
239 keys << l("field_#{attr}", :default => '', :locale => Setting.default_language)
238 keys << l("field_#{attr}", :default => '', :locale => user.language) if user && user.language.present?
239 keys << l("field_#{attr}", :default => '', :locale => Setting.default_language) if Setting.default_language.present?
240 240 end
241 241 keys.reject! {|k| k.blank?}
242 242 keys.collect! {|k| Regexp.escape(k)}
243 243 format ||= '.+'
244 244 text.gsub!(/^(#{keys.join('|')})[ \t]*:[ \t]*(#{format})\s*$/i, '')
245 245 $2 && $2.strip
246 246 end
247 247
248 248 def target_project
249 249 # TODO: other ways to specify project:
250 250 # * parse the email To field
251 251 # * specific project (eg. Setting.mail_handler_target_project)
252 252 target = Project.find_by_identifier(get_keyword(:project))
253 253 raise MissingInformation.new('Unable to determine target project') if target.nil?
254 254 target
255 255 end
256 256
257 257 # Returns a Hash of issue attributes extracted from keywords in the email body
258 258 def issue_attributes_from_keywords(issue)
259 259 assigned_to = (k = get_keyword(:assigned_to, :override => true)) && find_user_from_keyword(k)
260 260 assigned_to = nil if assigned_to && !issue.assignable_users.include?(assigned_to)
261 261
262 262 attrs = {
263 263 'tracker_id' => (k = get_keyword(:tracker)) && issue.project.trackers.find_by_name(k).try(:id),
264 264 'status_id' => (k = get_keyword(:status)) && IssueStatus.find_by_name(k).try(:id),
265 265 'priority_id' => (k = get_keyword(:priority)) && IssuePriority.find_by_name(k).try(:id),
266 266 'category_id' => (k = get_keyword(:category)) && issue.project.issue_categories.find_by_name(k).try(:id),
267 267 'assigned_to_id' => assigned_to.try(:id),
268 268 'fixed_version_id' => (k = get_keyword(:fixed_version, :override => true)) && issue.project.shared_versions.find_by_name(k).try(:id),
269 269 'start_date' => get_keyword(:start_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
270 270 'due_date' => get_keyword(:due_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
271 271 'estimated_hours' => get_keyword(:estimated_hours, :override => true),
272 272 'done_ratio' => get_keyword(:done_ratio, :override => true, :format => '(\d|10)?0')
273 273 }.delete_if {|k, v| v.blank? }
274 274
275 275 if issue.new_record? && attrs['tracker_id'].nil?
276 276 attrs['tracker_id'] = issue.project.trackers.find(:first).try(:id)
277 277 end
278 278
279 279 attrs
280 280 end
281 281
282 282 # Returns a Hash of issue custom field values extracted from keywords in the email body
283 283 def custom_field_values_from_keywords(customized)
284 284 customized.custom_field_values.inject({}) do |h, v|
285 285 if value = get_keyword(v.custom_field.name, :override => true)
286 286 h[v.custom_field.id.to_s] = value
287 287 end
288 288 h
289 289 end
290 290 end
291 291
292 292 # Returns the text/plain part of the email
293 293 # If not found (eg. HTML-only email), returns the body with tags removed
294 294 def plain_text_body
295 295 return @plain_text_body unless @plain_text_body.nil?
296 296 parts = @email.parts.collect {|c| (c.respond_to?(:parts) && !c.parts.empty?) ? c.parts : c}.flatten
297 297 if parts.empty?
298 298 parts << @email
299 299 end
300 300 plain_text_part = parts.detect {|p| p.content_type == 'text/plain'}
301 301 if plain_text_part.nil?
302 302 # no text/plain part found, assuming html-only email
303 303 # strip html tags and remove doctype directive
304 304 @plain_text_body = strip_tags(@email.body.to_s)
305 305 @plain_text_body.gsub! %r{^<!DOCTYPE .*$}, ''
306 306 else
307 307 @plain_text_body = plain_text_part.body.to_s
308 308 end
309 309 @plain_text_body.strip!
310 310 @plain_text_body
311 311 end
312 312
313 313 def cleaned_up_text_body
314 314 cleanup_body(plain_text_body)
315 315 end
316 316
317 317 def self.full_sanitizer
318 318 @full_sanitizer ||= HTML::FullSanitizer.new
319 319 end
320 320
321 321 # Creates a user account for the +email+ sender
322 322 def self.create_user_from_email(email)
323 323 addr = email.from_addrs.to_a.first
324 324 if addr && !addr.spec.blank?
325 325 user = User.new
326 326 user.mail = addr.spec
327 327
328 328 names = addr.name.blank? ? addr.spec.gsub(/@.*$/, '').split('.') : addr.name.split
329 329 user.firstname = names.shift
330 330 user.lastname = names.join(' ')
331 331 user.lastname = '-' if user.lastname.blank?
332 332
333 333 user.login = user.mail
334 334 user.password = ActiveSupport::SecureRandom.hex(5)
335 335 user.language = Setting.default_language
336 336 user.save ? user : nil
337 337 end
338 338 end
339 339
340 340 private
341 341
342 342 # Removes the email body of text after the truncation configurations.
343 343 def cleanup_body(body)
344 344 delimiters = Setting.mail_handler_body_delimiters.to_s.split(/[\r\n]+/).reject(&:blank?).map {|s| Regexp.escape(s)}
345 345 unless delimiters.empty?
346 346 regex = Regexp.new("^[> ]*(#{ delimiters.join('|') })\s*[\r\n].*", Regexp::MULTILINE)
347 347 body = body.gsub(regex, '')
348 348 end
349 349 body.strip
350 350 end
351 351
352 352 def find_user_from_keyword(keyword)
353 353 user ||= User.find_by_mail(keyword)
354 354 user ||= User.find_by_login(keyword)
355 355 if user.nil? && keyword.match(/ /)
356 356 firstname, lastname = *(keyword.split) # "First Last Throwaway"
357 357 user ||= User.find_by_firstname_and_lastname(firstname, lastname)
358 358 end
359 359 user
360 360 end
361 361 end
General Comments 0
You need to be logged in to leave comments. Login now