debian-mirror-gitlab/lib/api/entities/issuable_entity.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.8 KiB
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class IssuableEntity < Grape::Entity
2023-01-13 00:05:48 +05:30
expose :id, documentation: { type: 'integer', example: 84 }
expose :iid, documentation: { type: 'integer', example: 14 }
expose :project_id, documentation: { type: 'integer', example: 4 } do |entity|
entity&.project.try(:id)
end
expose :title, documentation: { type: 'string', example: 'Impedit et ut et dolores vero provident ullam est' }
expose :description, documentation: { type: 'string', example: 'Repellendus impedit et vel velit dignissimos.' }
expose :state, documentation: { type: 'string', example: 'closed' }
expose :created_at, documentation: { type: 'dateTime', example: '2022-08-17T12:46:35.053Z' }
expose :updated_at, documentation: { type: 'dateTime', example: '2022-11-14T17:22:01.470Z' }
2020-03-13 15:44:24 +05:30
2020-07-28 23:09:34 +05:30
def presented
lazy_issuable_metadata
super
end
def issuable_metadata
options.dig(:issuable_metadata, object.id) || lazy_issuable_metadata
end
protected
# This method will preload the `issuable_metadata` for the current
# entity according to the current top-level entity options, such
# as the current_user.
def lazy_issuable_metadata
2021-11-18 22:05:49 +05:30
BatchLoader.for(object).batch(key: [current_user, :issuable_metadata]) do |models, loader, args|
2020-07-28 23:09:34 +05:30
current_user = args[:key].first
issuable_metadata = Gitlab::IssuableMetadata.new(current_user, models)
metadata_by_id = issuable_metadata.data
models.each do |issuable|
loader.call(issuable, metadata_by_id[issuable.id])
end
end
end
private
def current_user
options[:current_user]
2020-03-13 15:44:24 +05:30
end
end
end
end