1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/workers/statistics_export_worker.rb

29 lines
957 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# asynchronously export the statistics to an excel file and send the result by email
class StatisticsExportWorker
include Sidekiq::Worker
def perform(export_id)
export = Export.find(export_id)
raise SecurityError, 'Not allowed to export' unless export.user.admin?
raise KeyError, 'Wrong worker called' unless export.category == 'statistics'
service = StatisticsExportService.new
method_name = "export_#{export.export_type}"
2023-02-20 15:37:51 +01:00
unless %w[account event machine project subscription training space order global].include?(export.export_type) &&
service.respond_to?(method_name)
2023-02-20 15:37:51 +01:00
raise TypeError("Invalid statistics export type #{export.export_type}")
end
service.public_send(method_name, export)
NotificationCenter.call type: :notify_admin_export_complete,
receiver: export.user,
attached_object: export
end
end