diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-02-28 06:54:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-28 06:54:55 +0100 |
commit | 41a01bec2337e7021634f2e9c78d86a1c3002fcf (patch) | |
tree | 44ab6f2f922d5d9adb01f0978ce79a8d301533ca /app/serializers | |
parent | 4072b686862048c86674bd6de16d7e20ddc52b29 (diff) |
Federated reports (#6570)
* Fix #2176: Federated reports * UI for federated reports * Add spec for ActivityPub Flag handler * Add spec for ReportService
Diffstat (limited to 'app/serializers')
-rw-r--r-- | app/serializers/activitypub/flag_serializer.rb | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/app/serializers/activitypub/flag_serializer.rb b/app/serializers/activitypub/flag_serializer.rb new file mode 100644 index 000000000..53e8f726d --- /dev/null +++ b/app/serializers/activitypub/flag_serializer.rb @@ -0,0 +1,27 @@ +# frozen_string_literal: true + +class ActivityPub::FlagSerializer < ActiveModel::Serializer + attributes :id, :type, :actor, :content + attribute :virtual_object, key: :object + + def id + # This is nil for now + ActivityPub::TagManager.instance.uri_for(object) + end + + def type + 'Flag' + end + + def actor + ActivityPub::TagManager.instance.uri_for(instance_options[:account] || object.account) + end + + def virtual_object + [ActivityPub::TagManager.instance.uri_for(object.target_account)] + object.statuses.map { |s| ActivityPub::TagManager.instance.uri_for(s) } + end + + def content + object.comment + end +end |