Commit 9e024668 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Files controller handle redirect to remote storage. Added config block to carrierwave init

parent ced044ad
class FilesController < ApplicationController class FilesController < ApplicationController
def download def download
note = Note.find(params[:id]) note = Note.find(params[:id])
uploader = note.attachment
if can?(current_user, :read_project, note.project) if uploader.file_storage?
uploader = note.attachment if can?(current_user, :read_project, note.project)
send_file uploader.file.path, disposition: 'attachment' send_file uploader.file.path, disposition: 'attachment'
else
not_found!
end
else else
not_found! redirect_to uploader.url
end end
end end
end end
......
...@@ -21,10 +21,10 @@ class AttachmentUploader < CarrierWave::Uploader::Base ...@@ -21,10 +21,10 @@ class AttachmentUploader < CarrierWave::Uploader::Base
end end
def secure_url def secure_url
if self.class.storage == CarrierWave::Storage::File "/files/#{model.class.to_s.underscore}/#{model.id}/#{file.filename}"
"/files/#{model.class.to_s.underscore}/#{model.id}/#{file.filename}" end
else
url def file_storage?
end self.class.storage == CarrierWave::Storage::File
end end
end end
...@@ -5,13 +5,15 @@ aws_file = Rails.root.join('config', 'aws.yml') ...@@ -5,13 +5,15 @@ aws_file = Rails.root.join('config', 'aws.yml')
if File.exists?(aws_file) if File.exists?(aws_file)
AWS_CONFIG = YAML.load(File.read(aws_file))[Rails.env] AWS_CONFIG = YAML.load(File.read(aws_file))[Rails.env]
config.fog_credentials = { CarrierWave.configure do |config|
provider: 'AWS', # required config.fog_credentials = {
aws_access_key_id: AWS_CONFIG['access_key_id'], # required provider: 'AWS', # required
aws_secret_access_key: AWS_CONFIG['secret_access_key'], # required aws_access_key_id: AWS_CONFIG['access_key_id'], # required
region: AWS_CONFIG['region'], # optional, defaults to 'us-east-1' aws_secret_access_key: AWS_CONFIG['secret_access_key'], # required
} region: AWS_CONFIG['region'], # optional, defaults to 'us-east-1'
config.fog_directory = AWS_CONFIG['bucket'] # required }
config.fog_public = false # optional, defaults to true config.fog_directory = AWS_CONFIG['bucket'] # required
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'} # optional, defaults to {} config.fog_public = false # optional, defaults to true
config.fog_attributes = {'Cache-Control'=>'max-age=315576000'} # optional, defaults to {}
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment