mirror of
				https://github.com/mastodon/mastodon.git
				synced 2025-10-31 05:11:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			795 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			795 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class Api::V1::DomainBlocks::PreviewsController < Api::BaseController
 | |
|   before_action -> { doorkeeper_authorize! :follow, :write, :'write:blocks' }
 | |
|   before_action :require_user!
 | |
|   before_action :set_domain
 | |
|   before_action :set_domain_block_preview
 | |
| 
 | |
|   def show
 | |
|     render json: @domain_block_preview, serializer: REST::DomainBlockPreviewSerializer
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def set_domain
 | |
|     @domain = TagManager.instance.normalize_domain(params[:domain])
 | |
|   end
 | |
| 
 | |
|   def set_domain_block_preview
 | |
|     @domain_block_preview = with_read_replica do
 | |
|       DomainBlockPreviewPresenter.new(
 | |
|         following_count: current_account.following.where(domain: @domain).count,
 | |
|         followers_count: current_account.followers.where(domain: @domain).count
 | |
|       )
 | |
|     end
 | |
|   end
 | |
| end
 | 
