This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-30 10:06:01 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module ExportControllerConcern
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
before_action :authenticate_user!
|
2019-09-19 11:58:19 -07:00
|
|
|
before_action :require_not_suspended!
|
2017-05-30 10:06:01 -07:00
|
|
|
before_action :load_export
|
2019-09-19 11:58:19 -07:00
|
|
|
|
|
|
|
skip_before_action :require_functional!
|
2017-05-30 10:06:01 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_export
|
|
|
|
@export = Export.new(current_account)
|
|
|
|
end
|
|
|
|
|
|
|
|
def send_export_file
|
|
|
|
respond_to do |format|
|
|
|
|
format.csv { send_data export_data, filename: export_filename }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def export_data
|
|
|
|
raise 'Override in controller'
|
|
|
|
end
|
|
|
|
|
|
|
|
def export_filename
|
|
|
|
"#{controller_name}.csv"
|
|
|
|
end
|
2019-09-19 11:58:19 -07:00
|
|
|
|
|
|
|
def require_not_suspended!
|
|
|
|
forbidden if current_account.suspended?
|
|
|
|
end
|
2017-05-30 10:06:01 -07:00
|
|
|
end
|