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-09-08 18:36:01 +00:00
|
|
|
format.html do
|
|
|
|
@statuses = @account.statuses.order('id desc').with_includes.with_counters.paginate(page: params[:page], per_page: 10)
|
|
|
|
|
|
|
|
if user_signed_in?
|
|
|
|
status_ids = @statuses.collect { |s| [s.id, s.reblog_of_id] }.flatten.uniq
|
2016-09-08 19:23:29 +00:00
|
|
|
@favourited = Status.favourites_map(status_ids, current_user.account_id)
|
|
|
|
@reblogged = Status.reblogs_map(status_ids, current_user.account_id)
|
2016-09-08 18:36:01 +00:00
|
|
|
else
|
|
|
|
@favourited = {}
|
|
|
|
@reblogged = {}
|
|
|
|
end
|
|
|
|
end
|
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)
|
|
|
|
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
|
2016-09-04 19:06:04 +00:00
|
|
|
@account = Account.find_local!(params[:username])
|
2016-02-29 18:42:08 +00:00
|
|
|
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
|