2016-02-29 13:42:08 -05:00
|
|
|
class AccountsController < ApplicationController
|
2016-03-05 17:42:40 -05:00
|
|
|
layout 'public'
|
|
|
|
|
2016-02-29 13:42:08 -05:00
|
|
|
before_action :set_account
|
2016-03-05 06:50:59 -05:00
|
|
|
before_action :set_webfinger_header
|
2016-02-29 13:42:08 -05:00
|
|
|
|
|
|
|
def show
|
|
|
|
respond_to do |format|
|
2016-03-21 05:08:19 -04:00
|
|
|
format.html { @statuses = @account.statuses.order('id desc').with_includes.with_counters.paginate(page: params[:page], per_page: 10)}
|
2016-03-24 08:21:53 -04:00
|
|
|
|
|
|
|
format.atom do
|
|
|
|
@entries = @account.stream_entries.order('id desc').with_includes.paginate_by_max_id(20, params[:max_id] || nil)
|
|
|
|
|
2016-03-24 21:13:30 -04:00
|
|
|
ActiveRecord::Associations::Preloader.new.preload(@entries.select { |a| a.activity_type == 'Status' }, activity: [:mentions, reblog: :account, thread: :account])
|
|
|
|
ActiveRecord::Associations::Preloader.new.preload(@entries.select { |a| a.activity_type == 'Favourite' }, activity: [:account, :status])
|
2016-03-24 08:28:11 -04:00
|
|
|
ActiveRecord::Associations::Preloader.new.preload(@entries.select { |a| a.activity_type == 'Follow' }, activity: :target_account)
|
2016-03-24 08:21:53 -04:00
|
|
|
end
|
2016-02-29 13:42:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-19 09:02:30 -04:00
|
|
|
def followers
|
2016-03-19 17:54:40 -04:00
|
|
|
@followers = @account.followers.order('follows.created_at desc').paginate(page: params[:page], per_page: 6)
|
2016-03-19 09:02:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def following
|
2016-03-19 17:54:40 -04:00
|
|
|
@following = @account.following.order('follows.created_at desc').paginate(page: params[:page], per_page: 6)
|
2016-03-19 09:02:30 -04:00
|
|
|
end
|
|
|
|
|
2016-02-29 13:42:08 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find_by!(username: params[:username], domain: nil)
|
|
|
|
end
|
2016-03-05 06:50:59 -05: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 13:42:08 -05:00
|
|
|
end
|