2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-19 13:09:10 -05:00
|
|
|
class WebHookWorker # rubocop:disable Scalability/IdempotentWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2013-01-24 15:15:24 -05:00
|
|
|
|
2019-10-18 07:11:44 -04:00
|
|
|
feature_category :integrations
|
2019-10-30 11:14:17 -04:00
|
|
|
worker_has_external_dependencies!
|
|
|
|
|
2017-07-17 11:38:02 -04:00
|
|
|
sidekiq_options retry: 4, dead: false
|
2013-01-24 15:15:24 -05:00
|
|
|
|
2015-01-23 19:10:43 -05:00
|
|
|
def perform(hook_id, data, hook_name)
|
2017-04-27 06:08:57 -04:00
|
|
|
hook = WebHook.find(hook_id)
|
2014-12-29 10:48:43 -05:00
|
|
|
data = data.with_indifferent_access
|
2017-04-27 06:08:57 -04:00
|
|
|
|
|
|
|
WebHookService.new(hook, data, hook_name).execute
|
2013-01-24 15:15:24 -05:00
|
|
|
end
|
|
|
|
end
|