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