* Make private toots get PuSHed to subscription URLs that belong to domains where you have approved followers * Authorized followers controller, stub for bulk action * Soft block in the background * Add simple test for new controller * Rename Settings::FollowersController to Settings::FollowerDomainsController, paginate results, rename "private" post setting to "followers-only", fix pagination style, improve post privacy preferences style, improve warning style * Extract compose form warnings into own container, show warning when posting to followers-only with unlocked account
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require 'csv'
 | |
| 
 | |
| class ImportWorker
 | |
|   include Sidekiq::Worker
 | |
| 
 | |
|   sidekiq_options queue: 'pull', retry: false
 | |
| 
 | |
|   attr_reader :import
 | |
| 
 | |
|   def perform(import_id)
 | |
|     @import = Import.find(import_id)
 | |
| 
 | |
|     case @import.type
 | |
|     when 'blocking'
 | |
|       process_blocks
 | |
|     when 'following'
 | |
|       process_follows
 | |
|     when 'muting'
 | |
|       process_mutes
 | |
|     end
 | |
| 
 | |
|     @import.destroy
 | |
|   end
 | |
| 
 | |
|   private
 | |
| 
 | |
|   def from_account
 | |
|     @import.account
 | |
|   end
 | |
| 
 | |
|   def import_contents
 | |
|     Paperclip.io_adapters.for(@import.data).read
 | |
|   end
 | |
| 
 | |
|   def import_rows
 | |
|     CSV.new(import_contents).reject(&:blank?)
 | |
|   end
 | |
| 
 | |
|   def process_mutes
 | |
|     import_rows.each do |row|
 | |
|       begin
 | |
|         target_account = FollowRemoteAccountService.new.call(row.first)
 | |
|         next if target_account.nil?
 | |
|         MuteService.new.call(from_account, target_account)
 | |
|       rescue Goldfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError
 | |
|         next
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def process_blocks
 | |
|     import_rows.each do |row|
 | |
|       begin
 | |
|         target_account = FollowRemoteAccountService.new.call(row.first)
 | |
|         next if target_account.nil?
 | |
|         BlockService.new.call(from_account, target_account)
 | |
|       rescue Goldfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError
 | |
|         next
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| 
 | |
|   def process_follows
 | |
|     import_rows.each do |row|
 | |
|       begin
 | |
|         FollowService.new.call(from_account, row.first)
 | |
|       rescue Mastodon::NotPermittedError, ActiveRecord::RecordNotFound, Goldfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError
 | |
|         next
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |