2011-10-08 23:36:38 +02:00
|
|
|
class Notify < ActionMailer::Base
|
2012-05-12 11:01:09 +02:00
|
|
|
include Resque::Mailer
|
2012-04-23 14:32:56 +02:00
|
|
|
add_template_helper ApplicationHelper
|
2012-08-09 05:02:55 +02:00
|
|
|
add_template_helper GitlabMarkdownHelper
|
2012-04-23 14:32:56 +02:00
|
|
|
|
2012-07-02 20:51:48 +02:00
|
|
|
default_url_options[:host] = Gitlab.config.web_host
|
2012-07-02 20:51:48 +02:00
|
|
|
default_url_options[:protocol] = Gitlab.config.web_protocol
|
2012-07-03 17:52:48 +02:00
|
|
|
default_url_options[:port] = Gitlab.config.web_port if Gitlab.config.web_custom_port?
|
2012-03-31 14:59:06 +02:00
|
|
|
|
2012-07-02 20:51:48 +02:00
|
|
|
default from: Gitlab.config.email_from
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Issue
|
|
|
|
#
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2012-05-16 01:36:48 +02:00
|
|
|
def new_issue_email(issue_id)
|
|
|
|
@issue = Issue.find(issue_id)
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @issue.project
|
2012-08-21 05:04:53 +02:00
|
|
|
mail(to: @issue.assignee_email, subject: subject("new issue ##{@issue.id}", @issue.title))
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
def reassigned_issue_email(recipient_id, issue_id, previous_assignee_id)
|
|
|
|
@issue = Issue.find(issue_id)
|
|
|
|
@previous_assignee ||= User.find(previous_assignee_id)
|
|
|
|
@project = @issue.project
|
|
|
|
mail(to: recipient(recipient_id), subject: subject("changed issue ##{@issue.id}", @issue.title))
|
|
|
|
end
|
|
|
|
|
|
|
|
def issue_status_changed_email(recipient_id, issue_id, status, updated_by_user_id)
|
|
|
|
@issue = Issue.find issue_id
|
|
|
|
@issue_status = status
|
|
|
|
@updated_by = User.find updated_by_user_id
|
|
|
|
mail(to: recipient(recipient_id),
|
|
|
|
subject: subject("changed issue ##{@issue.id}", @issue.title))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Merge Request
|
|
|
|
#
|
|
|
|
|
|
|
|
def new_merge_request_email(merge_request_id)
|
|
|
|
@merge_request = MergeRequest.find(merge_request_id)
|
|
|
|
@project = @merge_request.project
|
|
|
|
mail(to: @merge_request.assignee_email, subject: subject("new merge request !#{@merge_request.id}", @merge_request.title))
|
|
|
|
end
|
|
|
|
|
|
|
|
def reassigned_merge_request_email(recipient_id, merge_request_id, previous_assignee_id)
|
|
|
|
@merge_request = MergeRequest.find(merge_request_id)
|
|
|
|
@previous_assignee ||= User.find(previous_assignee_id)
|
|
|
|
@project = @merge_request.project
|
|
|
|
mail(to: recipient(recipient_id), subject: subject("changed merge request !#{@merge_request.id}", @merge_request.title))
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Note
|
|
|
|
#
|
|
|
|
|
2012-05-16 01:20:15 +02:00
|
|
|
def note_commit_email(recipient_id, note_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-10-13 16:23:12 +02:00
|
|
|
@commit = @note.noteable
|
2012-08-06 05:08:22 +02:00
|
|
|
@commit = CommitDecorator.decorate(@commit)
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @note.project
|
2012-08-21 05:18:57 +02:00
|
|
|
mail(to: recipient(recipient_id), subject: subject("note for commit #{@commit.short_id}", @commit.title))
|
2011-12-18 15:29:58 +01:00
|
|
|
end
|
2012-05-16 00:48:00 +02:00
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
def note_issue_email(recipient_id, note_id)
|
|
|
|
@note = Note.find(note_id)
|
|
|
|
@issue = @note.noteable
|
|
|
|
@project = @note.project
|
|
|
|
mail(to: recipient(recipient_id), subject: subject("note for issue ##{@issue.id}"))
|
|
|
|
end
|
|
|
|
|
2012-05-16 00:48:00 +02:00
|
|
|
def note_merge_request_email(recipient_id, note_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-05-12 11:01:09 +02:00
|
|
|
@merge_request = @note.noteable
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @note.project
|
2012-08-21 05:18:57 +02:00
|
|
|
mail(to: recipient(recipient_id), subject: subject("note for merge request !#{@merge_request.id}"))
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
def note_wall_email(recipient_id, note_id)
|
2012-05-16 00:50:36 +02:00
|
|
|
@note = Note.find(note_id)
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @note.project
|
2012-10-13 20:55:50 +02:00
|
|
|
mail(to: recipient(recipient_id), subject: subject)
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
2012-05-16 00:50:36 +02:00
|
|
|
|
2012-07-20 02:09:19 +02:00
|
|
|
def note_wiki_email(recipient_id, note_id)
|
|
|
|
@note = Note.find(note_id)
|
|
|
|
@wiki = @note.noteable
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @note.project
|
2012-08-21 05:18:57 +02:00
|
|
|
mail(to: recipient(recipient_id), subject: subject("note for wiki"))
|
2012-07-20 02:09:19 +02:00
|
|
|
end
|
|
|
|
|
2012-05-15 05:42:47 +02:00
|
|
|
|
2012-05-15 05:27:52 +02:00
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
#
|
|
|
|
# Project
|
|
|
|
#
|
2012-08-21 05:04:53 +02:00
|
|
|
|
2012-08-26 23:13:03 +02:00
|
|
|
def project_access_granted_email(user_project_id)
|
|
|
|
@users_project = UsersProject.find user_project_id
|
|
|
|
@project = @users_project.project
|
|
|
|
mail(to: @users_project.user.email,
|
|
|
|
subject: subject("access to project was granted"))
|
|
|
|
end
|
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# User
|
|
|
|
#
|
|
|
|
|
|
|
|
def new_user_email(user_id, password)
|
|
|
|
@user = User.find(user_id)
|
|
|
|
@password = password
|
|
|
|
mail(to: @user.email, subject: subject("Account was created for you"))
|
2012-08-29 08:49:39 +02:00
|
|
|
end
|
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
|
2012-08-21 05:04:53 +02:00
|
|
|
private
|
|
|
|
|
2012-08-21 05:18:57 +02:00
|
|
|
# Look up a User by their ID and return their email address
|
|
|
|
#
|
|
|
|
# recipient_id - User ID
|
|
|
|
#
|
|
|
|
# Returns a String containing the User's email address.
|
|
|
|
def recipient(recipient_id)
|
|
|
|
if recipient = User.find(recipient_id)
|
|
|
|
recipient.email
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-21 05:04:53 +02:00
|
|
|
# Formats arguments into a String suitable for use as an email subject
|
|
|
|
#
|
|
|
|
# extra - Extra Strings to be inserted into the subject
|
|
|
|
#
|
|
|
|
# Examples
|
|
|
|
#
|
|
|
|
# >> subject('Lorem ipsum')
|
2012-09-06 09:50:47 +02:00
|
|
|
# => "GitLab | Lorem ipsum"
|
2012-08-21 05:04:53 +02:00
|
|
|
#
|
|
|
|
# # Automatically inserts Project name when @project is set
|
|
|
|
# >> @project = Project.last
|
|
|
|
# => #<Project id: 1, name: "Ruby on Rails", path: "ruby_on_rails", ...>
|
|
|
|
# >> subject('Lorem ipsum')
|
2012-09-06 09:50:47 +02:00
|
|
|
# => "GitLab | Lorem ipsum | Ruby on Rails"
|
2012-08-21 05:04:53 +02:00
|
|
|
#
|
|
|
|
# # Accepts multiple arguments
|
|
|
|
# >> subject('Lorem ipsum', 'Dolor sit amet')
|
2012-09-06 09:50:47 +02:00
|
|
|
# => "GitLab | Lorem ipsum | Dolor sit amet"
|
2012-08-21 05:04:53 +02:00
|
|
|
def subject(*extra)
|
2012-09-06 09:50:47 +02:00
|
|
|
"GitLab | " << extra.join(' | ') << (@project ? " | #{@project.name}" : "")
|
2011-12-18 15:07:47 +01:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|