mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-10 17:36:33 +08:00
51 lines
1.6 KiB
Ruby
51 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class ZipExportJob < ApplicationJob
|
|
include FailedDeliveryNotifiableJob
|
|
|
|
def perform(user_id:, params: {})
|
|
@user = User.find(user_id)
|
|
I18n.backend.date_format = @user.settings[:date_format] || Constants::DEFAULT_DATE_FORMAT
|
|
zip_input_dir = FileUtils.mkdir_p(Rails.root.join("tmp/temp_zip_#{Time.now.to_i}").to_s).first
|
|
zip_dir = FileUtils.mkdir_p(Rails.root.join('tmp/zip-ready').to_s).first
|
|
full_zip_name = File.join(zip_dir, zip_name)
|
|
ZipExport.transaction do
|
|
@zip_export = ZipExport.create!(user: @user)
|
|
fill_content(zip_input_dir, params)
|
|
@zip_export.zip!(zip_input_dir, full_zip_name)
|
|
@zip_export.zip_file.attach(io: File.open(full_zip_name), filename: zip_name)
|
|
generate_notification!
|
|
end
|
|
rescue Errno::ENOENT => e
|
|
Rails.logger.error(e.message)
|
|
ensure
|
|
FileUtils.rm_rf([zip_input_dir, full_zip_name], secure: true)
|
|
I18n.backend.date_format = nil
|
|
end
|
|
|
|
private
|
|
|
|
def zip_name
|
|
"export_#{Time.now.utc.strftime('%F %H-%M-%S_UTC')}.zip"
|
|
end
|
|
|
|
def fill_content(dir, params)
|
|
raise NotImplementedError
|
|
end
|
|
|
|
def generate_notification!
|
|
DeliveryNotification.send_notifications(
|
|
{
|
|
title: I18n.t('zip_export.notification_title'),
|
|
message: "<a data-id='#{@zip_export.id}' " \
|
|
"data-turbolinks='false' " \
|
|
"href='#{Rails.application
|
|
.routes
|
|
.url_helpers
|
|
.zip_exports_download_path(@zip_export)}'>" \
|
|
"#{@zip_export.zip_file_name}</a>",
|
|
user: @user
|
|
}
|
|
)
|
|
end
|
|
end
|