闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
744 B

  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: 'http://ostatus.org/schema/1.0/subscribe', template: "#{authorize_interaction_url}?uri={uri}" },
  17. ]
  18. end
  19. end