gitlab-org--gitlab-foss/app/serializers/pipeline_serializer.rb

32 lines
747 B
Ruby
Raw Normal View History

class PipelineSerializer < BaseSerializer
InvalidResourceError = Class.new(StandardError)
entity PipelineEntity
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)
resource = resource.includes(project: :namespace)
end
if paginated?
super(@paginator.paginate(resource), opts)
else
super(resource, opts)
end
end
2017-03-10 10:16:48 -05:00
def represent_status(resource)
return {} unless resource.present?
2017-03-10 10:16:48 -05:00
data = represent(resource, { only: [{ details: [:status] }] })
2017-03-21 08:15:20 -04:00
data.dig(:details, :status) || {}
2017-03-10 10:16:48 -05:00
end
end