notify.rb 5.0 KB
Newer Older
G
gitlabhq 已提交
1
class Notify < ActionMailer::Base
2 3
  include ActionDispatch::Routing::PolymorphicRoutes

4 5 6 7
  include Emails::Issues
  include Emails::MergeRequests
  include Emails::Notes
  include Emails::Projects
8 9
  include Emails::Profile
  include Emails::Groups
10

G
gitlabhq 已提交
11
  add_template_helper ApplicationHelper
D
Dmitriy Zaporozhets 已提交
12
  add_template_helper GitlabMarkdownHelper
13
  add_template_helper MergeRequestsHelper
14
  add_template_helper EmailsHelper
G
gitlabhq 已提交
15

D
Douwe Maan 已提交
16 17 18
  attr_accessor :current_user
  helper_method :current_user, :can?

19 20
  default_url_options[:host]     = Gitlab.config.gitlab.host
  default_url_options[:protocol] = Gitlab.config.gitlab.protocol
21
  default_url_options[:port]     = Gitlab.config.gitlab.port unless Gitlab.config.gitlab_on_standard_port?
22
  default_url_options[:script_name] = Gitlab.config.gitlab.relative_url_root
D
Dmitriy Zaporozhets 已提交
23

24
  default from: Proc.new { default_sender_address.format }
25
  default reply_to: "noreply@#{Gitlab.config.gitlab.host}"
G
gitlabhq 已提交
26

P
Pierre de La Morinerie 已提交
27
  # Just send email with 2 seconds delay
28 29 30
  def self.delay
    delay_for(2.seconds)
  end
31

S
Steven Burgart 已提交
32 33
  def test_email(recipient_email, subject, body)
    mail(to: recipient_email,
34 35 36 37 38 39
         subject: subject,
         body: body.html_safe,
         content_type: 'text/html'
    )
  end

40 41 42 43 44 45 46 47 48 49 50 51 52 53
  # Splits "gitlab.corp.company.com" up into "gitlab.corp.company.com",
  # "corp.company.com" and "company.com".
  # Respects set tld length so "company.co.uk" won't match "somethingelse.uk"
  def self.allowed_email_domains
    domain_parts = Gitlab.config.gitlab.host.split(".")
    allowed_domains = []
    begin
      allowed_domains << domain_parts.join(".")
      domain_parts.shift
    end while domain_parts.length > ActionDispatch::Http::URL.tld_length

    allowed_domains
  end

54 55
  private

56 57 58
  # The default email address to send emails from
  def default_sender_address
    address = Mail::Address.new(Gitlab.config.gitlab.email_from)
59
    address.display_name = Gitlab.config.gitlab.email_display_name
60 61 62 63 64
    address
  end

  # Return an email address that displays the name of the sender.
  # Only the displayed name changes; the actual email address is always the same.
65
  def sender(sender_id, send_from_user_email = false)
66 67 68
    if sender = User.find(sender_id)
      address = default_sender_address
      address.display_name = sender.name
69

70 71
      sender_domain = sender.email.split("@").last
      if send_from_user_email && self.class.allowed_email_domains.include?(sender_domain)
72 73 74
        address.address = sender.email
      end

75 76 77 78
      address.format
    end
  end

79 80 81 82 83 84
  # 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)
D
Douwe Maan 已提交
85 86
    @current_user = User.find(recipient_id)
    @current_user.notification_email
87 88
  end

89 90 91 92 93 94 95 96
  # Set the References header field
  #
  # local_part - The local part of the referenced message ID
  #
  def set_reference(local_part)
    headers["References"] = "<#{local_part}@#{Gitlab.config.gitlab.host}>"
  end

97 98 99 100 101 102 103
  # 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')
104
  #   => "Lorem ipsum"
105 106 107 108 109
  #
  #   # 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')
110
  #   => "Ruby on Rails | Lorem ipsum "
111 112 113
  #
  #   # Accepts multiple arguments
  #   >> subject('Lorem ipsum', 'Dolor sit amet')
114
  #   => "Lorem ipsum | Dolor sit amet"
115
  def subject(*extra)
116
    subject = ""
117
    subject << "#{@project.name} | " if @project
118
    subject << extra.join(' | ') if extra.present?
119
    subject
120
  end
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

  # Return a string suitable for inclusion in the 'Message-Id' mail header.
  #
  # The message-id is generated from the unique URL to a model object.
  def message_id(model)
    model_name = model.class.model_name.singular_route_key
    "<#{model_name}_#{model.id}@#{Gitlab.config.gitlab.host}>"
  end

  # Send an email that starts a new conversation thread,
  # with headers suitable for grouping by thread in email clients.
  #
  # See: mail_answer_thread
  def mail_new_thread(model, headers = {}, &block)
    headers['Message-ID'] = message_id(model)
136
    headers['X-GitLab-Project'] = "#{@project.name} | " if @project
137 138 139 140 141 142 143 144 145 146 147 148 149 150
    mail(headers, &block)
  end

  # Send an email that responds to an existing conversation thread,
  # with headers suitable for grouping by thread in email clients.
  #
  # For grouping emails by thread, email clients heuristics require the answers to:
  #
  #  * have a subject that begin by 'Re: '
  #  * have a 'In-Reply-To' or 'References' header that references the original 'Message-ID'
  #
  def mail_answer_thread(model, headers = {}, &block)
    headers['In-Reply-To'] = message_id(model)
    headers['References'] = message_id(model)
151
    headers['X-GitLab-Project'] = "#{@project.name} | " if @project
152

153
    if headers[:subject]
154 155 156 157 158
      headers[:subject].prepend('Re: ')
    end

    mail(headers, &block)
  end
D
Douwe Maan 已提交
159 160 161 162

  def can?
    Ability.abilities.allowed?(user, action, subject)
  end
G
gitlabhq 已提交
163
end