discourse/app/controllers/export_csv_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
943 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2014-12-22 11:17:04 -05:00
class ExportCsvController < ApplicationController
skip_before_action :preload_json, :check_xhr, only: [:show]
2014-08-09 06:28:57 -04:00
2014-12-06 23:15:22 -05:00
def export_entity
guardian.ensure_can_export_entity!(export_params[:entity])
if export_params[:entity] == "user_archive"
Jobs.enqueue(:export_user_archive, user_id: current_user.id, args: export_params[:args])
else
Jobs.enqueue(
:export_csv_file,
entity: export_params[:entity],
user_id: current_user.id,
args: export_params[:args],
)
end
StaffActionLogger.new(current_user).log_entity_export(export_params[:entity])
render json: success_json
rescue Discourse::InvalidAccess
2019-12-24 05:26:44 -05:00
render_json_error I18n.t("csv_export.rate_limit_error")
end
private
def export_params
@_export_params ||=
begin
params.require(:entity)
params.permit(:entity, args: Report::FILTERS).to_h
end
2018-06-07 01:28:18 -04:00
end
2014-08-09 06:28:57 -04:00
end