2017-02-27 10:15:00 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-13 08:32:13 +11:00
|
|
|
class Settings::ExportsController < Settings::BaseController
|
2018-02-22 09:21:32 +11:00
|
|
|
include Authorization
|
2022-04-29 01:47:34 +10:00
|
|
|
include Redisable
|
2022-05-13 08:02:35 +10:00
|
|
|
include Lockable
|
2018-02-22 09:21:32 +11:00
|
|
|
|
2019-09-20 04:58:19 +10:00
|
|
|
skip_before_action :require_functional!
|
2017-02-27 10:15:00 +11:00
|
|
|
|
2017-03-20 06:29:41 +11:00
|
|
|
def show
|
2018-02-22 09:21:32 +11:00
|
|
|
@export = Export.new(current_account)
|
|
|
|
@backups = current_user.backups
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2019-03-11 10:50:31 +11:00
|
|
|
backup = nil
|
|
|
|
|
2022-05-13 08:02:35 +10:00
|
|
|
with_lock("backup:#{current_user.id}") do
|
|
|
|
authorize :backup, :create?
|
|
|
|
backup = current_user.backups.create!
|
2019-03-11 10:50:31 +11:00
|
|
|
end
|
2018-02-22 09:21:32 +11:00
|
|
|
|
|
|
|
BackupWorker.perform_async(backup.id)
|
|
|
|
|
|
|
|
redirect_to settings_export_path
|
2017-03-20 06:29:41 +11:00
|
|
|
end
|
2017-02-27 10:15:00 +11:00
|
|
|
end
|