2011-10-08 23:36:38 +02:00
|
|
|
class Notify < ActionMailer::Base
|
2013-01-09 06:44:05 +01:00
|
|
|
|
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-12-15 01:16:25 +01:00
|
|
|
default_url_options[:host] = Gitlab.config.gitlab.host
|
|
|
|
default_url_options[:protocol] = Gitlab.config.gitlab.protocol
|
|
|
|
default_url_options[:port] = Gitlab.config.gitlab.port if Gitlab.config.gitlab_on_non_standard_port?
|
2012-12-28 19:11:28 +01:00
|
|
|
default_url_options[:script_name] = Gitlab.config.gitlab.relative_url_root
|
2012-03-31 14:59:06 +02:00
|
|
|
|
2012-12-15 01:16:25 +01:00
|
|
|
default from: Gitlab.config.gitlab.email_from
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2013-02-01 16:04:41 +01:00
|
|
|
# Just send email with 3 seconds delay
|
|
|
|
def self.delay
|
|
|
|
delay_for(2.seconds)
|
|
|
|
end
|
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
|
2012-12-20 22:04:27 +01:00
|
|
|
@project = @issue.project
|
2012-10-13 20:55:50 +02:00
|
|
|
@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
|
|
|
|
#
|
|
|
|
|
2013-02-01 07:59:30 +01:00
|
|
|
def note_commit_email(recipient_id, note_id)
|
2012-05-16 01:20:15 +02:00
|
|
|
@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
|
2013-02-01 07:59:30 +01: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-12-30 19:26:09 +01:00
|
|
|
mail(to: recipient(recipient_id), subject: subject("note on wall"))
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
2012-05-16 00:50:36 +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
|
2012-11-29 04:14:05 +01:00
|
|
|
mail(to: @users_project.user.email,
|
2012-08-26 23:13:03 +02:00
|
|
|
subject: subject("access to project was granted"))
|
|
|
|
end
|
|
|
|
|
2012-10-13 20:55:50 +02:00
|
|
|
|
2012-12-20 21:16:51 +01:00
|
|
|
def project_was_moved_email(user_project_id)
|
|
|
|
@users_project = UsersProject.find user_project_id
|
|
|
|
@project = @users_project.project
|
|
|
|
mail(to: @users_project.user.email,
|
|
|
|
subject: subject("project was moved"))
|
|
|
|
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-12-31 18:46:40 +01:00
|
|
|
# => "GitLab | Ruby on Rails | Lorem ipsum "
|
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-12-31 18:46:40 +01:00
|
|
|
subject = "GitLab"
|
|
|
|
subject << (@project ? " | #{@project.name_with_namespace}" : "")
|
|
|
|
subject << " | " + extra.join(' | ') if extra.present?
|
|
|
|
subject
|
2011-12-18 15:07:47 +01:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|