notify.rb 4.7 KB
Newer Older
G
gitlabhq 已提交
1
class Notify < ActionMailer::Base
D
sidekiq  
Dmitriy Zaporozhets 已提交
2
  include Sidekiq::Mailer
G
gitlabhq 已提交
3
  add_template_helper ApplicationHelper
D
Dmitriy Zaporozhets 已提交
4
  add_template_helper GitlabMarkdownHelper
G
gitlabhq 已提交
5

6 7 8
  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?
9
  default_url_options[:script_name] = Gitlab.config.gitlab.relative_url_root
D
Dmitriy Zaporozhets 已提交
10

11
  default from: Gitlab.config.gitlab.email_from
G
gitlabhq 已提交
12

13 14 15 16 17


  #
  # Issue
  #
G
gitlabhq 已提交
18

19 20
  def new_issue_email(issue_id)
    @issue = Issue.find(issue_id)
R
Riyad Preukschas 已提交
21
    @project = @issue.project
22
    mail(to: @issue.assignee_email, subject: subject("new issue ##{@issue.id}", @issue.title))
G
gitlabhq 已提交
23 24
  end

25 26 27 28 29 30 31 32 33 34
  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
35
    @project = @issue.project
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
    @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))
G
gitlabhq 已提交
58 59
  end

60 61 62 63 64 65


  #
  # Note
  #

66 67
  def note_commit_email(recipient_id, note_id)
    @note = Note.find(note_id)
R
Riyad Preukschas 已提交
68
    @commit = @note.noteable
69
    @commit = CommitDecorator.decorate(@commit)
R
Riyad Preukschas 已提交
70
    @project = @note.project
71
    mail(to: recipient(recipient_id), subject: subject("note for commit #{@commit.short_id}", @commit.title))
72
  end
73

74 75 76 77 78 79 80
  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

81 82
  def note_merge_request_email(recipient_id, note_id)
    @note = Note.find(note_id)
83
    @merge_request = @note.noteable
R
Riyad Preukschas 已提交
84
    @project = @note.project
85
    mail(to: recipient(recipient_id), subject: subject("note for merge request !#{@merge_request.id}"))
G
gitlabhq 已提交
86 87
  end

88
  def note_wall_email(recipient_id, note_id)
89
    @note = Note.find(note_id)
R
Riyad Preukschas 已提交
90
    @project = @note.project
91
    mail(to: recipient(recipient_id), subject: subject("note on wall"))
G
gitlabhq 已提交
92
  end
93

94

95 96 97
  #
  # Project
  #
98

99 100 101
  def project_access_granted_email(user_project_id)
    @users_project = UsersProject.find user_project_id
    @project = @users_project.project
102
    mail(to: @users_project.user.email,
103 104 105
         subject: subject("access to project was granted"))
  end

106

107 108 109 110 111 112
  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
113 114 115 116 117 118 119 120 121

  #
  # 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"))
A
Alex Denisov 已提交
122 123
  end

124

125 126
  private

127 128 129 130 131 132 133 134 135 136 137
  # 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

138 139 140 141 142 143 144
  # 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')
145
  #   => "GitLab | Lorem ipsum"
146 147 148 149 150
  #
  #   # 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')
151
  #   => "GitLab | Ruby on Rails | Lorem ipsum "
152 153 154
  #
  #   # Accepts multiple arguments
  #   >> subject('Lorem ipsum', 'Dolor sit amet')
155
  #   => "GitLab | Lorem ipsum | Dolor sit amet"
156
  def subject(*extra)
157 158 159 160
    subject = "GitLab"
    subject << (@project ? " | #{@project.name_with_namespace}" : "")
    subject << " | " + extra.join(' | ') if extra.present?
    subject
161
  end
G
gitlabhq 已提交
162
end