To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / models / mail_handler.rb @ 440:6253d777aa12

History | View | Annotate | Download (13.1 KB)

1
# redMine - project management software
2
# Copyright (C) 2006-2007  Jean-Philippe Lang
3
#
4
# This program is free software; you can redistribute it and/or
5
# modify it under the terms of the GNU General Public License
6
# as published by the Free Software Foundation; either version 2
7
# of the License, or (at your option) any later version.
8
# 
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
# GNU General Public License for more details.
13
# 
14
# You should have received a copy of the GNU General Public License
15
# along with this program; if not, write to the Free Software
16
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17

    
18
class MailHandler < ActionMailer::Base
19
  include ActionView::Helpers::SanitizeHelper
20
  include Redmine::I18n
21

    
22
  class UnauthorizedAction < StandardError; end
23
  class MissingInformation < StandardError; end
24
  
25
  attr_reader :email, :user
26

    
27
  def self.receive(email, options={})
28
    @@handler_options = options.dup
29
    
30
    @@handler_options[:issue] ||= {}
31
    
32
    @@handler_options[:allow_override] = @@handler_options[:allow_override].split(',').collect(&:strip) if @@handler_options[:allow_override].is_a?(String)
33
    @@handler_options[:allow_override] ||= []
34
    # Project needs to be overridable if not specified
35
    @@handler_options[:allow_override] << 'project' unless @@handler_options[:issue].has_key?(:project)
36
    # Status overridable by default
37
    @@handler_options[:allow_override] << 'status' unless @@handler_options[:issue].has_key?(:status)    
38
    
39
    @@handler_options[:no_permission_check] = (@@handler_options[:no_permission_check].to_s == '1' ? true : false)
40
    super email
41
  end
42
  
43
  # Processes incoming emails
44
  # Returns the created object (eg. an issue, a message) or false
45
  def receive(email)
46
    @email = email
47
    sender_email = email.from.to_a.first.to_s.strip
48
    # Ignore emails received from the application emission address to avoid hell cycles
49
    if sender_email.downcase == Setting.mail_from.to_s.strip.downcase
50
      logger.info  "MailHandler: ignoring email from Redmine emission address [#{sender_email}]" if logger && logger.info
51
      return false
52
    end
53
    @user = User.find_by_mail(sender_email) if sender_email.present?
54
    if @user && !@user.active?
55
      logger.info  "MailHandler: ignoring email from non-active user [#{@user.login}]" if logger && logger.info
56
      return false
57
    end
58
    if @user.nil?
59
      # Email was submitted by an unknown user
60
      case @@handler_options[:unknown_user]
61
      when 'accept'
62
        @user = User.anonymous
63
      when 'create'
64
        @user = MailHandler.create_user_from_email(email)
65
        if @user
66
          logger.info "MailHandler: [#{@user.login}] account created" if logger && logger.info
67
          Mailer.deliver_account_information(@user, @user.password)
68
        else
69
          logger.error "MailHandler: could not create account for [#{sender_email}]" if logger && logger.error
70
          return false
71
        end
72
      else
73
        # Default behaviour, emails from unknown users are ignored
74
        logger.info  "MailHandler: ignoring email from unknown user [#{sender_email}]" if logger && logger.info
75
        return false
76
      end
77
    end
78
    User.current = @user
79
    dispatch
80
  end
81
  
82
  private
83

    
84
  MESSAGE_ID_RE = %r{^<redmine\.([a-z0-9_]+)\-(\d+)\.\d+@}
85
  ISSUE_REPLY_SUBJECT_RE = %r{\[[^\]]*#(\d+)\]}
86
  MESSAGE_REPLY_SUBJECT_RE = %r{\[[^\]]*msg(\d+)\]}
87
  
88
  def dispatch
89
    headers = [email.in_reply_to, email.references].flatten.compact
90
    if headers.detect {|h| h.to_s =~ MESSAGE_ID_RE}
91
      klass, object_id = $1, $2.to_i
92
      method_name = "receive_#{klass}_reply"
93
      if self.class.private_instance_methods.collect(&:to_s).include?(method_name)
94
        send method_name, object_id
95
      else
96
        # ignoring it
97
      end
98
    elsif m = email.subject.match(ISSUE_REPLY_SUBJECT_RE)
99
      receive_issue_reply(m[1].to_i)
100
    elsif m = email.subject.match(MESSAGE_REPLY_SUBJECT_RE)
101
      receive_message_reply(m[1].to_i)
102
    else
103
      receive_issue
104
    end
105
  rescue ActiveRecord::RecordInvalid => e
106
    # TODO: send a email to the user
107
    logger.error e.message if logger
108
    false
109
  rescue MissingInformation => e
110
    logger.error "MailHandler: missing information from #{user}: #{e.message}" if logger
111
    false
112
  rescue UnauthorizedAction => e
113
    logger.error "MailHandler: unauthorized attempt from #{user}" if logger
114
    false
115
  end
116
  
117
  # Creates a new issue
118
  def receive_issue
119
    project = target_project
120
    # check permission
121
    unless @@handler_options[:no_permission_check]
