2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
# Worker cannot be idempotent: https://gitlab.com/gitlab-org/gitlab/-/issues/218559
|
|
|
|
# rubocop:disable Scalability/IdempotentWorker
|
|
|
|
class WebHookWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
feature_category :integrations
|
2022-04-04 11:22:00 +05:30
|
|
|
loggable_arguments 2, 3
|
2021-09-04 01:27:46 +05:30
|
|
|
data_consistency :delayed
|
2017-09-10 17:25:29 +05:30
|
|
|
sidekiq_options retry: 4, dead: false
|
2021-10-27 15:23:28 +05:30
|
|
|
urgency :low
|
|
|
|
|
|
|
|
worker_has_external_dependencies!
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2022-03-02 08:16:31 +05:30
|
|
|
def perform(hook_id, data, hook_name, params = {})
|
2021-10-27 15:23:28 +05:30
|
|
|
hook = WebHook.find_by_id(hook_id)
|
|
|
|
return unless hook
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
data = data.with_indifferent_access
|
2022-04-04 11:22:00 +05:30
|
|
|
params.symbolize_keys!
|
2022-03-02 08:16:31 +05:30
|
|
|
|
2022-04-04 11:22:00 +05:30
|
|
|
# Before executing the hook, reapply any recursion detection UUID that was initially
|
|
|
|
# present in the request header so the hook can pass this same header value in its request.
|
|
|
|
Gitlab::WebHooks::RecursionDetection.set_request_uuid(params[:recursion_detection_request_uuid])
|
2022-03-02 08:16:31 +05:30
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
WebHookService.new(hook, data, hook_name, jid).execute
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
2021-06-08 01:23:25 +05:30
|
|
|
# rubocop:enable Scalability/IdempotentWorker
|