about summary refs log blame commit diff
path: root/app/controllers/settings/exports_controller.rb
blob: 30138d29ed6412ab3c39f67b3f9b44cd207f92eb (plain) (tree)
1
2
3
4
5
6
7
8
                             
                                                            
                       
                                         
 
          



                                          








                                             
 

                                         
     


                                                              
   
# frozen_string_literal: true

class Settings::ExportsController < Settings::BaseController
  include Authorization

  skip_before_action :require_functional!

  def show
    @export  = Export.new(current_account)
    @backups = current_user.backups
  end

  def create
    backup = nil

    RedisLock.acquire(lock_options) do |lock|
      if lock.acquired?
        authorize :backup, :create?
        backup = current_user.backups.create!
      else
        raise Mastodon::RaceConditionError
      end
    end

    BackupWorker.perform_async(backup.id)

    redirect_to settings_export_path
  end

  def lock_options
    { redis: Redis.current, key: "backup:#{current_user.id}" }
  end
end