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-07-14 18:01:39 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ActivityPub::ActivitySerializer < ActiveModel::Serializer
|
|
|
|
attributes :id, :type, :actor, :to, :cc
|
|
|
|
|
|
|
|
has_one :proper, key: :object, serializer: ActivityPub::NoteSerializer
|
|
|
|
|
|
|
|
def id
|
2017-08-24 07:21:42 -07:00
|
|
|
[ActivityPub::TagManager.instance.activity_uri_for(object)].join
|
2017-07-14 18:01:39 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def type
|
|
|
|
object.reblog? ? 'Announce' : 'Create'
|
|
|
|
end
|
|
|
|
|
|
|
|
def actor
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object.account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to
|
|
|
|
ActivityPub::TagManager.instance.to(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def cc
|
|
|
|
ActivityPub::TagManager.instance.cc(object)
|
|
|
|
end
|
|
|
|
end
|