2011-10-09 00:36:38 +03:00
|
|
|
class Notify < ActionMailer::Base
|
2012-05-12 17:01:09 +08:00
|
|
|
include Resque::Mailer
|
2012-04-23 15:32:56 +03:00
|
|
|
add_template_helper ApplicationHelper
|
|
|
|
|
2011-11-25 20:50:27 +02:00
|
|
|
default_url_options[:host] = EMAIL_OPTS["host"]
|
2012-03-31 15:59:06 +03:00
|
|
|
default_url_options[:protocol] = -> { EMAIL_OPTS["protocol"] ? EMAIL_OPTS["protocol"] : "http" }.call
|
|
|
|
|
2011-11-25 20:50:27 +02:00
|
|
|
default from: EMAIL_OPTS["from"]
|
2011-10-09 00:36:38 +03:00
|
|
|
|
2012-05-14 23:07:36 -04:00
|
|
|
def new_user_email(user_id, password)
|
|
|
|
@user = User.find(user_id)
|
2011-10-09 00:36:38 +03:00
|
|
|
@password = password
|
2012-05-14 23:07:36 -04:00
|
|
|
mail(:to => @user.email, :subject => "gitlab | Account was created for you")
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
2012-05-15 19:36:48 -04: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-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
2012-05-15 19:21:12 -04:00
|
|
|
def note_wall_email(recipient_id, note_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-05-15 19:25:21 -04:00
|
|
|
mail(:to => recipient.email, :subject => "gitlab | #{@note.project_name} ")
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
2012-05-15 19:20:15 -04:00
|
|
|
def note_commit_email(recipient_id, note_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-02-10 10:59:39 +08:00
|
|
|
@commit = @note.target
|
2012-05-15 19:25:21 -04:00
|
|
|
mail(:to => recipient.email, :subject => "gitlab | note for commit | #{@note.project_name} ")
|
2011-12-18 16:29:58 +02:00
|
|
|
end
|
2012-05-15 18:48:00 -04:00
|
|
|
|
|
|
|
def note_merge_request_email(recipient_id, note_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-05-12 17:01:09 +08:00
|
|
|
@merge_request = @note.noteable
|
2012-05-15 19:25:21 -04:00
|
|
|
mail(:to => recipient.email, :subject => "gitlab | note for merge request | #{@note.project_name} ")
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
|
|
|
|
2012-05-15 18:50:36 -04:00
|
|
|
def note_issue_email(recipient_id, note_id)
|
|
|
|
recipient = User.find(recipient_id)
|
|
|
|
@note = Note.find(note_id)
|
2012-05-12 17:01:09 +08:00
|
|
|
@issue = @note.noteable
|
2012-05-15 19:25:21 -04:00
|
|
|
mail(:to => recipient.email, :subject => "gitlab | note for issue #{@issue.id} | #{@note.project_name} ")
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|
2012-05-15 18:50:36 -04:00
|
|
|
|
2012-05-15 19:41:37 -04: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 18:07:28 +02:00
|
|
|
end
|
2012-05-14 23:42:47 -04: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 15:46:06 +02:00
|
|
|
end
|
2012-05-14 23:27:52 -04: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 16:07:47 +02:00
|
|
|
end
|
2011-10-09 00:36:38 +03:00
|
|
|
end
|