gitlab-org--gitlab-foss/app/serializers/pipeline_serializer.rb
2017-03-23 17:11:49 +09:00

33 lines
720 B
Ruby

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 only_status
tap { @status_only = { only: [{ details: [:status] }] } }
end
def represent(resource, opts = {})
if resource.is_a?(ActiveRecord::Relation)
resource = resource.includes(project: :namespace)
end
if @status_only.present?
opts.merge!(@status_only)
end
if paginated?
super(@paginator.paginate(resource), opts)
else
super(resource, opts)
end
end
end