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
|
|
|
|
respond_to do |format|
|
2016-03-21 09:08:19 +00:00
|
|
|
format.html { @statuses = @account.statuses.order('id desc').with_includes.with_counters.paginate(page: params[:page], per_page: 10)}
|
2016-03-24 12:21:53 +00:00
|
|
|
|
|
|
|
format.atom do
|
|
|
|
@entries = @account.stream_entries.order('id desc').with_includes.paginate_by_max_id(20, params[:max_id] || nil)
|
|
|
|
|
2016-03-25 01:13:30 +00: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 12:28:11 +00:00
|
|
|
ActiveRecord::Associations::Preloader.new.preload(@entries.select { |a| a.activity_type == 'Follow' }, activity: :target_account)
|
2016-03-24 12:21:53 +00:00
|
|
|
end
|
2016-02-29 18:42:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-19 13:02:30 +00:00
|
|
|
def followers
|
2016-03-19 21:54:40 +00:00
|
|
|
@followers = @account.followers.order('follows.created_at desc').paginate(page: params[:page], per_page: 6)
|
2016-03-19 13:02:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def following
|
2016-03-19 21:54:40 +00:00
|
|
|
@following = @account.following.order('follows.created_at desc').paginate(page: params[:page], per_page: 6)
|
2016-03-19 13:02:30 +00:00
|
|
|
end
|
|
|
|
|
2016-02-29 18:42:08 +00:00
|
|
|
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
|