mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
78 lines
2.2 KiB
Ruby
78 lines
2.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'parallel'
|
|
|
|
class Users::ExportData::Imports
|
|
def initialize(user, files_directory)
|
|
@user = user
|
|
@files_directory = files_directory
|
|
end
|
|
|
|
def call
|
|
imports_with_files = user.imports.includes(:file_attachment).to_a
|
|
|
|
if imports_with_files.size > 1
|
|
results = Parallel.map(imports_with_files, in_threads: 2) do |import|
|
|
process_import(import)
|
|
end
|
|
results
|
|
else
|
|
imports_with_files.map { |import| process_import(import) }
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
attr_reader :user, :files_directory
|
|
|
|
def process_import(import)
|
|
Rails.logger.info "Processing import #{import.name}"
|
|
|
|
import_hash = import.as_json(except: %w[user_id raw_data id])
|
|
|
|
if import.file.attached?
|
|
add_file_data_to_import(import, import_hash)
|
|
else
|
|
add_empty_file_data_to_import(import_hash)
|
|
end
|
|
|
|
Rails.logger.info "Import #{import.name} processed"
|
|
|
|
import_hash
|
|
end
|
|
|
|
def add_file_data_to_import(import, import_hash)
|
|
sanitized_filename = generate_sanitized_filename(import)
|
|
file_path = files_directory.join(sanitized_filename)
|
|
|
|
begin
|
|
download_and_save_import_file(import, file_path)
|
|
add_file_metadata_to_import(import, import_hash, sanitized_filename)
|
|
rescue StandardError => e
|
|
ExceptionReporter.call(e)
|
|
|
|
import_hash['file_error'] = "Failed to download: #{e.message}"
|
|
end
|
|
end
|
|
|
|
def add_empty_file_data_to_import(import_hash)
|
|
import_hash['file_name'] = nil
|
|
import_hash['original_filename'] = nil
|
|
end
|
|
|
|
def generate_sanitized_filename(import)
|
|
"import_#{import.id}_#{import.file.blob.filename}".gsub(/[^0-9A-Za-z._-]/, '_')
|
|
end
|
|
|
|
def download_and_save_import_file(import, file_path)
|
|
file_content = Imports::SecureFileDownloader.new(import.file).download_with_verification
|
|
File.write(file_path, file_content, mode: 'wb')
|
|
end
|
|
|
|
def add_file_metadata_to_import(import, import_hash, sanitized_filename)
|
|
import_hash['file_name'] = sanitized_filename
|
|
import_hash['original_filename'] = import.file.blob.filename.to_s
|
|
import_hash['file_size'] = import.file.blob.byte_size
|
|
import_hash['content_type'] = import.file.blob.content_type
|
|
end
|
|
end
|