122
      raise UnauthorizedAction unless user.allowed_to?(:add_issues, project)
123
    end
124

    
125
    issue = Issue.new(:author => user, :project => project)
126
    issue.safe_attributes = issue_attributes_from_keywords(issue)
127
    issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)}
128
    issue.subject = email.subject.to_s.chomp[0,255]
129
    if issue.subject.blank?
130
      issue.subject = '(no subject)'
131
    end
132
    issue.description = cleaned_up_text_body
133
    
134
    # add To and Cc as watchers before saving so the watchers can reply to Redmine
135
    add_watchers(issue)
136
    issue.save!
137
    add_attachments(issue)
138
    logger.info "MailHandler: issue ##{issue.id} created by #{user}" if logger && logger.info
139
    issue
140
  end
141
  
142
  # Adds a note to an existing issue
143
  def receive_issue_reply(issue_id)
144
    issue = Issue.find_by_id(issue_id)
145
    return unless issue
146
    # check permission
147
    unless @@handler_options[:no_permission_check]
148
      raise UnauthorizedAction unless user.allowed_to?(:add_issue_notes, issue.project) || user.allowed_to?(:edit_issues, issue.project)
149
    end
150
    
151
    journal = issue.init_journal(user, cleaned_up_text_body)
152
    issue.safe_attributes = issue_attributes_from_keywords(issue)
153
    issue.safe_attributes = {'custom_field_values' => custom_field_values_from_keywords(issue)}
154
    add_attachments(issue)
155
    issue.save!
156
    logger.info "MailHandler: issue ##{issue.id} updated by #{user}" if logger && logger.info
157
    journal
158
  end
159
  
160
  # Reply will be added to the issue
161
  def receive_journal_reply(journal_id)
162
    journal = Journal.find_by_id(journal_id)
163
    if journal && journal.journalized_type == 'Issue'
164
      receive_issue_reply(journal.journalized_id)
165
    end
166
  end
167
  
168
  # Receives a reply to a forum message
169
  def receive_message_reply(message_id)
170
    message = Message.find_by_id(message_id)
171
    if message
172
      message = message.root
173
      
174
      unless @@handler_options[:no_permission_check]
175
        raise UnauthorizedAction unless user.allowed_to?(:add_messages, message.project)
176
      end
177
      
178
      if !message.locked?
179
        reply = Message.new(:subject => email.subject.gsub(%r{^.*msg\d+\]}, '').strip,
180
                            :content => cleaned_up_text_body)
181
        reply.author = user
182
        reply.board = message.board
183
        message.children << reply
184
        add_attachments(reply)
185
        reply
186
      else
187
        logger.info "MailHandler: ignoring reply from [#{sender_email}] to a locked topic" if logger && logger.info
188
      end
189
    end
190
  end
191
  
192
  def add_attachments(obj)
193
    if email.has_attachments?
194
      email.attachments.each do |attachment|
195
        Attachment.create(:container => obj,
196
                          :file => attachment,
197
                          :author => user,
198
                          :content_type => attachment.content_type)
199
      end
200
    end
201
  end
202
  
203
  # Adds To and Cc as watchers of the given object if the sender has the
204
  # appropriate permission
205
  def add_watchers(obj)
206
    if user.allowed_to?("add_#{obj.class.name.underscore}_watchers".to_sym, obj.project)
207
      addresses = [email.to, email.cc].flatten.compact.uniq.collect {|a| a.strip.downcase}
208
      unless addresses.empty?
209
        watchers = User.active.find(:all, :conditions => ['LOWER(mail) IN (?)', addresses])
210
        watchers.each {|w| obj.add_watcher(w)}
211
      end
212
    end
213
  end
214
  
215
  def get_keyword(attr, options={})
216
    @keywords ||= {}
217
    if @keywords.has_key?(attr)
218
      @keywords[attr]
219
    else
220
      @keywords[attr] = begin
221
        if (options[:override] || @@handler_options[:allow_override].include?(attr.to_s)) && (v = extract_keyword!(plain_text_body, attr, options[:format]))
222
          v
223
        elsif !@@handler_options[:issue][attr].blank?
224
          @@handler_options[:issue][attr]
225
        end
226
      end
227
    end
228
  end
229
  
230
  # Destructively extracts the value for +attr+ in +text+
231
  # Returns nil if no matching keyword found
232
  def extract_keyword!(text, attr, format=nil)
233
    keys = [attr.to_s.humanize]
234
    if attr.is_a?(Symbol)
235
      keys << l("field_#{attr}", :default => '', :locale =>  user.language) if user
236
      keys << l("field_#{attr}", :default => '', :locale =>  Setting.default_language)
237
    end
238
    keys.reject! {|k| k.blank?}
239
    keys.collect! {|k| Regexp.escape(k)}
240
    format ||= '.+'
