2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-02-19 13:09:10 -05:00
|
|
|
class PipelineNotificationWorker # rubocop:disable Scalability/IdempotentWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2021-04-30 14:10:09 -04:00
|
|
|
|
|
|
|
sidekiq_options retry: 3
|
2016-10-24 05:39:04 -04:00
|
|
|
include PipelineQueue
|
2016-09-28 05:22:06 -04:00
|
|
|
|
2020-03-02 13:07:42 -05:00
|
|
|
urgency :high
|
2019-10-30 11:14:17 -04:00
|
|
|
worker_resource_boundary :cpu
|
|
|
|
|
2020-02-27 13:09:21 -05:00
|
|
|
def perform(pipeline_id, args = {})
|
|
|
|
case args
|
|
|
|
when Hash
|
2020-06-10 05:08:35 -04:00
|
|
|
args = args.with_indifferent_access
|
2020-02-27 13:09:21 -05:00
|
|
|
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
|
2016-10-17 06:18:16 -04:00
|
|
|
|
2020-06-10 05:08:35 -04:00
|
|
|
pipeline = Ci::Pipeline.find_by_id(pipeline_id)
|
2016-10-17 06:18:16 -04:00
|
|
|
return unless pipeline
|
2016-09-28 05:22:06 -04:00
|
|
|
|
2020-02-27 13:09:21 -05:00
|
|
|
NotificationService.new.pipeline_finished(pipeline, ref_status: ref_status, recipients: recipients)
|
2016-09-28 05:22:06 -04:00
|
|
|
end
|
|
|
|
end
|