debian-mirror-gitlab/app/serializers/pipeline_serializer.rb

49 lines
1.1 KiB
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class PipelineSerializer < BaseSerializer
InvalidResourceError = Class.new(StandardError)
2017-09-10 17:25:29 +05:30
entity PipelineDetailsEntity
2017-08-17 22:00:37 +05:30
def with_pagination(request, response)
tap { @paginator = Gitlab::Serializer::Pagination.new(request, response) }
end
def paginated?
@paginator.present?
end
def represent(resource, opts = {})
if resource.is_a?(ActiveRecord::Relation)
2017-09-10 17:25:29 +05:30
2017-08-17 22:00:37 +05:30
resource = resource.preload([
:retryable_builds,
:cancelable_statuses,
:trigger_requests,
:project,
2017-09-10 17:25:29 +05:30
:manual_actions,
:artifacts,
{ pending_builds: :project }
2017-08-17 22:00:37 +05:30
])
end
if paginated?
super(@paginator.paginate(resource), opts)
else
super(resource, opts)
end
end
def represent_status(resource)
return {} unless resource.present?
data = represent(resource, { only: [{ details: [:status] }] })
data.dig(:details, :status) || {}
end
def represent_stages(resource)
return {} unless resource.present?
data = represent(resource, { only: [{ details: [:stages] }] })
data.dig(:details, :stages) || []
end
end