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-05-15 05:07:36 +02:00
|
|
|
def new_user_email(user_id, password)
|
|
|
|
@user = User.find(user_id)
|
2011-10-08 23:36:38 +02:00
|
|
|
@password = password
|
2012-08-11 00:07:50 +02:00
|
|
|
mail(to: @user.email, subject: "gitlab | Account was created for you")
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
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-11 00:07:50 +02:00
|
|
|
mail(to: @issue.assignee_email, subject: "gitlab | new issue ##{@issue.id} | #{@issue.title} | #{@project.name}")
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-05-16 01:21:12 +02:00
|
|
|
def note_wall_email(recipient_id, note_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @note.project
|
2012-08-11 00:07:50 +02:00
|
|
|
mail(to: recipient.email, subject: "gitlab | #{@project.name}")
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-05-16 01:20:15 +02:00
|
|
|
def note_commit_email(recipient_id, note_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-02-10 03:59:39 +01:00
|
|
|
@commit = @note.target
|
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-11 00:07:50 +02:00
|
|
|
mail(to: recipient.email, subject: "gitlab | note for commit #{@commit.short_id} | #{@commit.title} | #{@project.name}")
|
2011-12-18 15:29:58 +01:00
|
|
|
end
|
2012-05-16 00:48:00 +02:00
|
|
|
|
|
|
|
def note_merge_request_email(recipient_id, note_id)
|
|
|
|
recipient = User.find(recipient_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-11 00:07:50 +02:00
|
|
|
mail(to: recipient.email, subject: "gitlab | note for merge request !#{@merge_request.id} | #{@project.name}")
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-05-16 00:50:36 +02:00
|
|
|
def note_issue_email(recipient_id, note_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-05-12 11:01:09 +02:00
|
|
|
@issue = @note.noteable
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @note.project
|
2012-08-11 00:07:50 +02:00
|
|
|
mail(to: recipient.email, subject: "gitlab | note for issue ##{@issue.id} | #{@project.name}")
|
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)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@note = Note.find(note_id)
|
|
|
|
@wiki = @note.noteable
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @note.project
|
2012-08-11 00:07:50 +02:00
|
|
|
mail(to: recipient.email, subject: "gitlab | note for wiki | #{@project.name}")
|
2012-07-20 02:09:19 +02:00
|
|
|
end
|
|
|
|
|
2012-05-16 01:41:37 +02:00
|
|
|
def new_merge_request_email(merge_request_id)
|
|
|
|
@merge_request = MergeRequest.find(merge_request_id)
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @merge_request.project
|
2012-08-11 00:07:50 +02:00
|
|
|
mail(to: @merge_request.assignee_email, subject: "gitlab | new merge request !#{@merge_request.id} | #{@merge_request.title} | #{@project.name}")
|
2011-12-17 17:07:28 +01:00
|
|
|
end
|
2012-05-15 05:42:47 +02:00
|
|
|
|
|
|
|
def reassigned_merge_request_email(recipient_id, merge_request_id, previous_assignee_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@merge_request = MergeRequest.find(merge_request_id)
|
|
|
|
@previous_assignee ||= User.find(previous_assignee_id)
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @merge_request.project
|
2012-08-11 00:07:50 +02:00
|
|
|
mail(to: recipient.email, subject: "gitlab | changed merge request !#{@merge_request.id} | #{@merge_request.title} | #{@project.name}")
|
2011-12-18 14:46:06 +01:00
|
|
|
end
|
2012-05-15 05:27:52 +02:00
|
|
|
|
|
|
|
def reassigned_issue_email(recipient_id, issue_id, previous_assignee_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@issue = Issue.find(issue_id)
|
|
|
|
@previous_assignee ||= User.find(previous_assignee_id)
|
2012-08-06 03:16:06 +02:00
|
|
|
@project = @issue.project
|
2012-08-11 00:07:50 +02:00
|
|
|
mail(to: recipient.email, subject: "gitlab | changed issue ##{@issue.id} | #{@issue.title} | #{@project.name}")
|
2011-12-18 15:07:47 +01:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|