BigW Consortium Gitlab

notify.rb 2.75 KB
Newer Older
gitlabhq committed
1
class Notify < ActionMailer::Base
2 3 4 5
  include Emails::Issues
  include Emails::MergeRequests
  include Emails::Notes
  include Emails::Projects
6 7
  include Emails::Profile
  include Emails::Groups
8

gitlabhq committed
9
  add_template_helper ApplicationHelper
Dmitriy Zaporozhets committed
10
  add_template_helper GitlabMarkdownHelper
11
  add_template_helper MergeRequestsHelper
gitlabhq committed
12

13 14
  default_url_options[:host]     = Gitlab.config.gitlab.host
  default_url_options[:protocol] = Gitlab.config.gitlab.protocol
15
  default_url_options[:port]     = Gitlab.config.gitlab.port unless Gitlab.config.gitlab_on_standard_port?
16
  default_url_options[:script_name] = Gitlab.config.gitlab.relative_url_root
17

18
  default from: Proc.new { default_sender_address.format }
19
  default reply_to: "noreply@#{Gitlab.config.gitlab.host}"
gitlabhq committed
20

21
  # Just send email with 2 seconds delay
22 23 24
  def self.delay
    delay_for(2.seconds)
  end
25

26 27
  private

28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
  # The default email address to send emails from
  def default_sender_address
    address = Mail::Address.new(Gitlab.config.gitlab.email_from)
    address.display_name = "GitLab"
    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.
  def sender(sender_id)
    if sender = User.find(sender_id)
      address = default_sender_address
      address.display_name = sender.name
      address.format
    end
  end

45 46 47 48 49 50 51 52 53 54 55
  # 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

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
  # Set the Message-ID header field
  #
  # local_part - The local part of the message ID
  #
  def set_message_id(local_part)
    headers["Message-ID"] = "<#{local_part}@#{Gitlab.config.gitlab.host}>"
  end

  # 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

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