2023-03-16 21:46:52 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class BackupsController < ApplicationController
|
|
|
|
include RoutingHelper
|
|
|
|
|
2023-10-23 15:46:21 +00:00
|
|
|
skip_before_action :check_self_destruct!
|
2023-03-16 21:46:52 +00:00
|
|
|
skip_before_action :require_functional!
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_backup
|
|
|
|
|
|
|
|
def download
|
|
|
|
case Paperclip::Attachment.default_options[:storage]
|
2023-07-27 14:13:45 +00:00
|
|
|
when :s3, :azure
|
2023-06-05 06:22:03 +00:00
|
|
|
redirect_to @backup.dump.expiring_url(10), allow_other_host: true
|
2023-03-16 21:46:52 +00:00
|
|
|
when :fog
|
2023-04-05 17:31:49 +00:00
|
|
|
if Paperclip::Attachment.default_options.dig(:fog_credentials, :openstack_temp_url_key).present?
|
2023-06-05 06:22:03 +00:00
|
|
|
redirect_to @backup.dump.expiring_url(Time.now.utc + 10), allow_other_host: true
|
2023-03-27 15:07:37 +00:00
|
|
|
else
|
2023-06-05 06:22:03 +00:00
|
|
|
redirect_to full_asset_url(@backup.dump.url), allow_other_host: true
|
2023-03-27 15:07:37 +00:00
|
|
|
end
|
2023-03-16 21:46:52 +00:00
|
|
|
when :filesystem
|
2023-06-05 06:22:03 +00:00
|
|
|
redirect_to full_asset_url(@backup.dump.url), allow_other_host: true
|
2023-03-16 21:46:52 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_backup
|
|
|
|
@backup = current_user.backups.find(params[:id])
|
|
|
|
end
|
|
|
|
end
|