Welcome to mirror list, hosted at ThFree Co, Russian Federation.

destroy_worker.rb « web_hooks « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f457cd11e5438c009b2afea418766da78746f1ce (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
# frozen_string_literal: true

module WebHooks
  class DestroyWorker
    include ApplicationWorker

    data_consistency :always
    sidekiq_options retry: 3
    feature_category :integrations
    urgency :low

    idempotent!

    def perform(user_id, web_hook_id)
      user = User.find_by_id(user_id)
      hook = WebHook.find_by_id(web_hook_id)

      return unless user && hook

      result = ::WebHooks::DestroyService.new(user).sync_destroy(hook)

      return result if result[:status] == :success

      e = ::WebHooks::DestroyService::DestroyError.new(result[:message])
      Gitlab::ErrorTracking.track_exception(e, web_hook_id: hook.id)

      raise e
    end
  end
end