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