2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 04:09:25 +10:00
|
|
|
class Api::V1::AccountsController < Api::BaseController
|
2017-06-01 05:36:24 +10:00
|
|
|
before_action -> { doorkeeper_authorize! :read }, except: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
|
2017-02-06 12:51:56 +11:00
|
|
|
before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
|
2017-06-01 05:36:24 +10:00
|
|
|
before_action :require_user!, except: [:show]
|
|
|
|
before_action :set_account
|
2016-11-09 09:22:44 +11:00
|
|
|
|
2016-11-10 03:48:44 +11:00
|
|
|
respond_to :json
|
2016-03-07 22:42:33 +11:00
|
|
|
|
2017-07-07 12:02:06 +10:00
|
|
|
def show
|
|
|
|
render json: @account, serializer: REST::AccountSerializer
|
|
|
|
end
|
2016-03-07 22:42:33 +11:00
|
|
|
|
|
|
|
def follow
|
2016-10-04 03:17:06 +11:00
|
|
|
FollowService.new.call(current_user.account, @account.acct)
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-10-04 03:17:06 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def block
|
2017-01-25 07:40:41 +11:00
|
|
|
BlockService.new.call(current_user.account, @account)
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-03-07 22:42:33 +11:00
|
|
|
end
|
|
|
|
|
2017-02-06 12:51:56 +11:00
|
|
|
def mute
|
|
|
|
MuteService.new.call(current_user.account, @account)
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2017-02-06 12:51:56 +11:00
|
|
|
end
|
|
|
|
|
2016-03-07 22:42:33 +11:00
|
|
|
def unfollow
|
2016-10-04 03:17:06 +11:00
|
|
|
UnfollowService.new.call(current_user.account, @account)
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-10-04 03:17:06 +11:00
|
|
|
end
|
|
|
|
|
|
|
|
def unblock
|
|
|
|
UnblockService.new.call(current_user.account, @account)
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-03-07 22:42:33 +11:00
|
|
|
end
|
|
|
|
|
2017-02-06 12:51:56 +11:00
|
|
|
def unmute
|
|
|
|
UnmuteService.new.call(current_user.account, @account)
|
2017-07-07 12:02:06 +10:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2017-02-06 12:51:56 +11:00
|
|
|
end
|
|
|
|
|
2016-03-07 22:42:33 +11:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
2016-09-24 04:23:26 +10:00
|
|
|
|
2017-07-07 12:02:06 +10:00
|
|
|
def relationships
|
|
|
|
AccountRelationshipsPresenter.new([@account.id], current_user.account_id)
|
2016-09-24 04:23:26 +10:00
|
|
|
end
|
2016-03-07 22:42:33 +11:00
|
|
|
end
|