chinwagsocial/app/controllers/api/v1/accounts_controller.rb

71 lines
2.1 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class Api::V1::AccountsController < Api::BaseController
before_action -> { doorkeeper_authorize! :read }, except: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
before_action -> { doorkeeper_authorize! :follow }, only: [:follow, :unfollow, :block, :unblock, :mute, :unmute]
before_action :require_user!, except: [:show]
before_action :set_account
respond_to :json
def show; end
def follow
2016-10-04 03:17:06 +11:00
FollowService.new.call(current_user.account, @account.acct)
set_relationship
2017-04-19 23:37:42 +10:00
render :relationship
2016-10-04 03:17:06 +11:00
end
def block
BlockService.new.call(current_user.account, @account)
@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-04-19 23:37:42 +10:00
render :relationship
end
def mute
MuteService.new.call(current_user.account, @account)
set_relationship
2017-04-19 23:37:42 +10:00
render :relationship
end
def unfollow
2016-10-04 03:17:06 +11:00
UnfollowService.new.call(current_user.account, @account)
set_relationship
2017-04-19 23:37:42 +10:00
render :relationship
2016-10-04 03:17:06 +11:00
end
def unblock
UnblockService.new.call(current_user.account, @account)
set_relationship
2017-04-19 23:37:42 +10:00
render :relationship
end
def unmute
UnmuteService.new.call(current_user.account, @account)
set_relationship
2017-04-19 23:37:42 +10:00
render :relationship
end
private
def set_account
@account = Account.find(params[:id])
end
def set_relationship
@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)
end
end