2017-02-26 18:15:00 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 16:32:13 -05:00
|
|
|
class Settings::ExportsController < Settings::BaseController
|
2018-02-21 17:21:32 -05:00
|
|
|
include Authorization
|
2022-04-28 11:47:34 -04:00
|
|
|
include Redisable
|
2022-05-12 18:02:35 -04:00
|
|
|
include Lockable
|
2018-02-21 17:21:32 -05:00
|
|
|
|
2023-10-23 11:46:21 -04:00
|
|
|
skip_before_action :check_self_destruct!
|
2019-09-19 14:58:19 -04:00
|
|
|
skip_before_action :require_functional!
|
2017-02-26 18:15:00 -05:00
|
|
|
|
2017-03-19 15:29:41 -04:00
|
|
|
def show
|
2024-10-03 09:09:58 -04:00
|
|
|
@export_summary = ExportSummary.new(preloaded_account)
|
2018-02-21 17:21:32 -05:00
|
|
|
@backups = current_user.backups
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2019-03-10 19:50:31 -04:00
|
|
|
backup = nil
|
|
|
|
|
2023-05-02 12:16:07 -04:00
|
|
|
with_redis_lock("backup:#{current_user.id}") do
|
2022-05-12 18:02:35 -04:00
|
|
|
authorize :backup, :create?
|
|
|
|
backup = current_user.backups.create!
|
2019-03-10 19:50:31 -04:00
|
|
|
end
|
2018-02-21 17:21:32 -05:00
|
|
|
|
|
|
|
BackupWorker.perform_async(backup.id)
|
|
|
|
|
|
|
|
redirect_to settings_export_path
|
2017-03-19 15:29:41 -04:00
|
|
|
end
|
2024-10-03 09:09:58 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def preloaded_account
|
|
|
|
current_account.tap do |account|
|
|
|
|
ActiveRecord::Associations::Preloader.new(
|
|
|
|
records: [account],
|
|
|
|
associations: :account_stat
|
|
|
|
).call
|
|
|
|
end
|
|
|
|
end
|
2017-02-26 18:15:00 -05:00
|
|
|
end
|