241
    text.gsub!(/^(#{keys.join('|')})[ \t]*:[ \t]*(#{format})\s*$/i, '')
242
    $2 && $2.strip
243
  end
244

    
245
  def target_project
246
    # TODO: other ways to specify project:
247
    # * parse the email To field
248
    # * specific project (eg. Setting.mail_handler_target_project)
249
    target = Project.find_by_identifier(get_keyword(:project))
250
    raise MissingInformation.new('Unable to determine target project') if target.nil?
251
    target
252
  end
253
  
254
  # Returns a Hash of issue attributes extracted from keywords in the email body
255
  def issue_attributes_from_keywords(issue)
256
    assigned_to = (k = get_keyword(:assigned_to, :override => true)) && find_user_from_keyword(k)
257
    assigned_to = nil if assigned_to && !issue.assignable_users.include?(assigned_to)
258
    
259
    {
260
      'tracker_id' => ((k = get_keyword(:tracker)) && issue.project.trackers.find_by_name(k).try(:id)) || issue.project.trackers.find(:first).try(:id),
261
      'status_id' =>  (k = get_keyword(:status)) && IssueStatus.find_by_name(k).try(:id),
262
      'priority_id' => (k = get_keyword(:priority)) && IssuePriority.find_by_name(k).try(:id),
263
      'category_id' => (k = get_keyword(:category)) && issue.project.issue_categories.find_by_name(k).try(:id),
264
      'assigned_to_id' => assigned_to.try(:id),
265
      'fixed_version_id' => (k = get_keyword(:fixed_version, :override => true)) && issue.project.shared_versions.find_by_name(k).try(:id),
266
      'start_date' => get_keyword(:start_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
267
      'due_date' => get_keyword(:due_date, :override => true, :format => '\d{4}-\d{2}-\d{2}'),
268
      'estimated_hours' => get_keyword(:estimated_hours, :override => true),
269
      'done_ratio' => get_keyword(:done_ratio, :override => true, :format => '(\d|10)?0')
270
    }.delete_if {|k, v| v.blank? }
271
  end
272
  
273
  # Returns a Hash of issue custom field values extracted from keywords in the email body
274
  def custom_field_values_from_keywords(customized)  
275
    customized.custom_field_values.inject({}) do |h, v|
276
      if value = get_keyword(v.custom_field.name, :override => true)
277
        h[v.custom_field.id.to_s] = value
278
      end
279
      h
280
    end
281
  end
282
  
283
  # Returns the text/plain part of the email
284
  # If not found (eg. HTML-only email), returns the body with tags removed
285
  def plain_text_body
286
    return @plain_text_body unless @plain_text_body.nil?
287
    parts = @email.parts.collect {|c| (c.respond_to?(:parts) && !c.parts.empty?) ? c.parts : c}.flatten
288
    if parts.empty?
289
      parts << @email
290
    end
291
    plain_text_part = parts.detect {|p| p.content_type == 'text/plain'}
292
    if plain_text_part.nil?
293
      # no text/plain part found, assuming html-only email
294
      # strip html tags and remove doctype directive
295
      @plain_text_body = strip_tags(@email.body.to_s)
296
      @plain_text_body.gsub! %r{^<!DOCTYPE .*$}, ''
297
    else
298
      @plain_text_body = plain_text_part.body.to_s
299
    end
300
    @plain_text_body.strip!
301
    @plain_text_body
302
  end
303
  
304
  def cleaned_up_text_body
305
    cleanup_body(plain_text_body)
306
  end
307

    
308
  def self.full_sanitizer
309
    @full_sanitizer ||= HTML::FullSanitizer.new
310
  end
311
  
312
  # Creates a user account for the +email+ sender
313
  def self.create_user_from_email(email)
314
    addr = email.from_addrs.to_a.first
315
    if addr && !addr.spec.blank?
316
      user = User.new
317
      user.mail = addr.spec
318
      
319
      names = addr.name.blank? ? addr.spec.gsub(/@.*$/, '').split('.') : addr.name.split
320
      user.firstname = names.shift
321
      user.lastname = names.join(' ')
322
      user.lastname = '-' if user.lastname.blank?
323
      
324
      user.login = user.mail
325
      user.password = ActiveSupport::SecureRandom.hex(5)
326
      user.language = Setting.default_language
327
      user.save ? user : nil
328
    end
329
  end
330

    
331
  private
332
  
333
  # Removes the email body of text after the truncation configurations.
334
  def cleanup_body(body)
335
    delimiters = Setting.mail_handler_body_delimiters.to_s.split(/[\r\n]+/).reject(&:blank?).map {|s| Regexp.escape(s)}
336
    unless delimiters.empty?
337
      regex = Regexp.new("^[> ]*(#{ delimiters.join('|') })\s*[\r\n].*", Regexp::MULTILINE)
338
      body = body.gsub(regex, '')
339
    end
340
    body.strip
341
  end
342

    
343
  def find_user_from_keyword(keyword)
344
    user ||= User.find_by_mail(keyword)
345
    user ||= User.find_by_login(keyword)
346
    if user.nil? && keyword.match(/ /)
347
      firstname, lastname = *(keyword.split) # "First Last Throwaway"
348
      user ||= User.find_by_firstname_and_lastname(firstname, lastname)
349
    end
350
    user
351
  end
352
end