2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-08 03:09:25 +09:00
|
|
|
class Api::V1::AccountsController < Api::BaseController
|
2018-07-06 01:31:35 +09:00
|
|
|
before_action -> { authorize_if_got_token! :read, :'read:accounts' }, except: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
|
|
|
|
before_action -> { doorkeeper_authorize! :follow, :'write:follows' }, only: [:follow, :unfollow]
|
|
|
|
before_action -> { doorkeeper_authorize! :follow, :'write:mutes' }, only: [:mute, :unmute]
|
|
|
|
before_action -> { doorkeeper_authorize! :follow, :'write:blocks' }, only: [:block, :unblock]
|
|
|
|
|
2017-06-01 04:36:24 +09:00
|
|
|
before_action :require_user!, except: [:show]
|
|
|
|
before_action :set_account
|
2018-04-30 16:12:36 +09:00
|
|
|
before_action :check_account_suspension, only: [:show]
|
2016-11-09 07:22:44 +09:00
|
|
|
|
2016-11-10 01:48:44 +09:00
|
|
|
respond_to :json
|
2016-03-07 20:42:33 +09:00
|
|
|
|
2017-07-07 11:02:06 +09:00
|
|
|
def show
|
|
|
|
render json: @account, serializer: REST::AccountSerializer
|
|
|
|
end
|
2016-03-07 20:42:33 +09:00
|
|
|
|
|
|
|
def follow
|
2018-03-01 10:47:59 +09:00
|
|
|
FollowService.new.call(current_user.account, @account.acct, reblogs: truthy_param?(:reblogs))
|
2017-09-06 00:48:13 +09:00
|
|
|
|
2018-03-01 10:47:59 +09:00
|
|
|
options = @account.locked? ? {} : { following_map: { @account.id => { reblogs: truthy_param?(:reblogs) } }, requested_map: { @account.id => false } }
|
2017-09-06 00:48:13 +09:00
|
|
|
|
2017-09-12 06:50:37 +09:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships(options)
|
2016-10-04 01:17:06 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def block
|
2017-01-25 05:40:41 +09:00
|
|
|
BlockService.new.call(current_user.account, @account)
|
2017-07-07 11:02:06 +09:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-03-07 20:42:33 +09:00
|
|
|
end
|
|
|
|
|
2017-02-06 10:51:56 +09:00
|
|
|
def mute
|
2018-03-01 10:47:59 +09:00
|
|
|
MuteService.new.call(current_user.account, @account, notifications: truthy_param?(:notifications))
|
2017-07-07 11:02:06 +09:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2017-02-06 10:51:56 +09:00
|
|
|
end
|
|
|
|
|
2016-03-07 20:42:33 +09:00
|
|
|
def unfollow
|
2016-10-04 01:17:06 +09:00
|
|
|
UnfollowService.new.call(current_user.account, @account)
|
2017-07-07 11:02:06 +09:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-10-04 01:17:06 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def unblock
|
|
|
|
UnblockService.new.call(current_user.account, @account)
|
2017-07-07 11:02:06 +09:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2016-03-07 20:42:33 +09:00
|
|
|
end
|
|
|
|
|
2017-02-06 10:51:56 +09:00
|
|
|
def unmute
|
|
|
|
UnmuteService.new.call(current_user.account, @account)
|
2017-07-07 11:02:06 +09:00
|
|
|
render json: @account, serializer: REST::RelationshipSerializer, relationships: relationships
|
2017-02-06 10:51:56 +09:00
|
|
|
end
|
|
|
|
|
2016-03-07 20:42:33 +09:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
2016-09-24 03:23:26 +09:00
|
|
|
|
2017-12-06 19:41:57 +09:00
|
|
|
def relationships(**options)
|
2017-09-12 06:50:37 +09:00
|
|
|
AccountRelationshipsPresenter.new([@account.id], current_user.account_id, options)
|
2016-09-24 03:23:26 +09:00
|
|
|
end
|
2018-04-30 16:12:36 +09:00
|
|
|
|
|
|
|
def check_account_suspension
|
|
|
|
gone if @account.suspended?
|
|
|
|
end
|
2016-03-07 20:42:33 +09:00
|
|
|
end
|