debian-mirror-gitlab/app/models/hooks/project_hook.rb
2023-04-23 21:23:45 +05:30

65 lines
1.4 KiB
Ruby

# frozen_string_literal: true
class ProjectHook < WebHook
include TriggerableHooks
include WebHooks::AutoDisabling
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
if executable?
project.cache_web_hook_failure if project.get_web_hook_failure # may need update
else
project.cache_web_hook_failure(true) # definitely failing, no need to check
Gitlab::Redis::SharedState.with do |redis|
last_failure_key = project.last_failure_redis_key
time = Time.current.utc.iso8601
prev = redis.get(last_failure_key)
redis.set(last_failure_key, time) if !prev || prev < time
end
end
end
end
ProjectHook.prepend_mod_with('ProjectHook')