2016-02-29 18:42:08 +00:00
|
|
|
class AccountsController < ApplicationController
|
2016-03-05 22:42:40 +00:00
|
|
|
layout 'public'
|
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
before_action :set_account
|
2016-03-05 11:50:59 +00:00
|
|
|
before_action :set_webfinger_header
|
2016-02-29 18:42:08 +00:00
|
|
|
|
|
|
|
def show
|
2016-03-12 15:09:46 +00:00
|
|
|
@statuses = @account.statuses.order('id desc').with_includes.with_counters
|
2016-03-06 11:34:39 +00:00
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
respond_to do |format|
|
2016-03-19 11:49:34 +00:00
|
|
|
format.html { @statuses = @statuses.paginate(page: params[:page], per_page: 10)}
|
2016-02-29 18:42:08 +00:00
|
|
|
format.atom
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find_by!(username: params[:username], domain: nil)
|
|
|
|
end
|
2016-03-05 11:50:59 +00:00
|
|
|
|
|
|
|
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
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|