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