annotate app/models/mail_handler.rb @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents fb9a13467253
children
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@1517 193 issue.start_date ||= Date.today if Setting.default_issue_start_date_to_creation_date?
Chris@441 194
Chris@0 195 # add To and Cc as watchers before saving so the watchers can reply to Redmine
Chris@0 196 add_watchers(issue)
Chris@0 197 issue.save!
Chris@0 198 add_attachments(issue)
Chris@1464 199 logger.info "MailHandler: issue ##{issue.id} created by #{user}" if logger
Chris@0 200 issue
Chris@0 201 end
Chris@441 202
Chris@0 203 # Adds a note to an existing issue
Chris@1115 204 def receive_issue_reply(issue_id, from_journal=nil)
Chris@0 205 issue = Issue.find_by_id(issue_id)
Chris@0 206 return unless issue
Chris@0 207 # check permission
Chris@0 208 unless @@handler_options[:no_permission_check]
Chris@1115 209 unless user.allowed_to?(:add_issue_notes, issue.project) ||
Chris@1115 210 user.allowed_to?(:edit_issues, issue.project)
Chris@1115 211 raise UnauthorizedAction
Chris@1115 212 end
Chris@0 213 end
Chris@441 214
Chris@119 215 # ignore CLI-supplied defaults for new issues
Chris@119 216 @@handler_options[:issue].clear
Chris@441 217
Chris@441 218 journal = issue.init_journal(user)
Chris@1115 219 if from_journal && from_journal.private_notes?
Chris@1115 220 # If the received email was a reply to a private note, make the added note private
Chris@1115 221 issue.private_notes = true
Chris@1115 222 end
chris@37 223 issue.safe_attributes = issue_attributes_from_keywords(issue)
chris@37 224 issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)}
Chris@441 225 journal.notes = cleaned_up_text_body
Chris@0 226 add_attachments(issue)
Chris@0 227 issue.save!
Chris@1464 228 if logger
Chris@1115 229 logger.info "MailHandler: issue ##{issue.id} updated by #{user}"
Chris@1115 230 end
Chris@0 231 journal
Chris@0 232 end
Chris@441 233
Chris@0 234 # Reply will be added to the issue
Chris@0 235 def receive_journal_reply(journal_id)
Chris@0 236 journal = Journal.find_by_id(journal_id)
Chris@0 237 if journal && journal.journalized_type == 'Issue'
Chris@1115 238 receive_issue_reply(journal.journalized_id, journal)
Chris@0 239 end
Chris@0 240 end
Chris@441 241
Chris@0 242 # Receives a reply to a forum message
Chris@0 243 def receive_message_reply(message_id)
Chris@0 244 message = Message.find_by_id(message_id)
Chris@0 245 if message
Chris@0 246 message = message.root
Chris@441 247
Chris@0 248 unless @@handler_options[:no_permission_check]
Chris@0 249 raise UnauthorizedAction unless user.allowed_to?(:add_messages, message.project)
Chris@0 250 end
Chris@441 251
Chris@0 252 if !message.locked?
Chris@1115 253 reply = Message.new(:subject => cleaned_up_subject.gsub(%r{^.*msg\d+\]}, '').strip,
Chris@0 254 :content => cleaned_up_text_body)
Chris@0 255 reply.author = user
Chris@0 256 reply.board = message.board
Chris@0 257 message.children << reply
Chris@0 258 add_attachments(reply)
Chris@0 259 reply
Chris@0 260 else
Chris@1464 261 if logger
Chris@1115 262 logger.info "MailHandler: ignoring reply from [#{sender_email}] to a locked topic"
Chris@1115 263 end
Chris@0 264 end
Chris@0 265 end
Chris@0 266 end
Chris@441 267
Chris@0 268 def add_attachments(obj)
Chris@909 269 if email.attachments && email.attachments.any?
Chris@0 270 email.attachments.each do |attachment|
Chris@1464 271 next unless accept_attachment?(attachment)
Chris@909 272 obj.attachments << Attachment.create(:container => obj,
Chris@1115 273 :file => attachment.decoded,
Chris@1294 274 :filename => attachment.filename,
Chris@0 275 :author => user,
Chris@1115 276 :content_type => attachment.mime_type)
Chris@0 277 end
Chris@0 278 end
Chris@0 279 end
Chris@441 280
Chris@1464 281 # Returns false if the +attachment+ of the incoming email should be ignored
Chris@1464 282 def accept_attachment?(attachment)
Chris@1464 283 @excluded ||= Setting.mail_handler_excluded_filenames.to_s.split(',').map(&:strip).reject(&:blank?)
Chris@1464 284 @excluded.each do |pattern|
Chris@1464 285 regexp = %r{\A#{Regexp.escape(pattern).gsub("\\*", ".*")}\z}i
Chris@1464 286 if attachment.filename.to_s =~ regexp
Chris@1464 287 logger.info "MailHandler: ignoring attachment #{attachment.filename} matching #{pattern}"
Chris@1464 288 return false
Chris@1464 289 end
Chris@1464 290 end
Chris@1464 291 true
Chris@1464 292 end
Chris@1464 293
Chris@0 294 # Adds To and Cc as watchers of the given object if the sender has the
Chris@0 295 # appropriate permission
Chris@0 296 def add_watchers(obj)
Chris@0 297 if user.allowed_to?("add_#{obj.class.name.underscore}_watchers".to_sym, obj.project)
Chris@0 298 addresses = [email.to, email.cc].flatten.compact.uniq.collect {|a| a.strip.downcase}
Chris@0 299 unless addresses.empty?
Chris@1517 300 User.active.where('LOWER(mail) IN (?)', addresses).each do |w|
Chris@1517 301 obj.add_watcher(w)
Chris@1517 302 end
Chris@0 303 end
Chris@0 304 end
Chris@0 305 end
Chris@441 306
Chris@0 307 def get_keyword(attr, options={})
Chris@0 308 @keywords ||= {}
Chris@0 309 if @keywords.has_key?(attr)
Chris@0 310 @keywords[attr]
Chris@0 311 else
Chris@0 312 @keywords[attr] = begin
Chris@1115 313 if (options[:override] || @@handler_options[:allow_override].include?(attr.to_s)) &&
Chris@1115 314 (v = extract_keyword!(plain_text_body, attr, options[:format]))
chris@37 315 v
Chris@0 316 elsif !@@handler_options[:issue][attr].blank?
Chris@0 317 @@handler_options[:issue][attr]
Chris@0 318 end
Chris@0 319 end
Chris@0 320 end
Chris@0 321 end
Chris@441 322
chris@37 323 # Destructively extracts the value for +attr+ in +text+
chris@37 324 # Returns nil if no matching keyword found
chris@37 325 def extract_keyword!(text, attr, format=nil)
chris@37 326 keys = [attr.to_s.humanize]
chris@37 327 if attr.is_a?(Symbol)
Chris@1115 328 if user && user.language.present?
Chris@1115 329 keys << l("field_#{attr}", :default => '', :locale => user.language)
Chris@1115 330 end
Chris@1115 331 if Setting.default_language.present?
Chris@1115 332 keys << l("field_#{attr}", :default => '', :locale => Setting.default_language)
Chris@1115 333 end
chris@37 334 end
chris@37 335 keys.reject! {|k| k.blank?}
chris@37 336 keys.collect! {|k| Regexp.escape(k)}
chris@37 337 format ||= '.+'
Chris@1115 338 keyword = nil
Chris@1115 339 regexp = /^(#{keys.join('|')})[ \t]*:[ \t]*(#{format})\s*$/i
Chris@1115 340 if m = text.match(regexp)
Chris@1115 341 keyword = m[2].strip
Chris@1115 342 text.gsub!(regexp, '')
Chris@1115 343 end
Chris@1115 344 keyword
chris@37 345 end
chris@37 346
chris@37 347 def target_project
chris@37 348 # TODO: other ways to specify project:
chris@37 349 # * parse the email To field
chris@37 350 # * specific project (eg. Setting.mail_handler_target_project)
chris@37 351 target = Project.find_by_identifier(get_keyword(:project))
Chris@1464 352 if target.nil?
Chris@1464 353 # Invalid project keyword, use the project specified as the default one
Chris@1464 354 default_project = @@handler_options[:issue][:project]
Chris@1464 355 if default_project.present?
Chris@1464 356 target = Project.find_by_identifier(default_project)
Chris@1464 357 end
Chris@1464 358 end
chris@37 359 raise MissingInformation.new('Unable to determine target project') if target.nil?
chris@37 360 target
chris@37 361 end
Chris@441 362
chris@37 363 # Returns a Hash of issue attributes extracted from keywords in the email body
chris@37 364 def issue_attributes_from_keywords(issue)
Chris@909 365 assigned_to = (k = get_keyword(:assigned_to, :override => true)) && find_assignee_from_keyword(k, issue)
Chris@441 366
Chris@119 367 attrs = {
Chris@507 368 'tracker_id' => (k = get_keyword(:tracker)) && issue.project.trackers.named(k).first.try(:id),
Chris@507 369 'status_id' => (k = get_keyword(:status)) && IssueStatus.named(k).first.try(:id),
Chris@507 370 'priority_id' => (k = get_keyword(:priority)) && IssuePriority.named(k).first.try(:id),
Chris@507 371 'category_id' => (k = get_keyword(:category)) && issue.project.issue_categories.named(k).first.try(:id),
chris@37 372 'assigned_to_id' => assigned_to.try(:id),
Chris@1115 373 'fixed_version_id' => (k = get_keyword(:fixed_version, :override => true)) &&
Chris@1115 374 issue.project.shared_versions.named(k).first.try(:id),
chris@37 375 'start_date' => get_keyword(:start_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
chris@37 376 'due_date' => get_keyword(:due_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
chris@37 377 'estimated_hours' => get_keyword(:estimated_hours, :override => true),
chris@37 378 'done_ratio' => get_keyword(:done_ratio, :override => true, :format => '(\d|10)?0')
chris@37 379 }.delete_if {|k, v| v.blank? }
Chris@441 380
Chris@119 381 if issue.new_record? && attrs['tracker_id'].nil?
Chris@1464 382 attrs['tracker_id'] = issue.project.trackers.first.try(:id)
Chris@119 383 end
Chris@441 384
Chris@119 385 attrs
chris@37 386 end
Chris@441 387
chris@37 388 # Returns a Hash of issue custom field values extracted from keywords in the email body
Chris@441 389 def custom_field_values_from_keywords(customized)
chris@37 390 customized.custom_field_values.inject({}) do |h, v|
Chris@1115 391 if keyword = get_keyword(v.custom_field.name, :override => true)
Chris@1115 392 h[v.custom_field.id.to_s] = v.custom_field.value_from_keyword(keyword, customized)
chris@37 393 end
chris@37 394 h
chris@37 395 end
chris@37 396 end
Chris@441 397
Chris@0 398 # Returns the text/plain part of the email
Chris@0 399 # If not found (eg. HTML-only email), returns the body with tags removed
Chris@0 400 def plain_text_body
Chris@0 401 return @plain_text_body unless @plain_text_body.nil?
Chris@1115 402
Chris@1464 403 parts = if (text_parts = email.all_parts.select {|p| p.mime_type == 'text/plain'}).present?
Chris@1464 404 text_parts
Chris@1464 405 elsif (html_parts = email.all_parts.select {|p| p.mime_type == 'text/html'}).present?
Chris@1464 406 html_parts
Chris@1464 407 else
Chris@1464 408 [email]
Chris@1464 409 end
Chris@1464 410
Chris@1464 411 parts.reject! do |part|
Chris@1464 412 part.header[:content_disposition].try(:disposition_type) == 'attachment'
Chris@1464 413 end
Chris@1464 414
Chris@1517 415 @plain_text_body = parts.map do |p|
Chris@1517 416 body_charset = p.charset.respond_to?(:force_encoding) ?
Chris@1517 417 Mail::RubyVer.pick_encoding(p.charset).to_s : p.charset
Chris@1517 418 Redmine::CodesetUtil.to_utf8(p.body.decoded, body_charset)
Chris@1517 419 end.join("\r\n")
Chris@1115 420
Chris@1115 421 # strip html tags and remove doctype directive
Chris@1464 422 if parts.any? {|p| p.mime_type == 'text/html'}
Chris@1464 423 @plain_text_body = strip_tags(@plain_text_body.strip)
Chris@1464 424 @plain_text_body.sub! %r{^<!DOCTYPE .*$}, ''
Chris@1464 425 end
Chris@1464 426
Chris@0 427 @plain_text_body
Chris@0 428 end
Chris@441 429
Chris@0 430 def cleaned_up_text_body
Chris@0 431 cleanup_body(plain_text_body)
Chris@0 432 end
Chris@0 433
Chris@1115 434 def cleaned_up_subject
Chris@1115 435 subject = email.subject.to_s
Chris@1115 436 subject.strip[0,255]
Chris@1115 437 end
Chris@1115 438
Chris@0 439 def self.full_sanitizer
Chris@0 440 @full_sanitizer ||= HTML::FullSanitizer.new
Chris@0 441 end
Chris@441 442
Chris@1115 443 def self.assign_string_attribute_with_limit(object, attribute, value, limit=nil)
Chris@1115 444 limit ||= object.class.columns_hash[attribute.to_s].limit || 255
Chris@909 445 value = value.to_s.slice(0, limit)
Chris@909 446 object.send("#{attribute}=", value)
Chris@909 447 end
Chris@909 448
Chris@909 449 # Returns a User from an email address and a full name
Chris@909 450 def self.new_user_from_attributes(email_address, fullname=nil)
Chris@909 451 user = User.new
Chris@909 452
Chris@909 453 # Truncating the email address would result in an invalid format
Chris@909 454 user.mail = email_address
Chris@1115 455 assign_string_attribute_with_limit(user, 'login', email_address, User::LOGIN_LENGTH_LIMIT)
Chris@909 456
Chris@909 457 names = fullname.blank? ? email_address.gsub(/@.*$/, '').split('.') : fullname.split
Chris@1464 458 assign_string_attribute_with_limit(user, 'firstname', names.shift, 30)
Chris@1464 459 assign_string_attribute_with_limit(user, 'lastname', names.join(' '), 30)
Chris@909 460 user.lastname = '-' if user.lastname.blank?
Chris@909 461 user.language = Setting.default_language
Chris@1464 462 user.generate_password = true
Chris@1464 463 user.mail_notification = 'only_my_events'
Chris@909 464
Chris@909 465 unless user.valid?
Chris@1115 466 user.login = "user#{Redmine::Utils.random_hex(6)}" unless user.errors[:login].blank?
Chris@1115 467 user.firstname = "-" unless user.errors[:firstname].blank?
Chris@1464 468 (puts user.errors[:lastname];user.lastname = "-") unless user.errors[:lastname].blank?
Chris@909 469 end
Chris@909 470
Chris@909 471 user
Chris@909 472 end
Chris@909 473
Chris@909 474 # Creates a User for the +email+ sender
Chris@909 475 # Returns the user or nil if it could not be created
Chris@1115 476 def create_user_from_email
Chris@1115 477 from = email.header['from'].to_s
Chris@1115 478 addr, name = from, nil
Chris@1115 479 if m = from.match(/^"?(.+?)"?\s+<(.+@.+)>$/)
Chris@1115 480 addr, name = m[2], m[1]
Chris@1115 481 end
Chris@1115 482 if addr.present?
Chris@1115 483 user = self.class.new_user_from_attributes(addr, name)
Chris@1464 484 if @@handler_options[:no_notification]
Chris@1464 485 user.mail_notification = 'none'
Chris@1464 486 end
Chris@909 487 if user.save
Chris@909 488 user
Chris@909 489 else
Chris@909 490 logger.error "MailHandler: failed to create User: #{user.errors.full_messages}" if logger
Chris@909 491 nil
Chris@909 492 end
Chris@909 493 else
Chris@909 494 logger.error "MailHandler: failed to create User: no FROM address found" if logger
Chris@909 495 nil
Chris@0 496 end
Chris@0 497 end
Chris@0 498
Chris@1464 499 # Adds the newly created user to default group
Chris@1464 500 def add_user_to_group(default_group)
Chris@1464 501 if default_group.present?
Chris@1464 502 default_group.split(',').each do |group_name|
Chris@1464 503 if group = Group.named(group_name).first
Chris@1464 504 group.users << @user
Chris@1464 505 elsif logger
Chris@1464 506 logger.warn "MailHandler: could not add user to [#{group_name}], group not found"
Chris@1464 507 end
Chris@1464 508 end
Chris@1464 509 end
Chris@1464 510 end
Chris@1464 511
Chris@0 512 # Removes the email body of text after the truncation configurations.
Chris@0 513 def cleanup_body(body)
Chris@0 514 delimiters = Setting.mail_handler_body_delimiters.to_s.split(/[\r\n]+/).reject(&:blank?).map {|s| Regexp.escape(s)}
Chris@0 515 unless delimiters.empty?
chris@37 516 regex = Regexp.new("^[> ]*(#{ delimiters.join('|') })\s*[\r\n].*", Regexp::MULTILINE)
Chris@0 517 body = body.gsub(regex, '')
Chris@0 518 end
Chris@0 519 body.strip
Chris@0 520 end
Chris@0 521
Chris@909 522 def find_assignee_from_keyword(keyword, issue)
Chris@909 523 keyword = keyword.to_s.downcase
Chris@909 524 assignable = issue.assignable_users
Chris@909 525 assignee = nil
Chris@1115 526 assignee ||= assignable.detect {|a|
Chris@1115 527 a.mail.to_s.downcase == keyword ||
Chris@1115 528 a.login.to_s.downcase == keyword
Chris@1115 529 }
Chris@909 530 if assignee.nil? && keyword.match(/ /)
Chris@0 531 firstname, lastname = *(keyword.split) # "First Last Throwaway"
Chris@1464 532 assignee ||= assignable.detect {|a|
Chris@1115 533 a.is_a?(User) && a.firstname.to_s.downcase == firstname &&
Chris@1115 534 a.lastname.to_s.downcase == lastname
Chris@1115 535 }
Chris@0 536 end
Chris@909 537 if assignee.nil?
Chris@1115 538 assignee ||= assignable.detect {|a| a.name.downcase == keyword}
Chris@909 539 end
Chris@909 540 assignee
Chris@0 541 end
Chris@0 542 end