2017-07-16 20:37:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 10:55:23 -04:00
|
|
|
class ActivityPub::PublicKeySerializer < ActivityPub::Serializer
|
|
|
|
context :security
|
|
|
|
|
2017-07-16 20:37:27 -04:00
|
|
|
attributes :id, :owner, :public_key_pem
|
|
|
|
|
|
|
|
def id
|
|
|
|
[ActivityPub::TagManager.instance.uri_for(object), '#main-key'].join
|
|
|
|
end
|
|
|
|
|
|
|
|
def owner
|
|
|
|
ActivityPub::TagManager.instance.uri_for(object)
|
|
|
|
end
|
|
|
|
|
|
|
|
def public_key_pem
|
|
|
|
object.public_key
|
|
|
|
end
|
|
|
|
end
|