debian-mirror-gitlab/app/models/project_services/emails_on_push_service.rb

56 lines
1.5 KiB
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class EmailsOnPushService < Service
2017-08-17 22:00:37 +05:30
boolean_accessor :send_from_committer_email
boolean_accessor :disable_diffs
2015-04-26 12:48:37 +05:30
prop_accessor :recipients
2018-03-17 18:26:18 +05:30
validates :recipients, presence: true, if: :valid_recipients?
2014-09-02 18:07:02 +05:30
def title
'Emails on push'
end
def description
'Email the commits and diff of each push to a list of recipients.'
end
2017-08-17 22:00:37 +05:30
def self.to_param
2014-09-02 18:07:02 +05:30
'emails_on_push'
end
2017-08-17 22:00:37 +05:30
def self.supported_events
2015-04-26 12:48:37 +05:30
%w(push tag_push)
end
2014-09-02 18:07:02 +05:30
def execute(push_data)
2015-04-26 12:48:37 +05:30
return unless supported_events.include?(push_data[:object_kind])
EmailsOnPushWorker.perform_async(
2017-08-17 22:00:37 +05:30
project_id,
recipients,
push_data,
send_from_committer_email: send_from_committer_email?,
disable_diffs: disable_diffs?
2015-04-26 12:48:37 +05:30
)
end
def send_from_committer_email?
2017-08-17 22:00:37 +05:30
Gitlab::Utils.to_boolean(self.send_from_committer_email)
2015-04-26 12:48:37 +05:30
end
def disable_diffs?
2017-08-17 22:00:37 +05:30
Gitlab::Utils.to_boolean(self.disable_diffs)
2014-09-02 18:07:02 +05:30
end
def fields
2015-04-26 12:48:37 +05:30
domains = Notify.allowed_email_domains.map { |domain| "user@#{domain}" }.join(", ")
2014-09-02 18:07:02 +05:30
[
2015-04-26 12:48:37 +05:30
{ type: 'checkbox', name: 'send_from_committer_email', title: "Send from committer",
help: "Send notifications from the committer's email address if the domain is part of the domain GitLab is running on (e.g. #{domains})." },
{ type: 'checkbox', name: 'disable_diffs', title: "Disable code diffs",
help: "Don't include possibly sensitive code diffs in notification body." },
2017-09-10 17:25:29 +05:30
{ type: 'textarea', name: 'recipients', placeholder: 'Emails separated by whitespace' }
2014-09-02 18:07:02 +05:30
]
end
end