about summary refs log tree commit diff
path: root/app/controllers/accounts_controller.rb
blob: 2848ea62e183e09a9f9260f136b36a1a1e621afb (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
class AccountsController < ApplicationController
  before_action :set_account
  before_action :set_webfinger_header

  def show
    respond_to do |format|
      format.html
      format.atom
    end
  end

  private

  def set_account
    @account = Account.find_by!(username: params[:username], domain: nil)
  end

  def set_webfinger_header
    response.headers['Link'] = "<#{webfinger_account_url}>; rel=\"lrdd\"; type=\"application/xrd+xml\""
  end

  def webfinger_account_url
    webfinger_url(resource: "acct:#{@account.acct}@#{Rails.configuration.x.local_domain}")
  end
end