2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
class PipelineNotificationWorker # rubocop:disable Scalability/IdempotentWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
2021-06-08 01:23:25 +05:30
|
|
|
|
|
|
|
sidekiq_options retry: 3
|
2017-08-17 22:00:37 +05:30
|
|
|
include PipelineQueue
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
urgency :high
|
2019-12-26 22:10:19 +05:30
|
|
|
worker_resource_boundary :cpu
|
2021-10-27 15:23:28 +05:30
|
|
|
data_consistency :delayed
|
2019-12-26 22:10:19 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
def perform(pipeline_id, args = {})
|
|
|
|
case args
|
|
|
|
when Hash
|
2020-06-23 00:09:42 +05:30
|
|
|
args = args.with_indifferent_access
|
2020-04-08 14:13:33 +05:30
|
|
|
ref_status = args[:ref_status]
|
|
|
|
recipients = args[:recipients]
|
|
|
|
else # TODO: backward compatible interface, can be removed in 12.10
|
|
|
|
recipients = args
|
|
|
|
ref_status = nil
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
pipeline = Ci::Pipeline.find_by_id(pipeline_id)
|
2017-08-17 22:00:37 +05:30
|
|
|
return unless pipeline
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
NotificationService.new.pipeline_finished(pipeline, ref_status: ref_status, recipients: recipients)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|