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