BigW Consortium Gitlab

notify.rb 5.2 KB
Newer Older
1
class Notify < BaseMailer
2 3
  include ActionDispatch::Routing::PolymorphicRoutes

4 5 6 7
  include Emails::Issues
  include Emails::MergeRequests
  include Emails::Notes
  include Emails::Projects
8
  include Emails::Profile
9
  include Emails::Builds
10
  include Emails::Members
11

12
  add_template_helper MergeRequestsHelper
13 14
  add_template_helper DiffHelper
  add_template_helper BlobHelper
15
  add_template_helper EmailsHelper
16 17
  add_template_helper MembersHelper
  add_template_helper GitlabRoutingHelper
gitlabhq committed
18

Steven Burgart committed
19 20
  def test_email(recipient_email, subject, body)
    mail(to: recipient_email,
21 22 23
         subject: subject,
         body: body.html_safe,
         content_type: 'text/html'
24
        )
25 26
  end

27 28 29 30 31 32 33 34 35 36 37 38 39 40
  # 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

41 42 43 44 45
  def can_send_from_user_email?(sender)
    sender_domain = sender.email.split("@").last
    self.class.allowed_email_domains.include?(sender_domain)
  end

46 47
  private

48 49
  # Return an email address that displays the name of the sender.
  # Only the displayed name changes; the actual email address is always the same.
50
  def sender(sender_id, send_from_user_email = false)
51
    return unless sender = User.find(sender_id)
52

53 54
    address = default_sender_address
    address.display_name = sender.name
55

56 57
    if send_from_user_email && can_send_from_user_email?(sender)
      address.address = sender.email
58
    end
59 60

    address.format
61 62
  end

63 64 65 66 67 68
  # 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)
Douwe Maan committed
69 70
    @current_user = User.find(recipient_id)
    @current_user.notification_email
71 72
  end

73 74 75 76 77 78 79
  # 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')
80
  #   => "Lorem ipsum"
81 82 83 84 85
  #
  #   # 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')
86
  #   => "Ruby on Rails | Lorem ipsum "
87 88 89
  #
  #   # Accepts multiple arguments
  #   >> subject('Lorem ipsum', 'Dolor sit amet')
90
  #   => "Lorem ipsum | Dolor sit amet"
91
  def subject(*extra)
92
    subject = ""
93
    subject << "#{@project.name} | " if @project
94
    subject << extra.join(' | ') if extra.present?
95
    subject
96
  end
97 98 99 100 101 102 103 104 105

  # 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

106
  def mail_thread(model, headers = {})
107
    add_project_headers
Douwe Maan committed
108
    headers["X-GitLab-#{model.class.name}-ID"] = model.id
109
    headers['X-GitLab-Reply-Key'] = reply_key
Douwe Maan committed
110

111
    if !@labels_url && @sent_notification && @sent_notification.unsubscribable?
112
      headers['List-Unsubscribe'] = "<#{unsubscribe_sent_notification_url(@sent_notification, force: true)}>"
113 114 115 116

      @sent_notification_url = unsubscribe_sent_notification_url(@sent_notification)
    end

117
    if Gitlab::IncomingEmail.enabled?
118
      address = Mail::Address.new(Gitlab::IncomingEmail.reply_address(reply_key))
119 120 121 122
      address.display_name = @project.name_with_namespace

      headers['Reply-To'] = address

123 124 125 126
      fallback_reply_message_id = "<reply-#{reply_key}@#{Gitlab.config.gitlab.host}>".freeze
      headers['References'] ||= ''
      headers['References'] << ' ' << fallback_reply_message_id

127
      @reply_by_email = true
Douwe Maan committed
128 129 130
    end

    mail(headers)
131 132
  end

133 134 135 136 137
  # 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 = {})
138
    headers['Message-ID'] = message_id(model)
139 140 141 142

    mail_thread(model, headers)
  end

143 144 145 146 147 148 149 150
  # 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'
  #
Douwe Maan committed
151
  def mail_answer_thread(model, headers = {})
152
    headers['Message-ID'] = "<#{SecureRandom.hex}@#{Gitlab.config.gitlab.host}>"
153 154 155
    headers['In-Reply-To'] = message_id(model)
    headers['References'] = message_id(model)

156
    headers[:subject].prepend('Re: ') if headers[:subject]
Douwe Maan committed
157

158
    mail_thread(model, headers)
159
  end
Douwe Maan committed
160

Douwe Maan committed
161
  def reply_key
162
    @reply_key ||= SentNotification.reply_key
Douwe Maan committed
163
  end
164 165 166 167 168 169 170 171

  def add_project_headers
    return unless @project

    headers['X-GitLab-Project'] = @project.name
    headers['X-GitLab-Project-Id'] = @project.id
    headers['X-GitLab-Project-Path'] = @project.path_with_namespace
  end
gitlabhq committed
172
end