annotate app/models/mail_handler.rb @ 1516:b450a9d58aed redmine-2.4

Update to Redmine SVN revision 13356 on 2.4-stable branch
author Chris Cannam
date Tue, 09 Sep 2014 09:28:31 +0100
parents e248c7af89ec
children dffacf8a6908
rev   line source
Chris@441 1 # Redmine - project management software
Chris@1494 2 # Copyright (C) 2006-2014 Jean-Philippe Lang
Chris@0 3 #
Chris@0 4 # This program is free software; you can redistribute it and/or
Chris@0 5 # modify it under the terms of the GNU General Public License
Chris@0 6 # as published by the Free Software Foundation; either version 2
Chris@0 7 # of the License, or (at your option) any later version.
Chris@441 8 #
Chris@0 9 # This program is distributed in the hope that it will be useful,
Chris@0 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
Chris@0 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Chris@0 12 # GNU General Public License for more details.
Chris@441 13 #
Chris@0 14 # You should have received a copy of the GNU General Public License
Chris@0 15 # along with this program; if not, write to the Free Software
Chris@0 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Chris@0 17
Chris@0 18 class MailHandler < ActionMailer::Base
Chris@0 19 include ActionView::Helpers::SanitizeHelper
chris@37 20 include Redmine::I18n
Chris@0 21
Chris@0 22 class UnauthorizedAction < StandardError; end
Chris@0 23 class MissingInformation < StandardError; end
Chris@441 24
Chris@0 25 attr_reader :email, :user
Chris@0 26
Chris@0 27 def self.receive(email, options={})
Chris@0 28 @@handler_options = options.dup
Chris@441 29
Chris@0 30 @@handler_options[:issue] ||= {}
Chris@441 31
Chris@1115 32 if @@handler_options[:allow_override].is_a?(String)
Chris@1115 33 @@handler_options[:allow_override] = @@handler_options[:allow_override].split(',').collect(&:strip)
Chris@1115 34 end
Chris@0 35 @@handler_options[:allow_override] ||= []
Chris@0 36 # Project needs to be overridable if not specified
Chris@0 37 @@handler_options[:allow_override] << 'project' unless @@handler_options[:issue].has_key?(:project)
Chris@0 38 # Status overridable by default
Chris@441 39 @@handler_options[:allow_override] << 'status' unless @@handler_options[:issue].has_key?(:status)
Chris@441 40
Chris@1464 41 @@handler_options[:no_account_notice] = (@@handler_options[:no_account_notice].to_s == '1')
Chris@1464 42 @@handler_options[:no_notification] = (@@handler_options[:no_notification].to_s == '1')
Chris@1464 43 @@handler_options[:no_permission_check] = (@@handler_options[:no_permission_check].to_s == '1')
Chris@1115 44
Chris@1115 45 email.force_encoding('ASCII-8BIT') if email.respond_to?(:force_encoding)
Chris@1115 46 super(email)
Chris@0 47 end
Chris@441 48
Chris@1464 49 # Extracts MailHandler options from environment variables
Chris@1464 50 # Use when receiving emails with rake tasks
Chris@1464 51 def self.extract_options_from_env(env)
Chris@1464 52 options = {:issue => {}}
Chris@1464 53 %w(project status tracker category priority).each do |option|
Chris@1464 54 options[:issue][option.to_sym] = env[option] if env[option]
Chris@1464 55 end
Chris@1464 56 %w(allow_override unknown_user no_permission_check no_account_notice default_group).each do |option|
Chris@1464 57 options[option.to_sym] = env[option] if env[option]
Chris@1464 58 end
Chris@1464 59 options
Chris@1464 60 end
Chris@1464 61
Chris@1115 62 def logger
Chris@1115 63 Rails.logger
Chris@1115 64 end
Chris@1115 65
Chris@1115 66 cattr_accessor :ignored_emails_headers
Chris@1115 67 @@ignored_emails_headers = {
Chris@1115 68 'X-Auto-Response-Suppress' => 'oof',
Chris@1115 69 'Auto-Submitted' => /^auto-/
Chris@1115 70 }
Chris@1115 71
Chris@0 72 # Processes incoming emails
Chris@0 73 # Returns the created object (eg. an issue, a message) or false
Chris@0 74 def receive(email)
Chris@0 75 @email = email
Chris@0 76 sender_email = email.from.to_a.first.to_s.strip
Chris@0 77 # Ignore emails received from the application emission address to avoid hell cycles
Chris@0 78 if sender_email.downcase == Setting.mail_from.to_s.strip.downcase
Chris@1464 79 if logger
Chris@1115 80 logger.info "MailHandler: ignoring email from Redmine emission address [#{sender_email}]"
Chris@1115 81 end
Chris@0 82 return false
Chris@0 83 end
Chris@1115 84 # Ignore auto generated emails
Chris@1115 85 self.class.ignored_emails_headers.each do |key, ignored_value|
Chris@1115 86 value = email.header[key]
Chris@1115 87 if value
Chris@1115 88 value = value.to_s.downcase
Chris@1115 89 if (ignored_value.is_a?(Regexp) && value.match(ignored_value)) || value == ignored_value
Chris@1464 90 if logger
Chris@1115 91 logger.info "MailHandler: ignoring email with #{key}:#{value} header"
Chris@1115 92 end
Chris@1115 93 return false
Chris@1115 94 end
Chris@1115 95 end
Chris@1115 96 end
Chris@0 97 @user = User.find_by_mail(sender_email) if sender_email.present?
Chris@0 98 if @user && !@user.active?
Chris@1464 99 if logger
Chris@1115 100 logger.info "MailHandler: ignoring email from non-active user [#{@user.login}]"
Chris@1115 101 end
Chris@0 102 return false
Chris@0 103 end
Chris@0 104 if @user.nil?
Chris@0 105 # Email was submitted by an unknown user
Chris@0 106 case @@handler_options[:unknown_user]
Chris@0 107 when 'accept'
Chris@0 108 @user = User.anonymous
Chris@0 109 when 'create'
Chris@1115 110 @user = create_user_from_email
Chris@0 111 if @user
Chris@1464 112 if logger
Chris@1115 113 logger.info "MailHandler: [#{@user.login}] account created"
Chris@1115 114 end
Chris@1464 115 add_user_to_group(@@handler_options[:default_group])
Chris@1464 116 unless @@handler_options[:no_account_notice]
Chris@1464 117 Mailer.account_information(@user, @user.password).deliver
Chris@1464 118 end
Chris@0 119 else
Chris@1464 120 if logger
Chris@1115 121 logger.error "MailHandler: could not create account for [#{sender_email}]"
Chris@1115 122 end
Chris@0 123 return false
Chris@0 124 end
Chris@0 125 else
Chris@0 126 # Default behaviour, emails from unknown users are ignored
Chris@1464 127 if logger
Chris@1464 128 logger.info "MailHandler: ignoring email from unknown user [#{sender_email}]"
Chris@1115 129 end
Chris@0 130 return false
Chris@0 131 end
Chris@0 132 end
Chris@0 133 User.current = @user
Chris@0 134 dispatch
Chris@0 135 end
Chris@441 136
Chris@0 137 private
Chris@0 138
Chris@1464 139 MESSAGE_ID_RE = %r{^<?redmine\.([a-z0-9_]+)\-(\d+)\.\d+(\.[a-f0-9]+)?@}
Chris@0 140 ISSUE_REPLY_SUBJECT_RE = %r{\[[^\]]*#(\d+)\]}
Chris@0 141 MESSAGE_REPLY_SUBJECT_RE = %r{\[[^\]]*msg(\d+)\]}
Chris@441 142
Chris@0 143 def dispatch
Chris@0 144 headers = [email.in_reply_to, email.references].flatten.compact
Chris@1115 145 subject = email.subject.to_s
Chris@0 146 if headers.detect {|h| h.to_s =~ MESSAGE_ID_RE}
Chris@0 147 klass, object_id = $1, $2.to_i
Chris@0 148 method_name = "receive_#{klass}_reply"
Chris@0 149 if self.class.private_instance_methods.collect(&:to_s).include?(method_name)
Chris@0 150 send method_name, object_id
Chris@0 151 else
Chris@0 152 # ignoring it
Chris@0 153 end
Chris@1115 154 elsif m = subject.match(ISSUE_REPLY_SUBJECT_RE)
Chris@0 155 receive_issue_reply(m[1].to_i)
Chris@1115 156 elsif m = subject.match(MESSAGE_REPLY_SUBJECT_RE)
Chris@0 157 receive_message_reply(m[1].to_i)
Chris@0 158 else
Chris@245 159 dispatch_to_default
Chris@0 160 end
Chris@0 161 rescue ActiveRecord::RecordInvalid => e
Chris@0 162 # TODO: send a email to the user
Chris@0 163 logger.error e.message if logger
Chris@0 164 false
Chris@0 165 rescue MissingInformation => e
Chris@0 166 logger.error "MailHandler: missing information from #{user}: #{e.message}" if logger
Chris@0 167 false
Chris@0 168 rescue UnauthorizedAction => e
Chris@0 169 logger.error "MailHandler: unauthorized attempt from #{user}" if logger
Chris@0 170 false
Chris@0 171 end
Chris@245 172
Chris@245 173 def dispatch_to_default
Chris@245 174 receive_issue
Chris@245 175 end
Chris@441 176
Chris@0 177 # Creates a new issue
Chris@0 178 def receive_issue
Chris@0 179 project = target_project
Chris@0 180 # check permission
Chris@0 181 unless @@handler_options[:no_permission_check]
Chris@0 182 raise UnauthorizedAction unless user.allowed_to?(:add_issues, project)
Chris@0 183 end
Chris@0 184
chris@37 185 issue = Issue.new(:author => user, :project => project)
chris@37 186 issue.safe_attributes = issue_attributes_from_keywords(issue)
chris@37 187 issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)}
Chris@1115 188 issue.subject = cleaned_up_subject
Chris@0 189 if issue.subject.blank?
Chris@0 190 issue.subject = '(no subject)'
Chris@0 191 end
Chris@0 192 issue.description = cleaned_up_text_body
Chris@441 193
Chris@0 194 # add To and Cc as watchers before saving so the watchers can reply to Redmine
Chris@0 195 add_watchers(issue)
Chris@0 196 issue.save!
Chris@0 197 add_attachments(issue)
Chris@1464 198 logger.info "MailHandler: issue ##{issue.id} created by #{user}" if logger
Chris@0 199 issue
Chris@0 200 end
Chris@441 201
Chris@0 202 # Adds a note to an existing issue
Chris@1115 203 def receive_issue_reply(issue_id, from_journal=nil)
Chris@0 204 issue = Issue.find_by_id(issue_id)
Chris@0 205 return unless issue
Chris@0 206 # check permission
Chris@0 207 unless @@handler_options[:no_permission_check]
Chris@1115 208 unless user.allowed_to?(:add_issue_notes, issue.project) ||
Chris@1115 209 user.allowed_to?(:edit_issues, issue.project)
Chris@1115 210 raise UnauthorizedAction
Chris@1115 211 end
Chris@0 212 end
Chris@441 213
Chris@119 214 # ignore CLI-supplied defaults for new issues
Chris@119 215 @@handler_options[:issue].clear
Chris@441 216
Chris@441 217 journal = issue.init_journal(user)
Chris@1115 218 if from_journal && from_journal.private_notes?
Chris@1115 219 # If the received email was a reply to a private note, make the added note private
Chris@1115 220 issue.private_notes = true
Chris@1115 221 end
chris@37 222 issue.safe_attributes = issue_attributes_from_keywords(issue)
chris@37 223 issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)}
Chris@441 224 journal.notes = cleaned_up_text_body
Chris@0 225 add_attachments(issue)
Chris@0 226 issue.save!
Chris@1464 227 if logger
Chris@1115 228 logger.info "MailHandler: issue ##{issue.id} updated by #{user}"
Chris@1115 229 end
Chris@0 230 journal
Chris@0 231 end
Chris@441 232
Chris@0 233 # Reply will be added to the issue
Chris@0 234 def receive_journal_reply(journal_id)
Chris@0 235 journal = Journal.find_by_id(journal_id)
Chris@0 236 if journal && journal.journalized_type == 'Issue'
Chris@1115 237 receive_issue_reply(journal.journalized_id, journal)
Chris@0 238 end
Chris@0 239 end
Chris@441 240
Chris@0 241 # Receives a reply to a forum message
Chris@0 242 def receive_message_reply(message_id)
Chris@0 243 message = Message.find_by_id(message_id)
Chris@0 244 if message
Chris@0 245 message = message.root
Chris@441 246
Chris@0 247 unless @@handler_options[:no_permission_check]
Chris@0 248 raise UnauthorizedAction unless user.allowed_to?(:add_messages, message.project)
Chris@0 249 end
Chris@441 250
Chris@0 251 if !message.locked?
Chris@1115 252 reply = Message.new(:subject => cleaned_up_subject.gsub(%r{^.*msg\d+\]}, '').strip,
Chris@0 253 :content => cleaned_up_text_body)
Chris@0 254 reply.author = user
Chris@0 255 reply.board = message.board
Chris@0 256 message.children << reply
Chris@0 257 add_attachments(reply)
Chris@0 258 reply
Chris@0 259 else
Chris@1464 260 if logger
Chris@1115 261 logger.info "MailHandler: ignoring reply from [#{sender_email}] to a locked topic"
Chris@1115 262 end
Chris@0 263 end
Chris@0 264 end
Chris@0 265 end
Chris@441 266
Chris@0 267 def add_attachments(obj)
Chris@909 268 if email.attachments && email.attachments.any?
Chris@0 269 email.attachments.each do |attachment|
Chris@1464 270 next unless accept_attachment?(attachment)
Chris@909 271 obj.attachments << Attachment.create(:container => obj,
Chris@1115 272 :file => attachment.decoded,
Chris@1294 273 :filename => attachment.filename,
Chris@0 274 :author => user,
Chris@1115 275 :content_type => attachment.mime_type)
Chris@0 276 end
Chris@0 277 end
Chris@0 278 end
Chris@441 279
Chris@1464 280 # Returns false if the +attachment+ of the incoming email should be ignored
Chris@1464 281 def accept_attachment?(attachment)
Chris@1464 282 @excluded ||= Setting.mail_handler_excluded_filenames.to_s.split(',').map(&:strip).reject(&:blank?)
Chris@1464 283 @excluded.each do |pattern|
Chris@1464 284 regexp = %r{\A#{Regexp.escape(pattern).gsub("\\*", ".*")}\z}i
Chris@1464 285 if attachment.filename.to_s =~ regexp
Chris@1464 286 logger.info "MailHandler: ignoring attachment #{attachment.filename} matching #{pattern}"
Chris@1464 287 return false
Chris@1464 288 end
Chris@1464 289 end
Chris@1464 290 true
Chris@1464 291 end
Chris@1464 292
Chris@0 293 # Adds To and Cc as watchers of the given object if the sender has the
Chris@0 294 # appropriate permission
Chris@0 295 def add_watchers(obj)
Chris@0 296 if user.allowed_to?("add_#{obj.class.name.underscore}_watchers".to_sym, obj.project)
Chris@0 297 addresses = [email.to, email.cc].flatten.compact.uniq.collect {|a| a.strip.downcase}
Chris@0 298 unless addresses.empty?
Chris@1464 299 watchers = User.active.where('LOWER(mail) IN (?)', addresses).all
Chris@0 300 watchers.each {|w| obj.add_watcher(w)}
Chris@0 301 end
Chris@0 302 end
Chris@0 303 end
Chris@441 304
Chris@0 305 def get_keyword(attr, options={})
Chris@0 306 @keywords ||= {}
Chris@0 307 if @keywords.has_key?(attr)
Chris@0 308 @keywords[attr]
Chris@0 309 else
Chris@0 310 @keywords[attr] = begin
Chris@1115 311 if (options[:override] || @@handler_options[:allow_override].include?(attr.to_s)) &&
Chris@1115 312 (v = extract_keyword!(plain_text_body, attr, options[:format]))
chris@37 313 v
Chris@0 314 elsif !@@handler_options[:issue][attr].blank?
Chris@0 315 @@handler_options[:issue][attr]
Chris@0 316 end
Chris@0 317 end
Chris@0 318 end
Chris@0 319 end
Chris@441 320
chris@37 321 # Destructively extracts the value for +attr+ in +text+
chris@37 322 # Returns nil if no matching keyword found
chris@37 323 def extract_keyword!(text, attr, format=nil)
chris@37 324 keys = [attr.to_s.humanize]
chris@37 325 if attr.is_a?(Symbol)
Chris@1115 326 if user && user.language.present?
Chris@1115 327 keys << l("field_#{attr}", :default => '', :locale => user.language)
Chris@1115 328 end
Chris@1115 329 if Setting.default_language.present?
Chris@1115 330 keys << l("field_#{attr}", :default => '', :locale => Setting.default_language)
Chris@1115 331 end
chris@37 332 end
chris@37 333 keys.reject! {|k| k.blank?}
chris@37 334 keys.collect! {|k| Regexp.escape(k)}
chris@37 335 format ||= '.+'
Chris@1115 336 keyword = nil
Chris@1115 337 regexp = /^(#{keys.join('|')})[ \t]*:[ \t]*(#{format})\s*$/i
Chris@1115 338 if m = text.match(regexp)
Chris@1115 339 keyword = m[2].strip
Chris@1115 340 text.gsub!(regexp, '')
Chris@1115 341 end
Chris@1115 342 keyword
chris@37 343 end
chris@37 344
chris@37 345 def target_project
chris@37 346 # TODO: other ways to specify project:
chris@37 347 # * parse the email To field
chris@37 348 # * specific project (eg. Setting.mail_handler_target_project)
chris@37 349 target = Project.find_by_identifier(get_keyword(:project))
Chris@1464 350 if target.nil?
Chris@1464 351 # Invalid project keyword, use the project specified as the default one
Chris@1464 352 default_project = @@handler_options[:issue][:project]
Chris@1464 353 if default_project.present?
Chris@1464 354 target = Project.find_by_identifier(default_project)
Chris@1464 355 end
Chris@1464 356 end
chris@37 357 raise MissingInformation.new('Unable to determine target project') if target.nil?
chris@37 358 target
chris@37 359 end
Chris@441 360
chris@37 361 # Returns a Hash of issue attributes extracted from keywords in the email body
chris@37 362 def issue_attributes_from_keywords(issue)
Chris@909 363 assigned_to = (k = get_keyword(:assigned_to, :override => true)) && find_assignee_from_keyword(k, issue)
Chris@441 364
Chris@119 365 attrs = {
Chris@507 366 'tracker_id' => (k = get_keyword(:tracker)) && issue.project.trackers.named(k).first.try(:id),
Chris@507 367 'status_id' => (k = get_keyword(:status)) && IssueStatus.named(k).first.try(:id),
Chris@507 368 'priority_id' => (k = get_keyword(:priority)) && IssuePriority.named(k).first.try(:id),
Chris@507 369 'category_id' => (k = get_keyword(:category)) && issue.project.issue_categories.named(k).first.try(:id),
chris@37 370 'assigned_to_id' => assigned_to.try(:id),
Chris@1115 371 'fixed_version_id' => (k = get_keyword(:fixed_version, :override => true)) &&
Chris@1115 372 issue.project.shared_versions.named(k).first.try(:id),
chris@37 373 'start_date' => get_keyword(:start_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
chris@37 374 'due_date' => get_keyword(:due_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
chris@37 375 'estimated_hours' => get_keyword(:estimated_hours, :override => true),
chris@37 376 'done_ratio' => get_keyword(:done_ratio, :override => true, :format => '(\d|10)?0')
chris@37 377 }.delete_if {|k, v| v.blank? }
Chris@441 378
Chris@119 379 if issue.new_record? && attrs['tracker_id'].nil?
Chris@1464 380 attrs['tracker_id'] = issue.project.trackers.first.try(:id)
Chris@119 381 end
Chris@441 382
Chris@119 383 attrs
chris@37 384 end
Chris@441 385
chris@37 386 # Returns a Hash of issue custom field values extracted from keywords in the email body
Chris@441 387 def custom_field_values_from_keywords(customized)
chris@37 388 customized.custom_field_values.inject({}) do |h, v|
Chris@1115 389 if keyword = get_keyword(v.custom_field.name, :override => true)
Chris@1115 390 h[v.custom_field.id.to_s] = v.custom_field.value_from_keyword(keyword, customized)
chris@37 391 end
chris@37 392 h
chris@37 393 end
chris@37 394 end
Chris@441 395
Chris@0 396 # Returns the text/plain part of the email
Chris@0 397 # If not found (eg. HTML-only email), returns the body with tags removed
Chris@0 398 def plain_text_body
Chris@0 399 return @plain_text_body unless @plain_text_body.nil?
Chris@1115 400
Chris@1464 401 parts = if (text_parts = email.all_parts.select {|p| p.mime_type == 'text/plain'}).present?
Chris@1464 402 text_parts
Chris@1464 403 elsif (html_parts = email.all_parts.select {|p| p.mime_type == 'text/html'}).present?
Chris@1464 404 html_parts
Chris@1464 405 else
Chris@1464 406 [email]
Chris@1464 407 end
Chris@1464 408
Chris@1464 409 parts.reject! do |part|
Chris@1464 410 part.header[:content_disposition].try(:disposition_type) == 'attachment'
Chris@1464 411 end
Chris@1464 412
Chris@1464 413 @plain_text_body = parts.map {|p| Redmine::CodesetUtil.to_utf8(p.body.decoded, p.charset)}.join("\r\n")
Chris@1115 414
Chris@1115 415 # strip html tags and remove doctype directive
Chris@1464 416 if parts.any? {|p| p.mime_type == 'text/html'}
Chris@1464 417 @plain_text_body = strip_tags(@plain_text_body.strip)
Chris@1464 418 @plain_text_body.sub! %r{^<!DOCTYPE .*$}, ''
Chris@1464 419 end
Chris@1464 420
Chris@0 421 @plain_text_body
Chris@0 422 end
Chris@441 423
Chris@0 424 def cleaned_up_text_body
Chris@0 425 cleanup_body(plain_text_body)
Chris@0 426 end
Chris@0 427
Chris@1115 428 def cleaned_up_subject
Chris@1115 429 subject = email.subject.to_s
Chris@1115 430 subject.strip[0,255]
Chris@1115 431 end
Chris@1115 432
Chris@0 433 def self.full_sanitizer
Chris@0 434 @full_sanitizer ||= HTML::FullSanitizer.new
Chris@0 435 end
Chris@441 436
Chris@1115 437 def self.assign_string_attribute_with_limit(object, attribute, value, limit=nil)
Chris@1115 438 limit ||= object.class.columns_hash[attribute.to_s].limit || 255
Chris@909 439 value = value.to_s.slice(0, limit)
Chris@909 440 object.send("#{attribute}=", value)
Chris@909 441 end
Chris@909 442
Chris@909 443 # Returns a User from an email address and a full name
Chris@909 444 def self.new_user_from_attributes(email_address, fullname=nil)
Chris@909 445 user = User.new
Chris@909 446
Chris@909 447 # Truncating the email address would result in an invalid format
Chris@909 448 user.mail = email_address
Chris@1115 449 assign_string_attribute_with_limit(user, 'login', email_address, User::LOGIN_LENGTH_LIMIT)
Chris@909 450
Chris@909 451 names = fullname.blank? ? email_address.gsub(/@.*$/, '').split('.') : fullname.split
Chris@1464 452 assign_string_attribute_with_limit(user, 'firstname', names.shift, 30)
Chris@1464 453 assign_string_attribute_with_limit(user, 'lastname', names.join(' '), 30)
Chris@909 454 user.lastname = '-' if user.lastname.blank?
Chris@909 455 user.language = Setting.default_language
Chris@1464 456 user.generate_password = true
Chris@1464 457 user.mail_notification = 'only_my_events'
Chris@909 458
Chris@909 459 unless user.valid?
Chris@1115 460 user.login = "user#{Redmine::Utils.random_hex(6)}" unless user.errors[:login].blank?
Chris@1115 461 user.firstname = "-" unless user.errors[:firstname].blank?
Chris@1464 462 (puts user.errors[:lastname];user.lastname = "-") unless user.errors[:lastname].blank?
Chris@909 463 end
Chris@909 464
Chris@909 465 user
Chris@909 466 end
Chris@909 467
Chris@909 468 # Creates a User for the +email+ sender
Chris@909 469 # Returns the user or nil if it could not be created
Chris@1115 470 def create_user_from_email
Chris@1115 471 from = email.header['from'].to_s
Chris@1115 472 addr, name = from, nil
Chris@1115 473 if m = from.match(/^"?(.+?)"?\s+<(.+@.+)>$/)
Chris@1115 474 addr, name = m[2], m[1]
Chris@1115 475 end
Chris@1115 476 if addr.present?
Chris@1115 477 user = self.class.new_user_from_attributes(addr, name)
Chris@1464 478 if @@handler_options[:no_notification]
Chris@1464 479 user.mail_notification = 'none'
Chris@1464 480 end
Chris@909 481 if user.save
Chris@909 482 user
Chris@909 483 else
Chris@909 484 logger.error "MailHandler: failed to create User: #{user.errors.full_messages}" if logger
Chris@909 485 nil
Chris@909 486 end
Chris@909 487 else
Chris@909 488 logger.error "MailHandler: failed to create User: no FROM address found" if logger
Chris@909 489 nil
Chris@0 490 end
Chris@0 491 end
Chris@0 492
Chris@1464 493 # Adds the newly created user to default group
Chris@1464 494 def add_user_to_group(default_group)
Chris@1464 495 if default_group.present?
Chris@1464 496 default_group.split(',').each do |group_name|
Chris@1464 497 if group = Group.named(group_name).first
Chris@1464 498 group.users << @user
Chris@1464 499 elsif logger
Chris@1464 500 logger.warn "MailHandler: could not add user to [#{group_name}], group not found"
Chris@1464 501 end
Chris@1464 502 end
Chris@1464 503 end
Chris@1464 504 end
Chris@1464 505
Chris@0 506 # Removes the email body of text after the truncation configurations.
Chris@0 507 def cleanup_body(body)
Chris@0 508 delimiters = Setting.mail_handler_body_delimiters.to_s.split(/[\r\n]+/).reject(&:blank?).map {|s| Regexp.escape(s)}
Chris@0 509 unless delimiters.empty?
chris@37 510 regex = Regexp.new("^[> ]*(#{ delimiters.join('|') })\s*[\r\n].*", Regexp::MULTILINE)
Chris@0 511 body = body.gsub(regex, '')
Chris@0 512 end
Chris@0 513 body.strip
Chris@0 514 end
Chris@0 515
Chris@909 516 def find_assignee_from_keyword(keyword, issue)
Chris@909 517 keyword = keyword.to_s.downcase
Chris@909 518 assignable = issue.assignable_users
Chris@909 519 assignee = nil
Chris@1115 520 assignee ||= assignable.detect {|a|
Chris@1115 521 a.mail.to_s.downcase == keyword ||
Chris@1115 522 a.login.to_s.downcase == keyword
Chris@1115 523 }
Chris@909 524 if assignee.nil? && keyword.match(/ /)
Chris@0 525 firstname, lastname = *(keyword.split) # "First Last Throwaway"
Chris@1464 526 assignee ||= assignable.detect {|a|
Chris@1115 527 a.is_a?(User) && a.firstname.to_s.downcase == firstname &&
Chris@1115 528 a.lastname.to_s.downcase == lastname
Chris@1115 529 }
Chris@0 530 end
Chris@909 531 if assignee.nil?
Chris@1115 532 assignee ||= assignable.detect {|a| a.name.downcase == keyword}
Chris@909 533 end
Chris@909 534 assignee
Chris@0 535 end
Chris@0 536 end