2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 18:09:25 +00:00
|
|
|
class Api::V1::AccountsController < Api::BaseController
|
2017-05-31 19:36:24 +00:00
|
|
|
before_action -> { doorkeeper_authorize! :read }, except: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
|
2017-02-06 01:51:56 +00:00
|
|
|
before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
|
2017-05-31 19:36:24 +00:00
|
|
|
before_action :require_user!, except: [:show]
|
|
|
|
before_action :set_account
|
2016-11-08 22:22:44 +00:00
|
|
|
|
2016-11-09 16:48:44 +00:00
|
|
|
respond_to :json
|
2016-03-07 11:42:33 +00:00
|
|
|
|
2016-12-21 19:00:18 +00:00
|
|
|
def show; end
|
2016-03-07 11:42:33 +00:00
|
|
|
|
|
|
|
def follow
|
2016-10-03 16:17:06 +00:00
|
|
|
FollowService.new.call(current_user.account, @account.acct)
|
|
|
|
set_relationship
|
2017-04-19 13:37:42 +00:00
|
|
|
render :relationship
|
2016-10-03 16:17:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def block
|
2017-01-24 20:40:41 +00:00
|
|
|
BlockService.new.call(current_user.account, @account)
|
2017-01-23 20:29:34 +00:00
|
|
|
|
2017-05-19 19:05:32 +00:00
|
|
|
@following = { @account.id => false }
|
|
|
|
@followed_by = { @account.id => false }
|
|
|
|
@blocking = { @account.id => true }
|
|
|
|
@requested = { @account.id => false }
|
|
|
|
@muting = { @account.id => current_account.muting?(@account.id) }
|
|
|
|
@domain_blocking = { @account.id => current_account.domain_blocking?(@account.domain) }
|
2017-01-23 20:29:34 +00:00
|
|
|
|
2017-04-19 13:37:42 +00:00
|
|
|
render :relationship
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|
|
|
|
|
2017-02-06 01:51:56 +00:00
|
|
|
def mute
|
|
|
|
MuteService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 13:37:42 +00:00
|
|
|
render :relationship
|
2017-02-06 01:51:56 +00:00
|
|
|
end
|
|
|
|
|
2016-03-07 11:42:33 +00:00
|
|
|
def unfollow
|
2016-10-03 16:17:06 +00:00
|
|
|
UnfollowService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 13:37:42 +00:00
|
|
|
render :relationship
|
2016-10-03 16:17:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def unblock
|
|
|
|
UnblockService.new.call(current_user.account, @account)
|
2016-09-23 18:23:26 +00:00
|
|
|
set_relationship
|
2017-04-19 13:37:42 +00:00
|
|
|
render :relationship
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|
|
|
|
|
2017-02-06 01:51:56 +00:00
|
|
|
def unmute
|
|
|
|
UnmuteService.new.call(current_user.account, @account)
|
|
|
|
set_relationship
|
2017-04-19 13:37:42 +00:00
|
|
|
render :relationship
|
2017-02-06 01:51:56 +00:00
|
|
|
end
|
|
|
|
|
2016-03-07 11:42:33 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = Account.find(params[:id])
|
|
|
|
end
|
2016-09-23 18:23:26 +00:00
|
|
|
|
|
|
|
def set_relationship
|
2017-05-19 19:05:32 +00:00
|
|
|
@following = Account.following_map([@account.id], current_user.account_id)
|
|
|
|
@followed_by = Account.followed_by_map([@account.id], current_user.account_id)
|
|
|
|
@blocking = Account.blocking_map([@account.id], current_user.account_id)
|
|
|
|
@muting = Account.muting_map([@account.id], current_user.account_id)
|
|
|
|
@requested = Account.requested_map([@account.id], current_user.account_id)
|
|
|
|
@domain_blocking = Account.domain_blocking_map([@account.id], current_user.account_id)
|
2016-09-23 18:23:26 +00:00
|
|
|
end
|
2016-03-07 11:42:33 +00:00
|
|
|
end
|