2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-01-27 10:59:16 -05:00
|
|
|
class NewNoteWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2016-01-27 10:59:16 -05:00
|
|
|
|
2016-11-19 13:18:44 -05:00
|
|
|
# Keep extra parameter to preserve backwards compatibility with
|
|
|
|
# old `NewNoteWorker` jobs (can remove later)
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2016-11-19 13:18:44 -05:00
|
|
|
def perform(note_id, _params = {})
|
2016-10-13 11:26:44 -04:00
|
|
|
if note = Note.find_by(id: note_id)
|
2018-12-07 09:24:37 -05:00
|
|
|
NotificationService.new.new_note(note) unless skip_notification?(note)
|
2016-10-13 11:26:44 -04:00
|
|
|
Notes::PostProcessService.new(note).execute
|
|
|
|
else
|
2019-07-10 15:26:47 -04:00
|
|
|
Rails.logger.error("NewNoteWorker: couldn't find note with ID=#{note_id}, skipping job") # rubocop:disable Gitlab/RailsLogger
|
2016-10-13 11:26:44 -04:00
|
|
|
end
|
2016-01-27 10:59:16 -05:00
|
|
|
end
|
2018-12-07 09:24:37 -05:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# EE-only method
|
|
|
|
def skip_notification?(note)
|
|
|
|
false
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2016-01-27 10:59:16 -05:00
|
|
|
end
|