2011-03-04 14:32:58 +00:00
|
|
|
# Redmine - project management software
|
2017-06-25 08:40:31 +00:00
|
|
|
# Copyright (C) 2006-2017 Jean-Philippe Lang
|
2007-03-12 17:59:02 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
|
# of the License, or (at your option) any later version.
|
2008-11-07 15:37:17 +00:00
|
|
|
#
|
2007-03-12 17:59:02 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
2008-11-07 15:37:17 +00:00
|
|
|
#
|
2007-03-12 17:59:02 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
2015-08-31 07:38:29 +00:00
|
|
|
require 'roadie'
|
|
|
|
|
|
2007-03-12 17:59:02 +00:00
|
|
|
class Mailer < ActionMailer::Base
|
2009-09-13 17:14:35 +00:00
|
|
|
layout 'mailer'
|
2008-02-21 19:30:27 +00:00
|
|
|
helper :application
|
|
|
|
|
helper :issues
|
|
|
|
|
helper :custom_fields
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2009-02-21 11:04:50 +00:00
|
|
|
include Redmine::I18n
|
2015-08-31 07:38:29 +00:00
|
|
|
include Roadie::Rails::Automatic
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# This class wraps multiple generated `Mail::Message` objects and allows to
|
|
|
|
|
# deliver them all at once. It is usually used to handle multiple mails for
|
|
|
|
|
# different receivers created by a single mail event. The wrapped mails can
|
|
|
|
|
# then be delivered in one go.
|
|
|
|
|
#
|
|
|
|
|
# The public interface of the class resembles a single mail message. You can
|
|
|
|
|
# directly use any of the deliver_* methods to send the contained messages
|
|
|
|
|
# now or later.
|
|
|
|
|
class MultiMessage
|
|
|
|
|
attr_reader :mails
|
|
|
|
|
|
|
|
|
|
# @param mails [Array<Mail, Proc>] an Array of mails or Procs which create
|
|
|
|
|
# mail objects and allow to call a method on it.
|
|
|
|
|
def initialize(action, *args)
|
|
|
|
|
@action = action
|
|
|
|
|
@args = args
|
|
|
|
|
|
|
|
|
|
@mails = []
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def for(users)
|
|
|
|
|
Array.wrap(users).each do |user|
|
|
|
|
|
@mails << ActionMailer::MessageDelivery.new(Mailer, @action, user, *@args)
|
|
|
|
|
end
|
|
|
|
|
self
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def deliver_later(options = {})
|
|
|
|
|
enqueue_delivery :deliver_now, options
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def deliver_later!(options = {})
|
|
|
|
|
enqueue_delivery :deliver_now!, options
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def processed?
|
|
|
|
|
@mails.any?(&:processed?)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# @return [Object] the delivery method of the first mail.
|
|
|
|
|
# Usually, this is the very same value for all mails and matches the
|
|
|
|
|
# default value of the Mailer class
|
|
|
|
|
def delivery_method
|
|
|
|
|
(@mails.first || ActionMailer::Base::NullMail.new).delivery_method
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# @return [ActionMailer::Base] the delivery handler of the first mail. This
|
|
|
|
|
# is always the `Mailer` class.
|
|
|
|
|
def delivery_handler
|
|
|
|
|
(@mails.first || ActionMailer::Base::NullMail.new).delivery_handler
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def method_missing(method, *args, &block)
|
|
|
|
|
if method =~ /\Adeliver([_!?]|\z)/
|
|
|
|
|
@mails.each do |mail|
|
|
|
|
|
mail.public_send(method, *args, &block)
|
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
super
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def respond_to_missing(method, *args)
|
|
|
|
|
method =~ /\Adeliver([_!?]|\z)/ || method == 'processed?' || super
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# This method is slightly adapted from ActionMailer::MessageDelivery
|
|
|
|
|
def enqueue_delivery(delivery_method, options = {})
|
|
|
|
|
if processed?
|
|
|
|
|
::Kernel.raise "You've accessed the message before asking to " \
|
|
|
|
|
"deliver it later, so you may have made local changes that would " \
|
|
|
|
|
"be silently lost if we enqueued a job to deliver it. Why? Only " \
|
|
|
|
|
"the mailer method *arguments* are passed with the delivery job! " \
|
|
|
|
|
"Do not access the message in any way if you mean to deliver it " \
|
|
|
|
|
"later. Workarounds: 1. don't touch the message before calling " \
|
|
|
|
|
"#deliver_later, 2. only touch the message *within your mailer " \
|
|
|
|
|
"method*, or 3. use a custom Active Job instead of #deliver_later."
|
|
|
|
|
else
|
|
|
|
|
args = 'Mailer', @action.to_s, delivery_method.to_s, *@args
|
2018-10-06 13:10:22 +00:00
|
|
|
DeliveryJob.set(options).perform_later(*args)
|
2018-10-06 13:08:52 +00:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:10:22 +00:00
|
|
|
class DeliveryJob < ActionMailer::DeliveryJob
|
|
|
|
|
module Arguments
|
|
|
|
|
extend ActiveJob::Arguments
|
|
|
|
|
extend self
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def serialize_argument(argument)
|
|
|
|
|
# Ensure that ActiveRecord::Base objects are fully serialized for mail
|
|
|
|
|
# sending. This circumvents the globalid gem for this job.
|
|
|
|
|
if argument.is_a?(ActiveRecord::Base)
|
|
|
|
|
argument.to_yaml
|
|
|
|
|
else
|
|
|
|
|
super
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def deserialize_argument(argument)
|
|
|
|
|
if argument.is_a?(ActiveRecord::Base)
|
|
|
|
|
argument
|
|
|
|
|
else
|
|
|
|
|
super
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
|
|
def serialize_arguments(serialized_args)
|
|
|
|
|
Arguments.serialize(serialized_args)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def deserialize_arguments(serialized_args)
|
|
|
|
|
Arguments.deserialize(serialized_args)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
def process(action, *args)
|
|
|
|
|
user = args.shift
|
|
|
|
|
raise ArgumentError, "First argument has to be a user, was #{user.inspect}" unless user.is_a?(User)
|
|
|
|
|
|
|
|
|
|
initial_user = User.current
|
|
|
|
|
initial_language = ::I18n.locale
|
|
|
|
|
begin
|
|
|
|
|
User.current = user
|
|
|
|
|
|
|
|
|
|
lang = find_language(user.language) if user.logged?
|
|
|
|
|
lang ||= Setting.default_language
|
|
|
|
|
set_language_if_valid(lang)
|
|
|
|
|
|
|
|
|
|
super(action, *args)
|
|
|
|
|
ensure
|
|
|
|
|
User.current = initial_user
|
|
|
|
|
::I18n.locale = initial_language
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
2009-02-25 07:25:01 +00:00
|
|
|
def self.default_url_options
|
2015-03-14 08:52:48 +00:00
|
|
|
options = {:protocol => Setting.protocol}
|
|
|
|
|
if Setting.host_name.to_s =~ /\A(https?\:\/\/)?(.+?)(\:(\d+))?(\/.+)?\z/i
|
|
|
|
|
host, port, prefix = $2, $4, $5
|
|
|
|
|
options.merge!({
|
|
|
|
|
:host => host, :port => port, :script_name => prefix
|
|
|
|
|
})
|
|
|
|
|
else
|
|
|
|
|
options[:host] = Setting.host_name
|
|
|
|
|
end
|
|
|
|
|
options
|
2009-02-25 07:25:01 +00:00
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Builds a mail for notifying the current user about a new issue
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# issue_add(issue) => Mail::Message object
|
|
|
|
|
def issue_add(issue)
|
2008-03-16 16:52:49 +00:00
|
|
|
redmine_headers 'Project' => issue.project.identifier,
|
|
|
|
|
'Issue-Id' => issue.id,
|
|
|
|
|
'Issue-Author' => issue.author.login
|
|
|
|
|
redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to
|
2009-01-18 15:16:31 +00:00
|
|
|
message_id issue
|
2013-07-13 09:20:11 +00:00
|
|
|
references issue
|
2012-02-05 12:57:19 +00:00
|
|
|
@author = issue.author
|
2012-04-25 17:17:49 +00:00
|
|
|
@issue = issue
|
2018-10-06 13:08:52 +00:00
|
|
|
@users = [User.current]
|
2012-04-25 17:17:49 +00:00
|
|
|
@issue_url = url_for(:controller => 'issues', :action => 'show', :id => issue)
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] (#{issue.status.name}) #{issue.subject}"
|
2007-03-12 17:59:02 +00:00
|
|
|
end
|
|
|
|
|
|
2013-07-13 09:20:11 +00:00
|
|
|
# Notifies users about a new issue
|
2018-10-06 13:08:52 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.issue_add(journal).deliver => sends emails to the project's recipients
|
|
|
|
|
def self.issue_add(issue)
|
|
|
|
|
users = issue.notified_users | issue.notified_watchers
|
|
|
|
|
MultiMessage.new(:issue_add, issue).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Notifies users about a new issue
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.deliver_issue_add(issue) => sends emails to the project's recipients
|
2013-07-13 09:20:11 +00:00
|
|
|
def self.deliver_issue_add(issue)
|
2018-10-06 13:08:52 +00:00
|
|
|
issue_add(issue).deliver
|
2013-07-13 09:20:11 +00:00
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Builds a mail for notifying the current user about an issue update
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# issue_edit(journal) => Mail::Message object
|
|
|
|
|
def issue_edit(journal)
|
2013-07-13 09:20:11 +00:00
|
|
|
issue = journal.journalized
|
2008-03-16 16:52:49 +00:00
|
|
|
redmine_headers 'Project' => issue.project.identifier,
|
|
|
|
|
'Issue-Id' => issue.id,
|
|
|
|
|
'Issue-Author' => issue.author.login
|
|
|
|
|
redmine_headers 'Issue-Assignee' => issue.assigned_to.login if issue.assigned_to
|
2009-01-18 15:16:31 +00:00
|
|
|
message_id journal
|
|
|
|
|
references issue
|
2009-01-03 16:03:12 +00:00
|
|
|
@author = journal.user
|
2008-01-20 10:42:16 +00:00
|
|
|
s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] "
|
|
|
|
|
s << "(#{issue.status.name}) " if journal.new_value_for('status_id')
|
|
|
|
|
s << issue.subject
|
2012-04-25 17:17:49 +00:00
|
|
|
@issue = issue
|
2018-10-06 13:08:52 +00:00
|
|
|
@users = [User.current]
|
2012-04-25 17:17:49 +00:00
|
|
|
@journal = journal
|
2018-10-06 13:08:52 +00:00
|
|
|
@journal_details = journal.visible_details
|
2012-04-25 17:17:49 +00:00
|
|
|
@issue_url = url_for(:controller => 'issues', :action => 'show', :id => issue, :anchor => "change-#{journal.id}")
|
2018-10-06 13:08:52 +00:00
|
|
|
|
|
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => s
|
2007-03-12 17:59:02 +00:00
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to notify users about an issue update
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.issue_edit(journal).deliver => sends emails to the project's recipients
|
|
|
|
|
def self.issue_edit(journal)
|
|
|
|
|
users = journal.notified_users
|
|
|
|
|
users |= journal.notified_watchers
|
|
|
|
|
users.select! do |user|
|
|
|
|
|
journal.notes? || journal.visible_details(user).any?
|
|
|
|
|
end
|
|
|
|
|
MultiMessage.new(:issue_edit, journal).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
2013-07-13 09:20:11 +00:00
|
|
|
# Notifies users about an issue update
|
2018-10-06 13:08:52 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.deliver_issue_edit(journal) => sends emails to the project's recipients
|
2013-07-13 09:20:11 +00:00
|
|
|
def self.deliver_issue_edit(journal)
|
2018-10-06 13:08:52 +00:00
|
|
|
issue_edit(journal).deliver
|
2013-07-13 09:20:11 +00:00
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Builds a Mail::Message object used to send en email reminder to the current
|
|
|
|
|
# user about their due issues.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# reminder(issues, days) => Mail::Message object
|
|
|
|
|
def reminder(issues, days)
|
2012-04-25 17:17:49 +00:00
|
|
|
@issues = issues
|
|
|
|
|
@days = days
|
|
|
|
|
@issues_url = url_for(:controller => 'issues', :action => 'index',
|
2018-10-06 13:08:52 +00:00
|
|
|
:set_filter => 1, :assigned_to_id => User.current.id,
|
2011-09-23 07:02:54 +00:00
|
|
|
:sort => 'due_date:asc')
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => l(:mail_subject_reminder, :count => issues.size, :days => days)
|
2008-05-25 17:31:50 +00:00
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Builds a Mail::Message object used to email the given user about their due
|
|
|
|
|
# issues
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.reminder(user, issues, days, author).deliver => sends an email to the user
|
|
|
|
|
def self.reminder(user, issues, days)
|
|
|
|
|
MultiMessage.new(:reminder, issues, days).for(user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user that a document
|
|
|
|
|
# was added.
|
2009-03-21 00:39:53 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2018-10-06 13:08:52 +00:00
|
|
|
# document_added(document, author) => Mail::Message object
|
|
|
|
|
def document_added(document, author)
|
2008-03-16 16:52:49 +00:00
|
|
|
redmine_headers 'Project' => document.project.identifier
|
2018-10-06 13:08:52 +00:00
|
|
|
@author = author
|
2012-04-25 17:17:49 +00:00
|
|
|
@document = document
|
|
|
|
|
@document_url = url_for(:controller => 'documents', :action => 'show', :id => document)
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}"
|
2007-03-12 17:59:02 +00:00
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to notify users about an added document.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.document_added(document).deliver => sends emails to the document's project recipients
|
|
|
|
|
def self.document_added(document)
|
|
|
|
|
users = document.notified_users
|
|
|
|
|
MultiMessage.new(:document_added, document, User.current).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user when
|
|
|
|
|
# attachements are added.
|
2009-03-21 00:39:53 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2012-05-09 15:14:45 +00:00
|
|
|
# attachments_added(attachments) => Mail::Message object
|
2007-10-12 18:04:56 +00:00
|
|
|
def attachments_added(attachments)
|
2007-03-12 17:59:02 +00:00
|
|
|
container = attachments.first.container
|
2007-08-25 20:09:33 +00:00
|
|
|
added_to = ''
|
2007-11-04 10:43:39 +00:00
|
|
|
added_to_url = ''
|
2012-03-12 18:34:12 +00:00
|
|
|
@author = attachments.first.author
|
2007-08-25 20:09:33 +00:00
|
|
|
case container.class.name
|
2008-12-09 18:00:27 +00:00
|
|
|
when 'Project'
|
2011-03-27 16:38:08 +00:00
|
|
|
added_to_url = url_for(:controller => 'files', :action => 'index', :project_id => container)
|
2008-12-09 18:00:27 +00:00
|
|
|
added_to = "#{l(:label_project)}: #{container}"
|
2007-03-12 17:59:02 +00:00
|
|
|
when 'Version'
|
2011-03-27 16:38:08 +00:00
|
|
|
added_to_url = url_for(:controller => 'files', :action => 'index', :project_id => container.project)
|
2007-03-12 17:59:02 +00:00
|
|
|
added_to = "#{l(:label_version)}: #{container.name}"
|
|
|
|
|
when 'Document'
|
2007-11-04 10:43:39 +00:00
|
|
|
added_to_url = url_for(:controller => 'documents', :action => 'show', :id => container.id)
|
2007-03-12 17:59:02 +00:00
|
|
|
added_to = "#{l(:label_document)}: #{container.title}"
|
|
|
|
|
end
|
2008-03-16 16:52:49 +00:00
|
|
|
redmine_headers 'Project' => container.project.identifier
|
2012-04-25 17:17:49 +00:00
|
|
|
@attachments = attachments
|
|
|
|
|
@added_to = added_to
|
|
|
|
|
@added_to_url = added_to_url
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => "[#{container.project.name}] #{l(:label_attachment_new)}"
|
2007-03-12 17:59:02 +00:00
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to notify users about an added attachment
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.attachments_added(attachments).deliver => sends emails to the project's recipients
|
|
|
|
|
def self.attachments_added(attachments)
|
|
|
|
|
container = attachments.first.container
|
|
|
|
|
case container.class.name
|
|
|
|
|
when 'Project', 'Version'
|
|
|
|
|
users = container.project.notified_users.select {|user| user.allowed_to?(:view_files, container.project)}
|
|
|
|
|
when 'Document'
|
|
|
|
|
users = container.notified_users
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
MultiMessage.new(:attachments_added, attachments).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user when a news
|
|
|
|
|
# item is added.
|
2009-03-21 00:39:53 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2012-05-09 15:14:45 +00:00
|
|
|
# news_added(news) => Mail::Message object
|
2007-09-14 15:30:46 +00:00
|
|
|
def news_added(news)
|
2008-03-16 16:52:49 +00:00
|
|
|
redmine_headers 'Project' => news.project.identifier
|
2012-03-12 18:34:12 +00:00
|
|
|
@author = news.author
|
2009-01-18 15:16:31 +00:00
|
|
|
message_id news
|
2013-07-13 09:20:11 +00:00
|
|
|
references news
|
2012-04-25 17:17:49 +00:00
|
|
|
@news = news
|
|
|
|
|
@news_url = url_for(:controller => 'news', :action => 'show', :id => news)
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => "[#{news.project.name}] #{l(:label_news)}: #{news.title}"
|
2007-09-14 15:30:46 +00:00
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to notify users about a new news item
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.news_added(news).deliver => sends emails to the news' project recipients
|
|
|
|
|
def self.news_added(news)
|
|
|
|
|
users = news.notified_users | news.notified_watchers_for_added_news
|
|
|
|
|
MultiMessage.new(:news_added, news).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user when a news
|
|
|
|
|
# comment is added.
|
2011-03-04 14:32:58 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2012-05-09 15:14:45 +00:00
|
|
|
# news_comment_added(comment) => Mail::Message object
|
2011-03-04 14:32:58 +00:00
|
|
|
def news_comment_added(comment)
|
|
|
|
|
news = comment.commented
|
|
|
|
|
redmine_headers 'Project' => news.project.identifier
|
2012-03-12 18:34:12 +00:00
|
|
|
@author = comment.author
|
2011-03-04 14:32:58 +00:00
|
|
|
message_id comment
|
2013-07-13 09:20:11 +00:00
|
|
|
references news
|
2012-04-25 17:17:49 +00:00
|
|
|
@news = news
|
|
|
|
|
@comment = comment
|
|
|
|
|
@news_url = url_for(:controller => 'news', :action => 'show', :id => news)
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => "Re: [#{news.project.name}] #{l(:label_news)}: #{news.title}"
|
2011-03-04 14:32:58 +00:00
|
|
|
end
|
2007-11-04 10:43:39 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to notify users about a new news comment
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.news_comment_added(comment).deliver => sends emails to the news' project recipients
|
|
|
|
|
def self.news_comment_added(comment)
|
|
|
|
|
news = comment.commented
|
|
|
|
|
users = news.notified_users | news.notified_watchers
|
|
|
|
|
|
|
|
|
|
MultiMessage.new(:news_comment_added, comment).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user that the
|
|
|
|
|
# specified message was posted.
|
2009-03-21 00:39:53 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2012-05-09 15:14:45 +00:00
|
|
|
# message_posted(message) => Mail::Message object
|
2009-12-13 14:26:54 +00:00
|
|
|
def message_posted(message)
|
2008-03-16 16:52:49 +00:00
|
|
|
redmine_headers 'Project' => message.project.identifier,
|
|
|
|
|
'Topic-Id' => (message.parent_id || message.id)
|
2012-03-12 18:34:12 +00:00
|
|
|
@author = message.author
|
2009-01-18 15:16:31 +00:00
|
|
|
message_id message
|
2013-07-13 09:20:11 +00:00
|
|
|
references message.root
|
2012-04-25 17:17:49 +00:00
|
|
|
@message = message
|
|
|
|
|
@message_url = url_for(message.event_url)
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => "[#{message.board.project.name} - #{message.board.name} - msg#{message.root.id}] #{message.subject}"
|
2007-11-04 10:43:39 +00:00
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to notify users about a new forum message
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.message_posted(message).deliver => sends emails to the recipients
|
|
|
|
|
def self.message_posted(message)
|
|
|
|
|
users = message.notified_users
|
|
|
|
|
users |= message.root.notified_watchers
|
|
|
|
|
users |= message.board.notified_watchers
|
|
|
|
|
|
|
|
|
|
MultiMessage.new(:message_posted, message).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user that the
|
|
|
|
|
# specified wiki content was added.
|
2009-05-17 09:55:13 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2012-05-09 15:14:45 +00:00
|
|
|
# wiki_content_added(wiki_content) => Mail::Message object
|
2009-05-17 09:55:13 +00:00
|
|
|
def wiki_content_added(wiki_content)
|
|
|
|
|
redmine_headers 'Project' => wiki_content.project.identifier,
|
|
|
|
|
'Wiki-Page-Id' => wiki_content.page.id
|
2012-03-12 18:34:12 +00:00
|
|
|
@author = wiki_content.author
|
2009-05-17 09:55:13 +00:00
|
|
|
message_id wiki_content
|
2012-04-25 17:17:49 +00:00
|
|
|
@wiki_content = wiki_content
|
|
|
|
|
@wiki_content_url = url_for(:controller => 'wiki', :action => 'show',
|
2011-09-23 06:53:57 +00:00
|
|
|
:project_id => wiki_content.project,
|
|
|
|
|
:id => wiki_content.page.title)
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => "[#{wiki_content.project.name}] #{l(:mail_subject_wiki_content_added, :id => wiki_content.page.pretty_title)}"
|
2009-05-17 09:55:13 +00:00
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to notify users about added wiki content
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.wiki_content_added(wiki_content).deliver => send emails to the project's recipients
|
|
|
|
|
def self.wiki_content_added(wiki_content)
|
|
|
|
|
users = wiki_content.notified_users | wiki_content.page.wiki.notified_watchers
|
|
|
|
|
MultiMessage.new(:wiki_content_added, wiki_content).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user about an update
|
|
|
|
|
# of the specified wiki content.
|
2009-05-17 09:55:13 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2012-05-09 15:14:45 +00:00
|
|
|
# wiki_content_updated(wiki_content) => Mail::Message object
|
2009-05-17 09:55:13 +00:00
|
|
|
def wiki_content_updated(wiki_content)
|
|
|
|
|
redmine_headers 'Project' => wiki_content.project.identifier,
|
|
|
|
|
'Wiki-Page-Id' => wiki_content.page.id
|
2012-03-12 18:34:12 +00:00
|
|
|
@author = wiki_content.author
|
2009-05-17 09:55:13 +00:00
|
|
|
message_id wiki_content
|
2012-04-25 17:17:49 +00:00
|
|
|
@wiki_content = wiki_content
|
|
|
|
|
@wiki_content_url = url_for(:controller => 'wiki', :action => 'show',
|
2011-09-23 06:54:29 +00:00
|
|
|
:project_id => wiki_content.project,
|
2012-04-25 17:17:49 +00:00
|
|
|
:id => wiki_content.page.title)
|
|
|
|
|
@wiki_diff_url = url_for(:controller => 'wiki', :action => 'diff',
|
2011-09-23 06:54:29 +00:00
|
|
|
:project_id => wiki_content.project, :id => wiki_content.page.title,
|
|
|
|
|
:version => wiki_content.version)
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => "[#{wiki_content.project.name}] #{l(:mail_subject_wiki_content_updated, :id => wiki_content.page.pretty_title)}"
|
2009-05-17 09:55:13 +00:00
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to notify users about the update of the specified wiki content
|
2009-03-21 00:39:53 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2018-10-06 13:08:52 +00:00
|
|
|
# Mailer.wiki_content_updated(wiki_content).deliver => sends an email to the project's recipients
|
|
|
|
|
def self.wiki_content_updated(wiki_content)
|
|
|
|
|
users = wiki_content.notified_users
|
|
|
|
|
users |= wiki_content.page.notified_watchers
|
|
|
|
|
users |= wiki_content.page.wiki.notified_watchers
|
|
|
|
|
|
|
|
|
|
MultiMessage.new(:wiki_content_updated, wiki_content).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user their account information.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# account_information(password) => Mail::Message object
|
|
|
|
|
def account_information(password)
|
|
|
|
|
@user = User.current
|
2012-04-25 17:17:49 +00:00
|
|
|
@password = password
|
|
|
|
|
@login_url = url_for(:controller => 'account', :action => 'login')
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current.mail,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => l(:mail_subject_register, Setting.app_title)
|
2007-11-04 10:43:39 +00:00
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to mail a user their account information
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.account_information(user, password).deliver => sends account information to the user
|
|
|
|
|
def self.account_information(user, password)
|
|
|
|
|
MultiMessage.new(:account_information, password).for(user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the current user about an account activation request.
|
2009-03-21 00:39:53 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2012-05-09 15:14:45 +00:00
|
|
|
# account_activation_request(user) => Mail::Message object
|
2007-11-18 17:46:55 +00:00
|
|
|
def account_activation_request(user)
|
2012-04-25 17:17:49 +00:00
|
|
|
@user = user
|
|
|
|
|
@url = url_for(:controller => 'users', :action => 'index',
|
2011-09-23 06:56:24 +00:00
|
|
|
:status => User::STATUS_REGISTERED,
|
|
|
|
|
:sort_key => 'created_on', :sort_order => 'desc')
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => l(:mail_subject_account_activation_request, Setting.app_title)
|
2007-11-18 17:46:55 +00:00
|
|
|
end
|
2007-11-04 10:43:39 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to email all active administrators of an account activation request.
|
2009-03-21 00:39:53 +00:00
|
|
|
#
|
|
|
|
|
# Example:
|
2018-10-06 13:08:52 +00:00
|
|
|
# Mailer.account_activation_request(user).deliver => sends an email to all active administrators
|
|
|
|
|
def self.account_activation_request(user)
|
|
|
|
|
# Send the email to all active administrators
|
|
|
|
|
users = User.active.where(:admin => true)
|
|
|
|
|
MultiMessage.new(:account_activation_request, user).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the account of the current user
|
|
|
|
|
# was activated by an administrator.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# account_activated => Mail::Message object
|
|
|
|
|
def account_activated
|
|
|
|
|
@user = User.current
|
2012-04-25 17:17:49 +00:00
|
|
|
@login_url = url_for(:controller => 'account', :action => 'login')
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current.mail,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => l(:mail_subject_register, Setting.app_title)
|
2009-02-20 17:04:47 +00:00
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to email the specified user that their account was
|
|
|
|
|
# activated by an administrator.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.account_activated(user).deliver => sends an email to the registered user
|
|
|
|
|
def self.account_activated(user)
|
|
|
|
|
MultiMessage.new(:account_activated).for(user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Builds a Mail::Message object used to email the lost password token to the
|
|
|
|
|
# token's user (or a different recipient).
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# lost_password(token) => Mail::Message object
|
2015-01-17 14:51:29 +00:00
|
|
|
def lost_password(token, recipient=nil)
|
|
|
|
|
recipient ||= token.user.mail
|
2012-04-25 17:17:49 +00:00
|
|
|
@token = token
|
|
|
|
|
@url = url_for(:controller => 'account', :action => 'lost_password', :token => token.value)
|
2015-01-17 14:51:29 +00:00
|
|
|
mail :to => recipient,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => l(:mail_subject_lost_password, Setting.app_title)
|
2008-11-07 15:37:17 +00:00
|
|
|
end
|
2007-03-12 17:59:02 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to email the token's user (or a different recipient)
|
|
|
|
|
# the lost password token for the token's user.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.lost_password(token).deliver => sends an email to the user
|
|
|
|
|
def self.lost_password(token, recipient=nil)
|
|
|
|
|
MultiMessage.new(:lost_password, token, recipient).for(token.user)
|
|
|
|
|
end
|
|
|
|
|
|
2016-03-20 07:35:08 +00:00
|
|
|
# Notifies user that his password was updated
|
2018-04-07 07:49:43 +00:00
|
|
|
def self.password_updated(user, options={})
|
2016-05-08 09:07:37 +00:00
|
|
|
# Don't send a notification to the dummy email address when changing the password
|
|
|
|
|
# of the default admin account which is required after the first login
|
|
|
|
|
# TODO: maybe not the best way to handle this
|
|
|
|
|
return if user.admin? && user.login == 'admin' && user.mail == 'admin@example.net'
|
|
|
|
|
|
2017-06-03 08:20:20 +00:00
|
|
|
security_notification(user,
|
2016-05-08 08:27:24 +00:00
|
|
|
message: :mail_body_password_updated,
|
2016-03-20 07:35:08 +00:00
|
|
|
title: :button_change_password,
|
2018-04-07 07:49:43 +00:00
|
|
|
remote_ip: options[:remote_ip],
|
|
|
|
|
originator: user,
|
2016-03-20 07:35:08 +00:00
|
|
|
url: {controller: 'my', action: 'password'}
|
|
|
|
|
).deliver
|
|
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Builds a Mail::Message object used to email the user activation link to the
|
|
|
|
|
# token's user.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# register(token) => Mail::Message object
|
2007-03-12 17:59:02 +00:00
|
|
|
def register(token)
|
2012-04-25 17:17:49 +00:00
|
|
|
@token = token
|
|
|
|
|
@url = url_for(:controller => 'account', :action => 'activate', :token => token.value)
|
|
|
|
|
mail :to => token.user.mail,
|
|
|
|
|
:subject => l(:mail_subject_register, Setting.app_title)
|
2007-05-14 17:03:59 +00:00
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to email the user activation link to the token's user.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.register(token).deliver => sends an email to the token's user
|
|
|
|
|
def self.register(token)
|
|
|
|
|
MultiMessage.new(:register, token).for(token.user)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Build a Mail::Message object to email the current user and the additional
|
|
|
|
|
# recipients given in options[:recipients] about a security related event.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# security_notification(users,
|
|
|
|
|
# message: :mail_body_security_notification_add,
|
|
|
|
|
# field: :field_mail,
|
|
|
|
|
# value: address
|
|
|
|
|
# ) => Mail::Message object
|
|
|
|
|
def security_notification(sender, options={})
|
|
|
|
|
@sender = sender
|
|
|
|
|
redmine_headers 'Sender' => sender.login
|
2016-02-05 07:33:24 +00:00
|
|
|
@message = l(options[:message],
|
|
|
|
|
field: (options[:field] && l(options[:field])),
|
|
|
|
|
value: options[:value]
|
|
|
|
|
)
|
|
|
|
|
@title = options[:title] && l(options[:title])
|
2018-10-06 13:08:52 +00:00
|
|
|
@originator = options[:originator] || sender
|
2018-04-07 07:49:43 +00:00
|
|
|
@remote_ip = options[:remote_ip] || @originator.remote_ip
|
2016-02-05 07:33:24 +00:00
|
|
|
@url = options[:url] && (options[:url].is_a?(Hash) ? url_for(options[:url]) : options[:url])
|
2018-04-07 07:49:43 +00:00
|
|
|
redmine_headers 'Sender' => @originator.login
|
|
|
|
|
redmine_headers 'Url' => @url
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => [User.current, *options[:recipients]].uniq,
|
2016-03-20 07:49:15 +00:00
|
|
|
:subject => "[#{Setting.app_title}] #{l(:mail_subject_security_notification)}"
|
2016-02-05 07:33:24 +00:00
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to email the given users about a security related event.
|
|
|
|
|
#
|
|
|
|
|
# You can specify additional recipients in options[:recipients]. These will be
|
|
|
|
|
# added to all generated mails for all given users. Usually, you'll want to
|
|
|
|
|
# give only a single user when setting the additional recipients.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.security_notification(users,
|
|
|
|
|
# message: :mail_body_security_notification_add,
|
|
|
|
|
# field: :field_mail,
|
|
|
|
|
# value: address
|
|
|
|
|
# ).deliver => sends a security notification to the given user(s)
|
|
|
|
|
def self.security_notification(users, options={})
|
|
|
|
|
sender = User.current
|
|
|
|
|
MultiMessage.new(:security_notification, sender, options).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Build a Mail::Message object to email the current user about an updated
|
|
|
|
|
# setting.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# settings_updated(sender, [:host_name]) => Mail::Message object
|
|
|
|
|
def settings_updated(sender, changes)
|
|
|
|
|
@sender = sender
|
|
|
|
|
redmine_headers 'Sender' => sender.login
|
2016-02-05 08:50:21 +00:00
|
|
|
@changes = changes
|
|
|
|
|
@url = url_for(controller: 'settings', action: 'index')
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current,
|
2016-03-20 07:49:15 +00:00
|
|
|
:subject => "[#{Setting.app_title}] #{l(:mail_subject_security_notification)}"
|
2016-02-05 08:50:21 +00:00
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to email the given users about an update of a setting.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.settings_updated(users, [:host_name]).deliver => sends emails to the given user(s) about the update
|
|
|
|
|
def self.settings_updated(users, changes)
|
|
|
|
|
sender = User.current
|
|
|
|
|
MultiMessage.new(:settings_updated, sender, changes).for(users)
|
|
|
|
|
end
|
|
|
|
|
|
2017-07-04 04:00:23 +00:00
|
|
|
# Notifies admins about settings changes
|
2016-02-05 08:50:21 +00:00
|
|
|
def self.security_settings_updated(changes)
|
|
|
|
|
return unless changes.present?
|
|
|
|
|
|
|
|
|
|
users = User.active.where(admin: true).to_a
|
2017-06-03 08:20:20 +00:00
|
|
|
settings_updated(users, changes).deliver
|
2016-02-05 08:50:21 +00:00
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a Mail::Message object with a test email for the current user
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# test_email => Mail::Message object
|
|
|
|
|
def test_email
|
2012-04-25 17:17:49 +00:00
|
|
|
@url = url_for(:controller => 'welcome')
|
2018-10-06 13:08:52 +00:00
|
|
|
mail :to => User.current.mail,
|
2012-04-25 17:17:49 +00:00
|
|
|
:subject => 'Redmine test'
|
2007-11-04 10:43:39 +00:00
|
|
|
end
|
2008-02-26 18:30:24 +00:00
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
# Build a MultiMessage to send a test email the given user
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.test_email(user).deliver => send an email to the given user
|
|
|
|
|
def self.test_email(user)
|
|
|
|
|
MultiMessage.new(:test_email).for(user)
|
|
|
|
|
end
|
|
|
|
|
|
2008-05-25 17:31:50 +00:00
|
|
|
# Sends reminders to issue assignees
|
|
|
|
|
# Available options:
|
|
|
|
|
# * :days => how many days in the future to remind about (defaults to 7)
|
|
|
|
|
# * :tracker => id of tracker for filtering issues (defaults to all trackers)
|
|
|
|
|
# * :project => id or identifier of project to process (defaults to all projects)
|
2012-09-09 11:02:13 +00:00
|
|
|
# * :users => array of user/group ids who should be reminded
|
2015-02-07 07:56:58 +00:00
|
|
|
# * :version => name of target version for filtering issues (defaults to none)
|
2008-05-25 17:31:50 +00:00
|
|
|
def self.reminders(options={})
|
|
|
|
|
days = options[:days] || 7
|
|
|
|
|
project = options[:project] ? Project.find(options[:project]) : nil
|
|
|
|
|
tracker = options[:tracker] ? Tracker.find(options[:tracker]) : nil
|
2015-02-07 08:12:06 +00:00
|
|
|
target_version_id = options[:version] ? Version.named(options[:version]).pluck(:id) : nil
|
|
|
|
|
if options[:version] && target_version_id.blank?
|
2018-01-24 03:53:59 +00:00
|
|
|
raise ActiveRecord::RecordNotFound.new("Couldn't find Version named #{options[:version]}")
|
2015-02-07 08:12:06 +00:00
|
|
|
end
|
2010-09-20 23:17:51 +00:00
|
|
|
user_ids = options[:users]
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2012-09-09 11:34:35 +00:00
|
|
|
scope = Issue.open.where("#{Issue.table_name}.assigned_to_id IS NOT NULL" +
|
2011-12-04 23:36:47 +00:00
|
|
|
" AND #{Project.table_name}.status = #{Project::STATUS_ACTIVE}" +
|
2012-09-09 11:34:35 +00:00
|
|
|
" AND #{Issue.table_name}.due_date <= ?", days.day.from_now.to_date
|
2011-12-04 23:36:47 +00:00
|
|
|
)
|
2012-09-09 11:34:35 +00:00
|
|
|
scope = scope.where(:assigned_to_id => user_ids) if user_ids.present?
|
|
|
|
|
scope = scope.where(:project_id => project.id) if project
|
2015-02-07 08:12:06 +00:00
|
|
|
scope = scope.where(:fixed_version_id => target_version_id) if target_version_id.present?
|
2012-09-09 11:34:35 +00:00
|
|
|
scope = scope.where(:tracker_id => tracker.id) if tracker
|
2014-01-27 01:09:09 +00:00
|
|
|
issues_by_assignee = scope.includes(:status, :assigned_to, :project, :tracker).
|
|
|
|
|
group_by(&:assigned_to)
|
2012-09-09 11:02:13 +00:00
|
|
|
issues_by_assignee.keys.each do |assignee|
|
|
|
|
|
if assignee.is_a?(Group)
|
|
|
|
|
assignee.users.each do |user|
|
|
|
|
|
issues_by_assignee[user] ||= []
|
|
|
|
|
issues_by_assignee[user] += issues_by_assignee[assignee]
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2008-05-25 17:31:50 +00:00
|
|
|
issues_by_assignee.each do |assignee, issues|
|
2017-05-13 09:38:05 +00:00
|
|
|
if assignee.is_a?(User) && assignee.active? && issues.present?
|
|
|
|
|
visible_issues = issues.select {|i| i.visible?(assignee)}
|
|
|
|
|
reminder(assignee, visible_issues, days).deliver if visible_issues.present?
|
|
|
|
|
end
|
2008-05-25 17:31:50 +00:00
|
|
|
end
|
|
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2010-03-21 11:17:29 +00:00
|
|
|
# Activates/desactivates email deliveries during +block+
|
|
|
|
|
def self.with_deliveries(enabled = true, &block)
|
|
|
|
|
was_enabled = ActionMailer::Base.perform_deliveries
|
|
|
|
|
ActionMailer::Base.perform_deliveries = !!enabled
|
|
|
|
|
yield
|
|
|
|
|
ensure
|
|
|
|
|
ActionMailer::Base.perform_deliveries = was_enabled
|
|
|
|
|
end
|
2008-02-26 18:30:24 +00:00
|
|
|
|
2012-04-06 18:57:05 +00:00
|
|
|
# Sends emails synchronously in the given block
|
|
|
|
|
def self.with_synched_deliveries(&block)
|
|
|
|
|
saved_method = ActionMailer::Base.delivery_method
|
|
|
|
|
if m = saved_method.to_s.match(%r{^async_(.+)$})
|
2012-07-31 18:09:33 +00:00
|
|
|
synched_method = m[1]
|
|
|
|
|
ActionMailer::Base.delivery_method = synched_method.to_sym
|
|
|
|
|
ActionMailer::Base.send "#{synched_method}_settings=", ActionMailer::Base.send("async_#{synched_method}_settings")
|
2012-04-06 18:57:05 +00:00
|
|
|
end
|
|
|
|
|
yield
|
|
|
|
|
ensure
|
|
|
|
|
ActionMailer::Base.delivery_method = saved_method
|
|
|
|
|
end
|
|
|
|
|
|
2013-10-13 07:58:33 +00:00
|
|
|
def mail(headers={}, &block)
|
2014-12-21 19:46:33 +00:00
|
|
|
headers.reverse_merge! 'X-Mailer' => 'Redmine',
|
2008-03-16 16:52:49 +00:00
|
|
|
'X-Redmine-Host' => Setting.host_name,
|
2009-03-07 15:14:10 +00:00
|
|
|
'X-Redmine-Site' => Setting.app_title,
|
2015-04-11 07:15:38 +00:00
|
|
|
'X-Auto-Response-Suppress' => 'All',
|
2012-04-25 17:17:49 +00:00
|
|
|
'Auto-Submitted' => 'auto-generated',
|
2012-05-13 10:44:41 +00:00
|
|
|
'From' => Setting.mail_from,
|
2018-08-12 23:40:44 +00:00
|
|
|
'List-Id' => "<#{Setting.mail_from.to_s.tr('@', '.')}>"
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2015-01-17 14:14:12 +00:00
|
|
|
# Replaces users with their email addresses
|
|
|
|
|
[:to, :cc, :bcc].each do |key|
|
|
|
|
|
if headers[key].present?
|
|
|
|
|
headers[key] = self.class.email_addresses(headers[key])
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2012-03-12 18:34:12 +00:00
|
|
|
# Removes the author from the recipients and cc
|
2013-07-06 00:04:47 +00:00
|
|
|
# if the author does not want to receive notifications
|
|
|
|
|
# about what the author do
|
2013-05-13 16:38:08 +00:00
|
|
|
if @author && @author.logged? && @author.pref.no_self_notified
|
2015-01-17 14:14:12 +00:00
|
|
|
addresses = @author.mails
|
|
|
|
|
headers[:to] -= addresses if headers[:to].is_a?(Array)
|
|
|
|
|
headers[:cc] -= addresses if headers[:cc].is_a?(Array)
|
2007-12-02 13:52:16 +00:00
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2012-03-12 18:34:12 +00:00
|
|
|
if @author && @author.logged?
|
2012-02-05 12:57:19 +00:00
|
|
|
redmine_headers 'Sender' => @author.login
|
|
|
|
|
end
|
|
|
|
|
|
2007-12-02 13:52:16 +00:00
|
|
|
# Blind carbon copy recipients
|
|
|
|
|
if Setting.bcc_recipients?
|
2012-04-25 17:17:49 +00:00
|
|
|
headers[:bcc] = [headers[:to], headers[:cc]].flatten.uniq.reject(&:blank?)
|
|
|
|
|
headers[:to] = nil
|
|
|
|
|
headers[:cc] = nil
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
if @message_id_object
|
|
|
|
|
headers[:message_id] = "<#{self.class.message_id_for(@message_id_object)}>"
|
|
|
|
|
end
|
|
|
|
|
if @references_objects
|
2013-07-13 09:20:11 +00:00
|
|
|
headers[:references] = @references_objects.collect {|o| "<#{self.class.references_for(o)}>"}.join(' ')
|
2012-04-25 17:17:49 +00:00
|
|
|
end
|
|
|
|
|
|
2018-10-06 13:08:52 +00:00
|
|
|
if block_given?
|
2013-10-13 07:58:33 +00:00
|
|
|
super headers, &block
|
|
|
|
|
else
|
|
|
|
|
super headers do |format|
|
|
|
|
|
format.text
|
|
|
|
|
format.html unless Setting.plain_text_mail?
|
|
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
end
|
2012-04-25 17:17:49 +00:00
|
|
|
end
|
2013-05-25 05:35:13 +00:00
|
|
|
|
2012-04-25 17:17:49 +00:00
|
|
|
def self.deliver_mail(mail)
|
|
|
|
|
return false if mail.to.blank? && mail.cc.blank? && mail.bcc.blank?
|
2013-07-13 08:11:20 +00:00
|
|
|
begin
|
|
|
|
|
# Log errors when raise_delivery_errors is set to false, Rails does not
|
|
|
|
|
mail.raise_delivery_errors = true
|
|
|
|
|
super
|
|
|
|
|
rescue Exception => e
|
|
|
|
|
if ActionMailer::Base.raise_delivery_errors
|
|
|
|
|
raise e
|
|
|
|
|
else
|
|
|
|
|
Rails.logger.error "Email delivery error: #{e.message}"
|
|
|
|
|
end
|
|
|
|
|
end
|
2007-11-12 16:43:49 +00:00
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2012-04-25 17:17:49 +00:00
|
|
|
def self.method_missing(method, *args, &block)
|
|
|
|
|
if m = method.to_s.match(%r{^deliver_(.+)$})
|
2012-05-05 13:17:18 +00:00
|
|
|
ActiveSupport::Deprecation.warn "Mailer.deliver_#{m[1]}(*args) is deprecated. Use Mailer.#{m[1]}(*args).deliver instead."
|
2012-04-25 17:17:49 +00:00
|
|
|
send(m[1], *args).deliver
|
2018-10-06 13:08:52 +00:00
|
|
|
elsif action_methods.include?(method.to_s)
|
|
|
|
|
MultiMessage.new(method, *args).for(User.current)
|
2009-10-24 11:57:01 +00:00
|
|
|
else
|
2012-04-25 17:17:49 +00:00
|
|
|
super
|
2009-10-24 11:57:01 +00:00
|
|
|
end
|
2008-10-15 23:50:33 +00:00
|
|
|
end
|
2008-11-07 15:37:17 +00:00
|
|
|
|
2015-01-17 14:14:12 +00:00
|
|
|
# Returns an array of email addresses to notify by
|
|
|
|
|
# replacing users in arg with their notified email addresses
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# Mailer.email_addresses(users)
|
|
|
|
|
# => ["foo@example.net", "bar@example.net"]
|
|
|
|
|
def self.email_addresses(arg)
|
|
|
|
|
arr = Array.wrap(arg)
|
|
|
|
|
mails = arr.reject {|a| a.is_a? Principal}
|
|
|
|
|
users = arr - mails
|
|
|
|
|
if users.any?
|
|
|
|
|
mails += EmailAddress.
|
|
|
|
|
where(:user_id => users.map(&:id)).
|
|
|
|
|
where("is_default = ? OR notify = ?", true, true).
|
|
|
|
|
pluck(:address)
|
|
|
|
|
end
|
|
|
|
|
mails
|
|
|
|
|
end
|
|
|
|
|
|
2012-04-25 17:17:49 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
|
|
# Appends a Redmine header field (name is prepended with 'X-Redmine-')
|
|
|
|
|
def redmine_headers(h)
|
|
|
|
|
h.each { |k,v| headers["X-Redmine-#{k}"] = v.to_s }
|
|
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2013-07-13 09:20:11 +00:00
|
|
|
def self.token_for(object, rand=true)
|
2011-05-17 03:57:10 +00:00
|
|
|
timestamp = object.send(object.respond_to?(:created_on) ? :created_on : :updated_on)
|
2013-07-13 09:20:11 +00:00
|
|
|
hash = [
|
|
|
|
|
"redmine",
|
|
|
|
|
"#{object.class.name.demodulize.underscore}-#{object.id}",
|
|
|
|
|
timestamp.strftime("%Y%m%d%H%M%S")
|
|
|
|
|
]
|
|
|
|
|
if rand
|
|
|
|
|
hash << Redmine::Utils.random_hex(8)
|
|
|
|
|
end
|
2014-05-02 07:56:11 +00:00
|
|
|
host = Setting.mail_from.to_s.strip.gsub(%r{^.*@|>}, '')
|
2009-01-18 15:16:31 +00:00
|
|
|
host = "#{::Socket.gethostname}.redmine" if host.empty?
|
2013-07-13 09:20:11 +00:00
|
|
|
"#{hash.join('.')}@#{host}"
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Returns a Message-Id for the given object
|
|
|
|
|
def self.message_id_for(object)
|
|
|
|
|
token_for(object, true)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# Returns a uniq token for a given object referenced by all notifications
|
|
|
|
|
# related to this object
|
|
|
|
|
def self.references_for(object)
|
|
|
|
|
token_for(object, false)
|
2009-01-18 15:16:31 +00:00
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2009-01-18 15:16:31 +00:00
|
|
|
def message_id(object)
|
|
|
|
|
@message_id_object = object
|
|
|
|
|
end
|
2011-05-17 03:57:10 +00:00
|
|
|
|
2009-01-18 15:16:31 +00:00
|
|
|
def references(object)
|
|
|
|
|
@references_objects ||= []
|
|
|
|
|
@references_objects << object
|
|
|
|
|
end
|
|
|
|
|
end
|