2016-03-07 12:42:33 +01:00
|
|
|
class Api::AccountsController < ApiController
|
|
|
|
before_action :set_account
|
2016-03-11 16:47:36 +01:00
|
|
|
before_action :doorkeeper_authorize!
|
2016-03-07 12:42:33 +01:00
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def following
|
|
|
|
@following = @account.following
|
|
|
|
end
|
|
|
|
|
|
|
|
def followers
|
|
|
|
@followers = @account.followers
|
|
|
|
end
|
|
|
|
|
|
|
|
def statuses
|
2016-03-22 21:53:33 +01:00
|
|
|
@statuses = @account.statuses.with_includes.with_counters.paginate_by_max_id(20, params[:max_id] || nil)
|
2016-03-07 12:42:33 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def follow
|
2016-03-17 11:59:18 +01:00
|
|
|
if @account.local?
|
|
|
|
@follow = current_user.account.follow!(@account)
|
|
|
|
else
|
|
|
|
@follow = FollowService.new.(current_user.account, @account.acct)
|
|
|
|
end
|
|
|
|
|
2016-03-07 12:42:33 +01:00
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
|
|
|
|
def unfollow
|
2016-03-17 11:59:18 +01:00
|
|
|
@unfollow = UnfollowService.new.(current_user.account, @account)
|
2016-03-07 12:42:33 +01:00
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|