mailer.rb
194 lines
| 7.4 KiB
| text/x-ruby
|
RubyLexer
|
r330 | # redMine - project management software | ||
# Copyright (C) 2006-2007 Jean-Philippe Lang | ||||
# | ||||
# 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. | ||||
# | ||||
# 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. | ||||
# | ||||
# 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. | ||||
class Mailer < ActionMailer::Base | ||||
|
r1153 | helper :application | ||
helper :issues | ||||
helper :custom_fields | ||||
|
r543 | |||
|
r864 | include ActionController::UrlWriter | ||
def issue_add(issue) | ||||
|
r1250 | 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 | ||||
|
r864 | recipients issue.recipients | ||
|
r1065 | subject "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] (#{issue.status.name}) #{issue.subject}" | ||
|
r864 | body :issue => issue, | ||
:issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue) | ||||
|
r330 | end | ||
def issue_edit(journal) | ||||
issue = journal.journalized | ||||
|
r1250 | 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 | ||||
|
r864 | recipients issue.recipients | ||
|
r450 | # Watchers in cc | ||
|
r864 | cc(issue.watcher_recipients - @recipients) | ||
|
r1065 | s = "[#{issue.project.name} - #{issue.tracker.name} ##{issue.id}] " | ||
s << "(#{issue.status.name}) " if journal.new_value_for('status_id') | ||||
s << issue.subject | ||||
subject s | ||||
|
r864 | body :issue => issue, | ||
:journal => journal, | ||||
:issue_url => url_for(:controller => 'issues', :action => 'show', :id => issue) | ||||
|
r330 | end | ||
|
r823 | def document_added(document) | ||
|
r1250 | redmine_headers 'Project' => document.project.identifier | ||
|
r864 | recipients document.project.recipients | ||
subject "[#{document.project.name}] #{l(:label_document_new)}: #{document.title}" | ||||
body :document => document, | ||||
:document_url => url_for(:controller => 'documents', :action => 'show', :id => document) | ||||
|
r330 | end | ||
|
r823 | def attachments_added(attachments) | ||
|
r330 | container = attachments.first.container | ||
|
r658 | added_to = '' | ||
|
r864 | added_to_url = '' | ||
|
r658 | case container.class.name | ||
|
r330 | when 'Version' | ||
|
r864 | added_to_url = url_for(:controller => 'projects', :action => 'list_files', :id => container.project_id) | ||
|
r330 | added_to = "#{l(:label_version)}: #{container.name}" | ||
when 'Document' | ||||
|
r864 | added_to_url = url_for(:controller => 'documents', :action => 'show', :id => container.id) | ||
|
r330 | added_to = "#{l(:label_document)}: #{container.title}" | ||
end | ||||
|
r1250 | redmine_headers 'Project' => container.project.identifier | ||
|
r864 | recipients container.project.recipients | ||
subject "[#{container.project.name}] #{l(:label_attachment_new)}" | ||||
body :attachments => attachments, | ||||
:added_to => added_to, | ||||
:added_to_url => added_to_url | ||||
|
r330 | end | ||
|
r717 | |||
def news_added(news) | ||||
|
r1250 | redmine_headers 'Project' => news.project.identifier | ||
|
r864 | recipients news.project.recipients | ||
subject "[#{news.project.name}] #{l(:label_news)}: #{news.title}" | ||||
body :news => news, | ||||
:news_url => url_for(:controller => 'news', :action => 'show', :id => news) | ||||
|
r717 | end | ||
|
r864 | |||
def message_posted(message, recipients) | ||||
|
r1250 | redmine_headers 'Project' => message.project.identifier, | ||
'Topic-Id' => (message.parent_id || message.id) | ||||
|
r864 | recipients(recipients) | ||
subject "[#{message.board.project.name} - #{message.board.name}] #{message.subject}" | ||||
body :message => message, | ||||
:message_url => url_for(:controller => 'messages', :action => 'show', :board_id => message.board_id, :id => message.root) | ||||
end | ||||
def account_information(user, password) | ||||
set_language_if_valid user.language | ||||
recipients user.mail | ||||
|
r1239 | subject l(:mail_subject_register, Setting.app_title) | ||
|
r864 | body :user => user, | ||
:password => password, | ||||
:login_url => url_for(:controller => 'account', :action => 'login') | ||||
end | ||||
|
r902 | |||
def account_activation_request(user) | ||||
# Send the email to all active administrators | ||||
recipients User.find_active(:all, :conditions => {:admin => true}).collect { |u| u.mail }.compact | ||||
|
r1239 | subject l(:mail_subject_account_activation_request, Setting.app_title) | ||
|
r902 | body :user => user, | ||
:url => url_for(:controller => 'users', :action => 'index', :status => User::STATUS_REGISTERED, :sort_key => 'created_on', :sort_order => 'desc') | ||||
end | ||||
|
r864 | |||
|
r330 | def lost_password(token) | ||
set_language_if_valid(token.user.language) | ||||
|
r864 | recipients token.user.mail | ||
|
r1239 | subject l(:mail_subject_lost_password, Setting.app_title) | ||
|
r864 | body :token => token, | ||
:url => url_for(:controller => 'account', :action => 'lost_password', :token => token.value) | ||||
|
r10 | end | ||
|
r330 | |||
def register(token) | ||||
set_language_if_valid(token.user.language) | ||||
|
r864 | recipients token.user.mail | ||
|
r1239 | subject l(:mail_subject_register, Setting.app_title) | ||
|
r864 | body :token => token, | ||
|
r902 | :url => url_for(:controller => 'account', :action => 'activate', :token => token.value) | ||
|
r528 | end | ||
|
r629 | |||
def test(user) | ||||
set_language_if_valid(user.language) | ||||
|
r864 | recipients user.mail | ||
subject 'Redmine test' | ||||
body :url => url_for(:controller => 'welcome') | ||||
end | ||||
|
r1160 | |||
# Overrides default deliver! method to prevent from sending an email | ||||
# with no recipient, cc or bcc | ||||
def deliver!(mail = @mail) | ||||
return false if (recipients.nil? || recipients.empty?) && | ||||
(cc.nil? || cc.empty?) && | ||||
(bcc.nil? || bcc.empty?) | ||||
super | ||||
end | ||||
|
r864 | private | ||
def initialize_defaults(method_name) | ||||
super | ||||
set_language_if_valid Setting.default_language | ||||
from Setting.mail_from | ||||
default_url_options[:host] = Setting.host_name | ||||
default_url_options[:protocol] = Setting.protocol | ||||
|
r1250 | # Common headers | ||
headers 'X-Mailer' => 'Redmine', | ||||
'X-Redmine-Host' => Setting.host_name, | ||||
'X-Redmine-Site' => Setting.app_title | ||||
end | ||||
# Appends a Redmine header field (name is prepended with 'X-Redmine-') | ||||
def redmine_headers(h) | ||||
h.each { |k,v| headers["X-Redmine-#{k}"] = v } | ||||
|
r864 | end | ||
|
r931 | # Overrides the create_mail method | ||
|
r886 | def create_mail | ||
|
r931 | # Removes the current user from the recipients and cc | ||
# if he doesn't want to receive notifications about what he does | ||||
if User.current.pref[:no_self_notified] | ||||
recipients.delete(User.current.mail) if recipients | ||||
cc.delete(User.current.mail) if cc | ||||
end | ||||
# Blind carbon copy recipients | ||||
if Setting.bcc_recipients? | ||||
bcc([recipients, cc].flatten.compact.uniq) | ||||
recipients [] | ||||
cc [] | ||||
end | ||||
|
r886 | super | ||
end | ||||
|
r864 | # Renders a message with the corresponding layout | ||
def render_message(method_name, body) | ||||
layout = method_name.match(%r{text\.html\.(rhtml|rxml)}) ? 'layout.text.html.rhtml' : 'layout.text.plain.rhtml' | ||||
body[:content_for_layout] = render(:file => method_name, :body => body) | ||||
|
r962 | ActionView::Base.new(template_root, body, self).render(:file => "mailer/#{layout}") | ||
|
r629 | end | ||
|
r962 | |||
# Makes partial rendering work with Rails 1.2 (retro-compatibility) | ||||
def self.controller_path | ||||
'' | ||||
end unless respond_to?('controller_path') | ||||
|
r2 | end | ||