Class: CarrierWave::Storage::Fog::File
- Inherits:
-
Object
- Object
- CarrierWave::Storage::Fog::File
- Includes:
- Utilities::Uri
- Defined in:
- lib/carrierwave/storage/fog.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Current local path to file.
Instance Method Summary collapse
-
#attributes ⇒ Object
Return all attributes from file.
-
#authenticated_url(options = {}) ⇒ Object
Return a temporary authenticated url to a private file, if available Only supported for AWS, Rackspace and Google providers.
-
#content_type ⇒ Object
Lookup value for file content-type header.
-
#content_type=(new_content_type) ⇒ Object
Set non-default content-type header (default is file.content_type).
-
#delete ⇒ Object
Remove the file from service.
-
#exists? ⇒ Boolean
Check if the file exists on the remote service.
-
#extension ⇒ Object
Return extension of file.
-
#filename(options = {}) ⇒ Object
Return file name, if available.
-
#headers ⇒ Object
deprecated: All attributes from file (includes headers).
-
#initialize(uploader, base, path) ⇒ File
constructor
A new instance of File.
-
#public_url ⇒ Object
Return a url to a public file, if available.
-
#read ⇒ Object
Read content of file from service.
-
#size ⇒ Object
Return size of file body.
-
#store(new_file) ⇒ Object
Write file to service.
-
#url(options = {}) ⇒ Object
Return url to file, if avaliable.
Constructor Details
#initialize(uploader, base, path) ⇒ File
Returns a new instance of File.
215 216 217 |
# File 'lib/carrierwave/storage/fog.rb', line 215 def initialize(uploader, base, path) @uploader, @base, @path = uploader, base, path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Current local path to file
Returns
- String
-
a path to file
114 115 116 |
# File 'lib/carrierwave/storage/fog.rb', line 114 def path @path end |
Instance Method Details
#attributes ⇒ Object
Return all attributes from file
Returns
- Hash
-
attributes from file
123 124 125 |
# File 'lib/carrierwave/storage/fog.rb', line 123 def attributes file.attributes end |
#authenticated_url(options = {}) ⇒ Object
Return a temporary authenticated url to a private file, if available Only supported for AWS, Rackspace and Google providers
Returns
- String
-
temporary authenticated url
or
- NilClass
-
no authenticated url available
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/carrierwave/storage/fog.rb', line 137 def authenticated_url( = {}) if ['AWS', 'Google', 'Rackspace', 'OpenStack'].include?(@uploader.fog_credentials[:provider]) # avoid a get by using local references local_directory = connection.directories.new(:key => @uploader.fog_directory) local_file = local_directory.files.new(:key => path) if @uploader.fog_credentials[:provider] == "AWS" local_file.url(::Fog::Time.now + @uploader.fog_authenticated_url_expiration, ) elsif ['Rackspace', 'OpenStack'].include?(@uploader.fog_credentials[:provider]) connection.get_object_https_url(@uploader.fog_directory, path, ::Fog::Time.now + @uploader.fog_authenticated_url_expiration) else local_file.url(::Fog::Time.now + @uploader.fog_authenticated_url_expiration) end else nil end end |
#content_type ⇒ Object
Lookup value for file content-type header
Returns
- String
-
value of content-type
161 162 163 |
# File 'lib/carrierwave/storage/fog.rb', line 161 def content_type @content_type || file.content_type end |
#content_type=(new_content_type) ⇒ Object
Set non-default content-type header (default is file.content_type)
Returns
- String
-
returns new content type value
172 173 174 |
# File 'lib/carrierwave/storage/fog.rb', line 172 def content_type=(new_content_type) @content_type = new_content_type end |
#delete ⇒ Object
Remove the file from service
Returns
- Boolean
-
true for success or raises error
183 184 185 186 |
# File 'lib/carrierwave/storage/fog.rb', line 183 def delete # avoid a get by just using local reference directory.files.new(:key => path).destroy end |
#exists? ⇒ Boolean
Check if the file exists on the remote service
Returns
- Boolean
-
true if file exists or false
246 247 248 |
# File 'lib/carrierwave/storage/fog.rb', line 246 def exists? !!directory.files.head(path) end |
#extension ⇒ Object
Return extension of file
Returns
- String
-
extension of file or nil if the file has no extension
195 196 197 198 |
# File 'lib/carrierwave/storage/fog.rb', line 195 def extension path_elements = path.split('.') path_elements.last if path_elements.size > 1 end |
#filename(options = {}) ⇒ Object
Return file name, if available
Returns
- String
-
file name
or
- NilClass
-
no file name available
338 339 340 341 342 |
# File 'lib/carrierwave/storage/fog.rb', line 338 def filename( = {}) if file_url = url() URI.decode(file_url).gsub(/.*\/(.*?$)/, '\1').split('?').first end end |
#headers ⇒ Object
deprecated: All attributes from file (includes headers)
Returns
- Hash
-
attributes from file
207 208 209 210 211 212 213 |
# File 'lib/carrierwave/storage/fog.rb', line 207 def headers location = caller.first warning = "[yellow][WARN] headers is deprecated, use attributes instead[/]" warning << " [light_black](#{location})[/]" Formatador.display_line(warning) attributes end |
#public_url ⇒ Object
Return a url to a public file, if available
Returns
- String
-
public url
or
- NilClass
-
no public url available
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 |
# File 'lib/carrierwave/storage/fog.rb', line 278 def public_url encoded_path = encode_path(path) if host = @uploader.asset_host if host.respond_to? :call "#{host.call(self)}/#{encoded_path}" else "#{host}/#{encoded_path}" end else # AWS/Google optimized for speed over correctness case @uploader.fog_credentials[:provider] when 'AWS' # check if some endpoint is set in fog_credentials if @uploader.fog_credentials.has_key?(:endpoint) "#{@uploader.fog_credentials[:endpoint]}/#{@uploader.fog_directory}/#{encoded_path}" else protocol = @uploader.fog_use_ssl_for_aws ? "https" : "http" # if directory is a valid subdomain, use that style for access if @uploader.fog_directory.to_s =~ /^(?:[a-z]|\d(?!\d{0,2}(?:\d{1,3}){3}$))(?:[a-z0-9\.]|(?![\-])|\-(?![\.])){1,61}[a-z0-9]$/ "#{protocol}://#{@uploader.fog_directory}.s3.amazonaws.com/#{encoded_path}" else # directory is not a valid subdomain, so use path style for access "#{protocol}://s3.amazonaws.com/#{@uploader.fog_directory}/#{encoded_path}" end end when 'Google' "https://commondatastorage.googleapis.com/#{@uploader.fog_directory}/#{encoded_path}" else # avoid a get by just using local reference directory.files.new(:key => path).public_url end end end |
#read ⇒ Object
Read content of file from service
Returns
- String
-
contents of file
225 226 227 |
# File 'lib/carrierwave/storage/fog.rb', line 225 def read file.body end |
#size ⇒ Object
Return size of file body
Returns
- Integer
-
size of file body
236 237 238 |
# File 'lib/carrierwave/storage/fog.rb', line 236 def size file.content_length end |
#store(new_file) ⇒ Object
Write file to service
Returns
- Boolean
-
true on success or raises error
256 257 258 259 260 261 262 263 264 265 266 267 |
# File 'lib/carrierwave/storage/fog.rb', line 256 def store(new_file) fog_file = new_file.to_file @content_type ||= new_file.content_type @file = directory.files.create({ :body => fog_file ? fog_file : new_file.read, :content_type => @content_type, :key => path, :public => @uploader.fog_public }.merge(@uploader.fog_attributes)) fog_file.close if fog_file && !fog_file.closed? true end |
#url(options = {}) ⇒ Object
Return url to file, if avaliable
Returns
- String
-
url
or
- NilClass
-
no url available
321 322 323 324 325 326 327 |
# File 'lib/carrierwave/storage/fog.rb', line 321 def url( = {}) if !@uploader.fog_public authenticated_url() else public_url end end |