about summary refs log tree commit diff
path: root/app/workers/import_worker.rb
blob: a3ae2a85a4987edbf7c7adc7ab5162ccbe4c6559 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true

require 'csv'

class ImportWorker
  include Sidekiq::Worker

  sidekiq_options retry: false

  def perform(import_id)
    import = Import.find(import_id)

    case import.type
    when 'blocking'
      process_blocks(import)
    when 'following'
      process_follows(import)
    end

    import.destroy
  end

  private

  def process_blocks(import)
    from_account = import.account

    CSV.foreach(import.data.path) do |row|
      next if row.size != 1

      begin
        target_account = FollowRemoteAccountService.new.call(row[0])
        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)
    from_account = import.account

    CSV.foreach(import.data.path) do |row|
      next if row.size != 1

      begin
        FollowService.new.call(from_account, row[0])
      rescue Goldfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError
        next
      end
    end
  end
end