2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-30 23:06:09 -04:00
|
|
|
module RendersNotes
|
2017-11-22 02:50:36 -05:00
|
|
|
# rubocop:disable Gitlab/ModuleWithInstanceVariables
|
2017-08-02 10:06:28 -04:00
|
|
|
def prepare_notes_for_rendering(notes, noteable = nil)
|
2017-03-30 23:06:09 -04:00
|
|
|
preload_noteable_for_regular_notes(notes)
|
|
|
|
preload_max_access_for_authors(notes, @project)
|
2018-07-16 12:18:52 -04:00
|
|
|
preload_author_status(notes)
|
2018-04-03 09:45:17 -04:00
|
|
|
Notes::RenderService.new(current_user).execute(notes)
|
2017-03-30 23:06:09 -04:00
|
|
|
|
|
|
|
notes
|
|
|
|
end
|
2017-11-22 02:50:36 -05:00
|
|
|
# rubocop:enable Gitlab/ModuleWithInstanceVariables
|
2017-03-30 23:06:09 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def preload_max_access_for_authors(notes, project)
|
2019-02-08 07:19:53 -05:00
|
|
|
return unless project
|
2017-04-27 06:41:26 -04:00
|
|
|
|
2017-03-30 23:06:09 -04:00
|
|
|
user_ids = notes.map(&:author_id)
|
2020-09-16 11:09:32 -04:00
|
|
|
access = project.team.max_member_access_for_user_ids(user_ids).select { |k, v| v == Gitlab::Access::NO_ACCESS }.keys
|
|
|
|
project.team.contribution_check_for_user_ids(access)
|
2017-03-30 23:06:09 -04:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2017-03-30 23:06:09 -04:00
|
|
|
def preload_noteable_for_regular_notes(notes)
|
|
|
|
ActiveRecord::Associations::Preloader.new.preload(notes.reject(&:for_commit?), :noteable)
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-07-29 11:04:42 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-07-16 12:18:52 -04:00
|
|
|
def preload_author_status(notes)
|
|
|
|
ActiveRecord::Associations::Preloader.new.preload(notes, { author: :status })
|
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-03-30 23:06:09 -04:00
|
|
|
end
|