2014-08-09 06:28:57 -04:00
|
|
|
class Admin::ExportCsvController < Admin::AdminController
|
|
|
|
|
2014-11-19 12:09:23 -05:00
|
|
|
skip_before_filter :check_xhr, only: [:show]
|
2014-08-09 06:28:57 -04:00
|
|
|
|
2014-12-06 23:15:22 -05:00
|
|
|
def export_entity
|
|
|
|
params.require(:entity)
|
2014-08-09 06:28:57 -04:00
|
|
|
# export csv file in a background thread
|
2014-12-06 23:15:22 -05:00
|
|
|
Jobs.enqueue(:export_csv_file, entity: params[:entity], user_id: current_user.id)
|
2014-11-21 10:25:04 -05:00
|
|
|
render json: success_json
|
|
|
|
end
|
|
|
|
|
2014-11-19 12:09:23 -05:00
|
|
|
# download
|
|
|
|
def show
|
2014-08-09 06:28:57 -04:00
|
|
|
filename = params.fetch(:id)
|
|
|
|
if export_csv_path = ExportCsv.get_download_path(filename)
|
|
|
|
send_file export_csv_path
|
|
|
|
else
|
|
|
|
render nothing: true, status: 404
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|