Class: CarrierWave::Storage::Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/carrierwave/storage/abstract.rb

Overview

This file serves mostly as a specification for Storage engines. There is no requirement that storage engines must be a subclass of this class. However, any storage engine must conform to the following interface:

The storage engine must respond to store!, taking an uploader object and a CarrierWave::SanitizedFile as parameters. This method should do something to store the given file, and then return an object.

The storage engine must respond to retrieve!, taking an uploader object and an identifier as parameters. This method should do retrieve and then return an object.

The objects returned by store! and retrieve! both must respond to identifier, taking no arguments. Identifier is a string that uniquely identifies this file and can be used to retrieve it later.

Direct Known Subclasses

File, S3

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.retrieve!(uploader, identifier) ⇒ Object

Do something to retrieve the file

Parameters

uploader (CarrierWave::Uploader)

an uploader object

identifier (String)

uniquely identifies the file

Returns

#identifier

an object



54
55
56
# File 'lib/carrierwave/storage/abstract.rb', line 54

def self.retrieve!(uploader, identifier)
  self.new
end

.setup!Object

Do setup specific for this storage engine



25
# File 'lib/carrierwave/storage/abstract.rb', line 25

def self.setup!; end

.store!(uploader, file) ⇒ Object

Do something to store the file

Parameters

uploader (CarrierWave::Uploader)

an uploader object

file (CarrierWave::SanitizedFile)

the file to store

Returns

#identifier

an object



39
40
41
# File 'lib/carrierwave/storage/abstract.rb', line 39

def self.store!(uploader, file)
  self.new
end

Instance Method Details

#identifierObject

Should return a String that uniquely identifies this file and can be used to retrieve it from the same storage engine later on.

This is OPTIONAL

Returns

String

path to the file



68
# File 'lib/carrierwave/storage/abstract.rb', line 68

def identifier; end

#pathObject

Should return the path where the file is corrently located. This is OPTIONAL.

This is OPTIONAL

Returns

String

path to the file



91
# File 'lib/carrierwave/storage/abstract.rb', line 91

def path; end

#urlObject

Should return the url where the file is publically accessible. If this is not set, then it is assumed that the url is the path relative to the public directory.

This is OPTIONAL

Returns

String

file’s url



80
# File 'lib/carrierwave/storage/abstract.rb', line 80

def url; end