2017-10-07 15:43:42 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
class ActivityPub::ImageSerializer < ActivityPub::Serializer
|
2017-10-07 15:43:42 +00:00
|
|
|
include RoutingHelper
|
|
|
|
|
2019-03-27 14:55:23 +00:00
|
|
|
context_extensions :focal_point
|
|
|
|
|
2017-10-07 15:43:42 +00:00
|
|
|
attributes :type, :media_type, :url
|
2018-02-21 23:35:46 +00:00
|
|
|
attribute :focal_point, if: :focal_point?
|
2017-10-07 15:43:42 +00:00
|
|
|
|
|
|
|
def type
|
|
|
|
'Image'
|
|
|
|
end
|
|
|
|
|
|
|
|
def url
|
|
|
|
full_asset_url(object.url(:original))
|
|
|
|
end
|
|
|
|
|
|
|
|
def media_type
|
|
|
|
object.content_type
|
|
|
|
end
|
2018-02-21 23:35:46 +00:00
|
|
|
|
|
|
|
def focal_point?
|
2018-02-22 16:42:33 +00:00
|
|
|
object.respond_to?(:meta) && object.meta.is_a?(Hash) && object.meta['focus'].is_a?(Hash)
|
2018-02-21 23:35:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def focal_point
|
|
|
|
[object.meta['focus']['x'], object.meta['focus']['y']]
|
|
|
|
end
|
2017-10-07 15:43:42 +00:00
|
|
|
end
|