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
|
|
|
|
|
2011-11-25 19:50:27 +01:00
|
|
|
default_url_options[:host] = EMAIL_OPTS["host"]
|
2012-03-31 14:59:06 +02:00
|
|
|
default_url_options[:protocol] = -> { EMAIL_OPTS["protocol"] ? EMAIL_OPTS["protocol"] : "http" }.call
|
|
|
|
|
2011-11-25 19:50:27 +01:00
|
|
|
default from: EMAIL_OPTS["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-05-15 05:07:36 +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)
|
|
|
|
mail(:to => @issue.assignee_email, :subject => "gitlab | New Issue was created")
|
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-05-16 01:25:21 +02:00
|
|
|
mail(:to => recipient.email, :subject => "gitlab | #{@note.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-05-16 01:25:21 +02:00
|
|
|
mail(:to => recipient.email, :subject => "gitlab | note for commit | #{@note.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-05-16 01:25:21 +02:00
|
|
|
mail(:to => recipient.email, :subject => "gitlab | note for merge request | #{@note.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-05-16 01:25:21 +02:00
|
|
|
mail(:to => recipient.email, :subject => "gitlab | note for issue #{@issue.id} | #{@note.project_name} ")
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
2012-05-16 00:50:36 +02:00
|
|
|
|
2012-05-16 01:41:37 +02:00
|
|
|
def new_merge_request_email(merge_request_id)
|
|
|
|
@merge_request = MergeRequest.find(merge_request_id)
|
|
|
|
mail(:to => @merge_request.assignee_email, :subject => "gitlab | new merge request | #{@merge_request.title} ")
|
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)
|
|
|
|
mail(:to => recipient.email, :subject => "gitlab | merge request changed | #{@merge_request.title} ")
|
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)
|
|
|
|
mail(:to => recipient.email, :subject => "gitlab | changed issue | #{@issue.title} ")
|
2011-12-18 15:07:47 +01:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|