summaryrefslogtreecommitdiff
path: root/app/models/hooks/project_hook.rb
blob: 16b95d2a2b999834a66099a3edc233e2f05ca245 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true

class ProjectHook < WebHook
  include TriggerableHooks
  include Presentable
  include Limitable
  extend ::Gitlab::Utils::Override

  self.limit_scope = :project

  triggerable_hooks [
    :push_hooks,
    :tag_push_hooks,
    :issue_hooks,
    :confidential_issue_hooks,
    :note_hooks,
    :confidential_note_hooks,
    :merge_request_hooks,
    :job_hooks,
    :pipeline_hooks,
    :wiki_page_hooks,
    :deployment_hooks,
    :feature_flag_hooks,
    :release_hooks
  ]

  belongs_to :project
  validates :project, presence: true

  def pluralized_name
    _('Webhooks')
  end

  override :rate_limit
  def rate_limit
    project.actual_limits.limit_for(:web_hook_calls)
  end

  override :application_context
  def application_context
    super.merge(project: project)
  end

  private

  override :web_hooks_disable_failed?
  def web_hooks_disable_failed?
    Feature.enabled?(:web_hooks_disable_failed, project)
  end
end

ProjectHook.prepend_mod_with('ProjectHook')