2017-03-30 19:42:33 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'csv'
|
|
|
|
|
|
|
|
class ImportWorker
|
|
|
|
include Sidekiq::Worker
|
2017-04-24 00:38:37 +02:00
|
|
|
|
2017-04-04 00:53:20 +02:00
|
|
|
sidekiq_options queue: 'pull', retry: false
|
2017-03-30 19:42:33 +02:00
|
|
|
|
2017-04-11 21:40:14 +02:00
|
|
|
attr_reader :import
|
|
|
|
|
2017-03-30 19:42:33 +02:00
|
|
|
def perform(import_id)
|
2017-04-11 21:40:14 +02:00
|
|
|
@import = Import.find(import_id)
|
2017-03-30 19:42:33 +02:00
|
|
|
|
2017-10-04 00:39:32 +02:00
|
|
|
Import::RelationshipWorker.push_bulk(import_rows) do |row|
|
|
|
|
[@import.account_id, row.first, relationship_type]
|
2017-03-30 19:42:33 +02:00
|
|
|
end
|
|
|
|
|
2017-04-11 21:40:14 +02:00
|
|
|
@import.destroy
|
2017-03-30 19:42:33 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-04-11 21:40:14 +02:00
|
|
|
def import_contents
|
|
|
|
Paperclip.io_adapters.for(@import.data).read
|
|
|
|
end
|
2017-03-30 19:42:33 +02:00
|
|
|
|
2017-10-04 00:39:32 +02:00
|
|
|
def relationship_type
|
|
|
|
case @import.type
|
|
|
|
when 'following'
|
|
|
|
'follow'
|
|
|
|
when 'blocking'
|
|
|
|
'block'
|
|
|
|
when 'muting'
|
|
|
|
'mute'
|
2017-03-30 19:42:33 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-04 00:39:32 +02:00
|
|
|
def import_rows
|
|
|
|
CSV.new(import_contents).reject(&:blank?)
|
2017-03-30 19:42:33 +02:00
|
|
|
end
|
|
|
|
end
|