67 lines
1.3 KiB
Ruby
67 lines
1.3 KiB
Ruby
# 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
|
|
|
|
scope :for_projects, ->(project) { where(project: project) }
|
|
|
|
def pluralized_name
|
|
_('Webhooks')
|
|
end
|
|
|
|
override :application_context
|
|
def application_context
|
|
super.merge(project: project)
|
|
end
|
|
|
|
override :parent
|
|
def parent
|
|
project
|
|
end
|
|
|
|
override :update_last_failure
|
|
def update_last_failure
|
|
return if executable?
|
|
|
|
key = "web_hooks:last_failure:project-#{project_id}"
|
|
time = Time.current.utc.iso8601
|
|
|
|
Gitlab::Redis::SharedState.with do |redis|
|
|
prev = redis.get(key)
|
|
redis.set(key, time) if !prev || prev < time
|
|
end
|
|
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')
|