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