This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-10-07 08:43:42 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::ImageSerializer < ActiveModel::Serializer
|
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
attributes :type, :media_type, :url
|
2018-02-21 15:35:46 -08:00
|
|
|
attribute :focal_point, if: :focal_point?
|
2017-10-07 08:43:42 -07:00
|
|
|
|
|
|
|
def type
|
|
|
|
'Image'
|
|
|
|
end
|
|
|
|
|
|
|
|
def url
|
|
|
|
full_asset_url(object.url(:original))
|
|
|
|
end
|
|
|
|
|
|
|
|
def media_type
|
|
|
|
object.content_type
|
|
|
|
end
|
2018-02-21 15:35:46 -08:00
|
|
|
|
|
|
|
def focal_point?
|
2018-02-22 08:42:33 -08:00
|
|
|
object.respond_to?(:meta) && object.meta.is_a?(Hash) && object.meta['focus'].is_a?(Hash)
|
2018-02-21 15:35:46 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
def focal_point
|
|
|
|
[object.meta['focus']['x'], object.meta['focus']['y']]
|
|
|
|
end
|
2017-10-07 08:43:42 -07:00
|
|
|
end
|