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