Files
gitlabhq/app/serializers/note_entity.rb

124 lines
3.7 KiB
Ruby

# frozen_string_literal: true
class NoteEntity < API::Entities::Note
include RequestAwareEntity
include NotesHelper
expose :id do |note|
# resource events are represented as notes too, but don't
# have ID, discussion ID is used for them instead
note.id ? note.id.to_s : note.discussion_id
end
expose :type
expose :external_author do |note|
note_presenter(note).external_author
end
expose :author, using: NoteUserEntity
unexpose :body
expose :note do |note|
note_presenter(note).note
end
expose :note_html do |note|
note_presenter(note).note_html
end
expose :last_edited_at, if: ->(note, _) { note.edited? }
expose :last_edited_by, using: NoteUserEntity, if: ->(note, _) { note.edited? }
expose :current_user do
expose :can_edit do |note|
can?(current_user, :admin_note, note)
end
expose :can_award_emoji do |note|
can?(current_user, :award_emoji, note)
end
expose :can_resolve do |note|
note.resolvable? && can?(current_user, :resolve_note, note)
end
expose :can_resolve_discussion do |note|
discussion = options.fetch(:discussion, nil) || note.discussion
discussion.resolvable? && discussion.can_resolve?(current_user)
end
end
expose :suggestions, using: SuggestionEntity
expose :resolved?, as: :resolved
expose :resolvable?, as: :resolvable
expose :resolved_by, using: NoteUserEntity
expose :resolved_by_push?, as: :resolved_by_push
expose :system_note_icon_name, if: ->(note, _) { note.system? } do |note|
SystemNoteHelper.system_note_icon_name(note)
end
expose :outdated_line_change_path, if: ->(note, _) { note.show_outdated_changes? } do |note|
outdated_line_change_namespace_project_note_path(namespace_id: note.project.namespace, project_id: note.project, id: note)
end
expose :is_noteable_author do |note|
note.noteable_author?(request.noteable)
end
expose :discussion_id do |note|
note.discussion_id(request.noteable)
end
expose :emoji_awardable?, as: :emoji_awardable
expose :award_emoji, if: ->(note, _) { note.emoji_awardable? }, using: AwardEmojiEntity
expose :report_abuse_path do |note| # @deprecated To be removed in API version 5
add_category_abuse_reports_path
end
expose :noteable_note_url do |note|
noteable_note_url(note)
end
expose :resolve_path, if: ->(note, _) { note.part_of_discussion? && note.resolvable? } do |note|
next unless discussion.project
resolve_project_discussion_path(discussion.project, discussion.noteable_collection_name, discussion.noteable, discussion.id)
end
expose :resolve_with_issue_path, if: ->(note, _) { note.part_of_discussion? && note.resolvable? && note.noteable.is_a?(MergeRequest) } do |note|
new_project_issue_path(note.project, merge_request_to_resolve_discussions_of: note.noteable.iid, discussion_to_resolve: note.discussion_id)
end
expose :cached_markdown_version
# Correctly rendering a note requires some background information about any
# discussion it is part of. This is essential for the notes endpoint, but
# optional for the discussions endpoint, which will include the discussion
# along with the note
expose :discussion, as: :base_discussion, using: BaseDiscussionEntity, if: ->(_, _) { with_base_discussion? }
private
def discussion
@discussion ||= object.to_discussion(request.noteable)
end
def current_user
request.current_user
end
def with_base_discussion?
options.fetch(:with_base_discussion, true)
end
def note_presenter(note)
NotePresenter.new(note, current_user: current_user) # rubocop: disable CodeReuse/Presenter -- Directly instantiate NotePresenter because we don't have presenters for all subclasses of Note
end
end
NoteEntity.prepend_mod_with('NoteEntity')