Class: CarrierWave::Storage::Fog
- Defined in:
- lib/carrierwave/storage/fog.rb
Overview
Stores things using the “fog” gem.
fog supports storing files with AWS, Google, Local and Rackspace
You need to setup some options to configure your usage:
- :fog_credentials
-
host info and credentials for service
- :fog_directory
-
specifies name of directory to store data in, assumed to already exist
- :fog_attributes
-
(optional) additional attributes to set on files
- :fog_public
-
(optional) public readability, defaults to true
- :fog_authenticated_url_expiration
-
(optional) time (in seconds) that authenticated urls
will be valid, when fog_public is false and provider is AWS or Google, defaults to 600
- :fog_use_ssl_for_aws
-
(optional) #public_url will use https for the AWS generated URL]
- :fog_aws_accelerate
-
(optional) #public_url will use s3-accelerate subdomain
instead of s3, defaults to false
AWS credentials contain the following keys:
- :aws_access_key_id
- :aws_secret_access_key
- :region
- :aws_secret_access_key
-
(optional) defaults to ‘us-east-1’
:region should be one of ['eu-west-1', 'us-east-1', 'ap-southeast-1', 'us-west-1', 'ap-northeast-1', 'eu-central-1']
Google credentials contain the following keys:
- :google_storage_access_key_id
- :google_storage_secret_access_key
-
Local credentials contain the following keys:
- :local_root
-
local path to files
Rackspace credentials contain the following keys:
- :rackspace_username
- :rackspace_api_key
-
A full example with AWS credentials:
CarrierWave.configure do |config| config.fog_credentials = { :aws_access_key_id => 'xxxxxx', :aws_secret_access_key => 'yyyyyy', :provider => 'AWS' } config.fog_directory = 'directoryname' config.fog_public = true end
Defined Under Namespace
Classes: File
Instance Attribute Summary
Attributes inherited from Abstract
Class Method Summary collapse
Instance Method Summary collapse
-
#cache!(new_file) ⇒ Object
Stores given file to cache directory.
- #clean_cache!(seconds) ⇒ Object
- #connection ⇒ Object
-
#delete_dir!(path) ⇒ Object
Deletes a cache dir.
-
#retrieve!(identifier) ⇒ Object
Retrieve a file.
-
#retrieve_from_cache!(identifier) ⇒ Object
Retrieves the file with the given cache_name from the cache.
-
#store!(file) ⇒ Object
Store a file.
Methods inherited from Abstract
Constructor Details
This class inherits a constructor from CarrierWave::Storage::Abstract
Class Method Details
.connection_cache ⇒ Object
60 61 62 |
# File 'lib/carrierwave/storage/fog.rb', line 60 def connection_cache @connection_cache ||= {} end |
.eager_load ⇒ Object
64 65 66 67 68 69 70 |
# File 'lib/carrierwave/storage/fog.rb', line 64 def eager_load # see #1198. This will hopefully no longer be necessary in future release of fog fog_credentials = CarrierWave::Uploader::Base.fog_credentials if fog_credentials.present? CarrierWave::Storage::Fog.connection_cache[fog_credentials] ||= ::Fog::Storage.new(fog_credentials) end end |
Instance Method Details
#cache!(new_file) ⇒ Object
Stores given file to cache directory.
Parameters
- new_file (File, IOString, Tempfile)
-
any kind of file object
Returns
- CarrierWave::SanitizedFile
-
a sanitized file
116 117 118 119 120 |
# File 'lib/carrierwave/storage/fog.rb', line 116 def cache!(new_file) f = CarrierWave::Storage::Fog::File.new(uploader, self, uploader.cache_path) f.store(new_file) f end |
#clean_cache!(seconds) ⇒ Object
144 145 146 147 148 149 150 151 152 153 154 155 |
# File 'lib/carrierwave/storage/fog.rb', line 144 def clean_cache!(seconds) connection.directories.new( :key => uploader.fog_directory, :public => uploader.fog_public ).files.all(:prefix => uploader.cache_dir).each do |file| # generate_cache_id returns key formatted TIMEINT-PID(-COUNTER)-RND matched = file.key.match(/(\d+)-\d+-\d+(?:-\d+)?/) next unless matched time = Time.at(matched[1].to_i) file.destroy if time < (Time.now.utc - seconds) end end |
#connection ⇒ Object
157 158 159 160 161 162 |
# File 'lib/carrierwave/storage/fog.rb', line 157 def connection @connection ||= begin = credentials = uploader.fog_credentials self.class.connection_cache[credentials] ||= ::Fog::Storage.new() end end |
#delete_dir!(path) ⇒ Object
Deletes a cache dir
140 141 142 |
# File 'lib/carrierwave/storage/fog.rb', line 140 def delete_dir!(path) # do nothing, because there's no such things as 'empty directory' end |
#retrieve!(identifier) ⇒ Object
Retrieve a file
Parameters
- identifier (String)
-
unique identifier for file
Returns
- CarrierWave::Storage::Fog::File
-
the stored file
101 102 103 |
# File 'lib/carrierwave/storage/fog.rb', line 101 def retrieve!(identifier) CarrierWave::Storage::Fog::File.new(uploader, self, uploader.store_path(identifier)) end |
#retrieve_from_cache!(identifier) ⇒ Object
Retrieves the file with the given cache_name from the cache.
Parameters
- cache_name (String)
-
uniquely identifies a cache file
Raises
- CarrierWave::InvalidParameter
-
if the cache_name is incorrectly formatted.
133 134 135 |
# File 'lib/carrierwave/storage/fog.rb', line 133 def retrieve_from_cache!(identifier) CarrierWave::Storage::Fog::File.new(uploader, self, uploader.cache_path(identifier)) end |
#store!(file) ⇒ Object
Store a file
Parameters
- file (CarrierWave::SanitizedFile)
-
the file to store
Returns
- CarrierWave::Storage::Fog::File
-
the stored file
84 85 86 87 88 |
# File 'lib/carrierwave/storage/fog.rb', line 84 def store!(file) f = CarrierWave::Storage::Fog::File.new(uploader, self, uploader.store_path) f.store(file) f end |