Skip to content
Extraits de code Groupes Projets
accounts_controller.rb 2,1 ko
Newer Older
  • Learn to ignore specific revisions
  • 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
    
        FollowService.new.call(current_user.account, @account.acct)
        set_relationship
    
        render :relationship
    
        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) }
    
        render :relationship
    
      def mute
        MuteService.new.call(current_user.account, @account)
        set_relationship
    
        render :relationship
    
      def unfollow
    
        UnfollowService.new.call(current_user.account, @account)
        set_relationship
    
        render :relationship
    
      end
    
      def unblock
        UnblockService.new.call(current_user.account, @account)
    
        render :relationship
    
      def unmute
        UnmuteService.new.call(current_user.account, @account)
        set_relationship
    
        render :relationship
    
      private
    
      def set_account
        @account = Account.find(params[:id])
      end
    
        @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)