summaryrefslogtreecommitdiff
path: root/app/mailers/notify.rb
blob: bb46ba04f0816147a8fdef112cc4eb06c0a9e99f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
class Notify < ActionMailer::Base
  include Resque::Mailer
  add_template_helper ApplicationHelper

  default_url_options[:host] = EMAIL_OPTS["host"]
  default_url_options[:protocol] = -> { EMAIL_OPTS["protocol"] ? EMAIL_OPTS["protocol"] : "http" }.call

  default from: EMAIL_OPTS["from"]

  def new_user_email(user_id, password)
    @user = User.find(user_id)
    @password = password
    mail(:to => @user.email, :subject => "gitlab | Account was created for you")
  end

  def new_issue_email(issue)
    @issue = Issue.find(issue['id'])
    @user = @issue.assignee
    @project = @issue.project

    mail(:to => @user.email, :subject => "gitlab | New Issue was created")
  end

  def note_wall_email(recipient_id, note_id)
    recipient = User.find(recipient_id)
    @note = Note.find(note_id)
    mail(:to => recipient.email, :subject => "gitlab | #{@note.project.name} ")
  end

  def note_commit_email(recipient_id, note_id)
    recipient = User.find(recipient_id)
    @note = Note.find(note_id)
    @commit = @note.target
    mail(:to => recipient.email, :subject => "gitlab | note for commit | #{@note.project.name} ")
  end

  def note_merge_request_email(recipient_id, note_id)
    recipient = User.find(recipient_id)
    @note = Note.find(note_id)
    @merge_request = @note.noteable
    mail(:to => recipient.email, :subject => "gitlab | note for merge request | #{@note.project.name} ")
  end

  def note_issue_email(recipient_id, note_id)
    recipient = User.find(recipient_id)
    @note = Note.find(note_id)
    @issue = @note.noteable
    mail(:to => recipient.email, :subject => "gitlab | note for issue #{@issue.id} | #{@note.project.name} ")
  end

  def new_merge_request_email(merge_request)
    @merge_request = MergeRequest.find(merge_request['id'])
    @user = @merge_request.assignee
    @project = @merge_request.project
    mail(:to => @user.email, :subject => "gitlab | new merge request | #{@merge_request.title} ")
  end

  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} ")
  end

  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} ")
  end
end