ScopedSerializer serializes your models based on context.
gem 'scoped_serializer'
Setup serialization scopes and render different output based on context. Use it when you're developing an API and return different data per action (collections/resources).
Quick example
class OrderSerializer < ScopedSerializer::Serializer
attributes :id, :status
has_one :customer
scope :resource do
has_many :products => :stock_items
end
scope :collection do
has_many :notes
end
end
# ScopedSerializer.render(@order) # Default output
# ScopedSerializer.render(@order, :scope => :resource) # Includes products and stock_items
# ScopedSerializer.render(Order.all, :scope => :collection) # Array of orders, each includes notes
It supports associations and eager loading out-of-the-box.
While developing the API for Booqable Rental Software, we ran into problems where we would return different data based on context. For example we would list orders but not nested associations. When the user requests a single order, we do want to render nested associations. This resulted in overly complicated serializers with a lot of conditional rendering.
The alternative would be to create different serializer based on context, such as OrderCollectionSerializer
and OrderResourceSerializer
.
Using ScopedSerializer you can create one serializer with different configuration based on scope.
class OrderSerializer < ScopedSerializer::Serializer
attributes :id, :status
has_one :customer
scope :resource do
has_many :products => :stock_items
end
end
The above example will render the following outputs:
Example for ScopedSerializer.render(@order)
{
"order": {
"id": 1,
"status": "reserved",
"customer": { ... }
}
}
Example for ScopedSerializer.render(@order, :scope => :resource)
{
"order": {
"id": 1,
"status": "reserved",
"customer": { ... },
"products": [
{
"id": 1,
"name": "Sony NX5",
"stock_items": [...]
}
]
}
}
Scopes are not pre-defined and thus can be anything you want. Whatever you need. In our application we render the scope :collection
for index actions and :resource
for resource actions. This entirely depends on your implementation. If a scope does not exist it will simply use the default settings.
All associations are supported;
- has_many
- has_one (or belongs_to if you prefer it)
ScopedSerializer takes care of eager loading associations. Need custom eager loading? No problem, just override it.
class OrderSerializer < ScopedSerializer::Serializer
scope :resource do
has_many :products => :stock_items, :preload => false
end
scope :something_else do
has_many :products => :stock_items, :preload => { :stock_items => :item }
end
end
ScopedSerializer does not eager load collections. You will need to manually eager load the nested associations. For example:
# No eager loading at all
ScopedSerializer.render(Order.all, :scope => :resource)
# Manually eager load
ScopedSerializer.render(Order.includes(:products => :stock_items), :scope => :resource)
More options
class OrderSerializer < ScopedSerializer::Serializer
scope :resource do
# Render a specific scope
has_many :products => :stock_items, :scope => :resource
# Render a specific serializer
has_many :products => :stock_items, :serializer => ItemSerializer
end
end
- Fork it
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request