about summary refs log tree commit diff
path: root/app/views/well_known/webfinger/show.xml.ruby
blob: 0f16d9e67a253c148d6677556c8bfa802aa39fa1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
doc = Ox::Document.new(version: '1.0')

doc << Ox::Element.new('XRD').tap do |xrd|
  xrd['xmlns'] = 'http://docs.oasis-open.org/ns/xri/xrd-1.0'

  xrd << (Ox::Element.new('Subject') << @account.to_webfinger_s)


  if @account.instance_actor?
    xrd << (Ox::Element.new('Alias') << instance_actor_url)

    xrd << Ox::Element.new('Link').tap do |link|
      link['rel']      = 'http://webfinger.net/rel/profile-page'
      link['type']     = 'text/html'
      link['href']     = about_more_url(instance_actor: true)
    end

    xrd << Ox::Element.new('Link').tap do |link|
      link['rel']      = 'self'
      link['type']     = 'application/activity+json'
      link['href']     = instance_actor_url
    end
  else
    xrd << (Ox::Element.new('Alias') << short_account_url(@account))
    xrd << (Ox::Element.new('Alias') << account_url(@account))

    xrd << Ox::Element.new('Link').tap do |link|
      link['rel']      = 'http://webfinger.net/rel/profile-page'
      link['type']     = 'text/html'
      link['href']     = short_account_url(@account)
    end

    xrd << Ox::Element.new('Link').tap do |link|
      link['rel']      = 'self'
      link['type']     = 'application/activity+json'
      link['href']     = account_url(@account)
    end
  end
end

('<?xml version="1.0" encoding="UTF-8"?>' + Ox.dump(doc, effort: :tolerant)).force_encoding('UTF-8')