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