logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

webfinger_serializer.rb (896B)


  1. # frozen_string_literal: true
  2. class WebfingerSerializer < ActiveModel::Serializer
  3. include RoutingHelper
  4. attributes :subject, :aliases, :links
  5. def subject
  6. object.to_webfinger_s
  7. end
  8. def aliases
  9. [short_account_url(object), account_url(object)]
  10. end
  11. def links
  12. [
  13. { rel: 'http://webfinger.net/rel/profile-page', type: 'text/html', href: short_account_url(object) },
  14. { rel: 'http://schemas.google.com/g/2010#updates-from', type: 'application/atom+xml', href: account_url(object, format: 'atom') },
  15. { rel: 'self', type: 'application/activity+json', href: account_url(object) },
  16. { rel: 'salmon', href: api_salmon_url(object.id) },
  17. { rel: 'magic-public-key', href: "data:application/magic-public-key,#{object.magic_key}" },
  18. { rel: 'http://ostatus.org/schema/1.0/subscribe', template: "#{authorize_follow_url}?acct={uri}" },
  19. ]
  20. end
  21. end