This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-07-15 03:01:39 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::CollectionSerializer < ActiveModel::Serializer
|
|
|
|
def self.serializer_for(model, options)
|
|
|
|
return ActivityPub::ActivitySerializer if model.class.name == 'Status'
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
2017-07-16 10:28:55 +02:00
|
|
|
attributes :id, :type, :total_items
|
2017-07-15 03:01:39 +02:00
|
|
|
|
|
|
|
has_many :items, key: :ordered_items
|
|
|
|
|
|
|
|
def type
|
|
|
|
case object.type
|
|
|
|
when :ordered
|
|
|
|
'OrderedCollection'
|
|
|
|
else
|
|
|
|
'Collection'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def total_items
|
|
|
|
object.size
|
|
|
|
end
|
|
|
|
end
|