2019-09-13 14:06:03 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Concern handling functionality around deciding whether to send notification
|
|
|
|
# for activities on a specified branch or not. Will be included in
|
2021-05-31 23:10:06 -04:00
|
|
|
# Integrations::BaseChatNotification and PipelinesEmailService classes.
|
2019-09-13 14:06:03 -04:00
|
|
|
module NotificationBranchSelection
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
def branch_choices
|
|
|
|
[
|
|
|
|
[_('All branches'), 'all'].freeze,
|
|
|
|
[_('Default branch'), 'default'].freeze,
|
|
|
|
[_('Protected branches'), 'protected'].freeze,
|
|
|
|
[_('Default branch and protected branches'), 'default_and_protected'].freeze
|
|
|
|
].freeze
|
|
|
|
end
|
2019-09-13 14:06:03 -04:00
|
|
|
|
|
|
|
def notify_for_branch?(data)
|
|
|
|
ref = if data[:ref]
|
|
|
|
Gitlab::Git.ref_name(data[:ref])
|
|
|
|
else
|
|
|
|
data.dig(:object_attributes, :ref)
|
|
|
|
end
|
|
|
|
|
|
|
|
is_default_branch = ref == project.default_branch
|
2019-10-09 11:05:58 -04:00
|
|
|
is_protected_branch = ProtectedBranch.protected?(project, ref)
|
2019-09-13 14:06:03 -04:00
|
|
|
|
|
|
|
case branches_to_be_notified
|
|
|
|
when "all"
|
|
|
|
true
|
|
|
|
when "default"
|
|
|
|
is_default_branch
|
|
|
|
when "protected"
|
|
|
|
is_protected_branch
|
|
|
|
when "default_and_protected"
|
|
|
|
is_default_branch || is_protected_branch
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|