Module: CarrierWave::Mount

Included in:
ActiveRecord
Defined in:
lib/carrierwave/mount.rb

Overview

If a Class is extended with this module, it gains the mount_uploader method, which is used for mapping attributes to uploaders and allowing easy assignment.

You can use mount_uploader with pretty much any class, however it is intended to be used with some kind of persistent storage, like an ORM. If you want to persist the uploaded files in a particular Class, it needs to implement a ‘read_uploader` and a `write_uploader` method.

Defined Under Namespace

Modules: Extension Classes: Mounter

Instance Method Summary collapse

Instance Method Details

#mount_uploader(column, uploader = nil, options = {}, &block) ⇒ Object

Mounts the given uploader on the given column. This means that assigning and reading from the column will upload and retrieve files. Supposing that a User class has an uploader mounted on image, you can assign and retrieve files like this:

@user.image # => <Uploader>
@user.image.store!(some_file_object)

@user.image.url # => '/some_url.png'

It is also possible (but not recommended) to ommit the uploader, which will create an anonymous uploader class.

Passing a block makes it possible to customize the uploader. This can be convenient for brevity, but if there is any significatnt logic in the uploader, you should do the right thing and have it in its own file.

Added instance methods

Supposing a class has used mount_uploader to mount an uploader on a column named image, in that case the following methods will be added to the class:

image

Returns an instance of the uploader only if anything has been uploaded

image=

Caches the given file

image_url

Returns the url to the uploaded file

image_cache

Returns a string that identifies the cache location of the file

image_cache=

Retrieves the file from the cache based on the given cache name

remote_image_url

Returns previously cached remote url

remote_image_url=

Retrieve the file from the remote url

remove_image

An attribute reader that can be used with a checkbox to mark a file for removal

remove_image=

An attribute writer that can be used with a checkbox to mark a file for removal

remove_image?

Whether the file should be removed when store_image! is called.

store_image!

Stores a file that has been assigned with image=

remove_image!

Removes the uploaded file from the filesystem.

image_integrity_error

Returns an error object if the last file to be assigned caused an integrity error

image_processing_error

Returns an error object if the last file to be assigned caused a processing error

write_image_identifier

Uses the write_uploader method to set the identifier.

image_identifier

Reads out the identifier of the file

Parameters

column (Symbol)

the attribute to mount this uploader on

uploader (CarrierWave::Uploader)

the uploader class to mount

options (Hash=> Object)

a set of options

&block (Proc)

customize anonymous uploaders

Options

:mount_on => Symbol

if the name of the column to be serialized to differs you can override it using this option

:ignore_integrity_errors => Boolean

if set to true, integrity errors will result in caching failing silently

:ignore_processing_errors => Boolean

if set to true, processing errors will result in caching failing silently

Examples

Mounting uploaders on different columns.

class Song
  mount_uploader :lyrics, LyricsUploader
  mount_uploader :alternative_lyrics, LyricsUploader
  mount_uploader :file, SongUploader
end

This will add an anonymous uploader with only the default settings:

class Data
  mount_uploader :csv
end

this will add an anonymous uploader overriding the store_dir:

class Product
  mount_uploader :blueprint do
    def store_dir
      'blueprints'
    end
  end
end


140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
# File 'lib/carrierwave/mount.rb', line 140

def mount_uploader(column, uploader=nil, options={}, &block)
  if block_given?
    uploader = Class.new(uploader || CarrierWave::Uploader::Base)
    uploader.class_eval(&block)
    uploader.recursively_apply_block_to_versions(&block)
  else
    uploader ||= Class.new(CarrierWave::Uploader::Base)
  end

  uploaders[column.to_sym] = uploader
  uploader_options[column.to_sym] = options

  include CarrierWave::Mount::Extension

  # Make sure to write over accessors directly defined on the class.

  # Simply super to the included module below.

  class_eval "def \#{column}; super; end\ndef \#{column}=(new_file); super; end\n", __FILE__, __LINE__+1

  # Mixing this in as a Module instead of class_evaling directly, so we

  # can maintain the ability to super to any of these methods from within

  # the class.

  mod = Module.new
  include mod
  mod.class_eval "\ndef \#{column}\n_mounter(:\#{column}).uploader\nend\n\ndef \#{column}=(new_file)\n_mounter(:\#{column}).cache(new_file)\nend\n\ndef \#{column}?\n!_mounter(:\#{column}).blank?\nend\n\ndef \#{column}_url(*args)\n_mounter(:\#{column}).url(*args)\nend\n\ndef \#{column}_cache\n_mounter(:\#{column}).cache_name\nend\n\ndef \#{column}_cache=(cache_name)\n_mounter(:\#{column}).cache_name = cache_name\nend\n\ndef remote_\#{column}_url\n_mounter(:\#{column}).remote_url\nend\n\ndef remote_\#{column}_url=(url)\n_mounter(:\#{column}).remote_url = url\nend\n\ndef remove_\#{column}\n_mounter(:\#{column}).remove\nend\n\ndef remove_\#{column}!\n_mounter(:\#{column}).remove!\nend\n\ndef remove_\#{column}=(value)\n_mounter(:\#{column}).remove = value\nend\n\ndef remove_\#{column}?\n_mounter(:\#{column}).remove?\nend\n\ndef store_\#{column}!\n_mounter(:\#{column}).store!\nend\n\ndef \#{column}_integrity_error\n_mounter(:\#{column}).integrity_error\nend\n\ndef \#{column}_processing_error\n_mounter(:\#{column}).processing_error\nend\n\ndef write_\#{column}_identifier\n_mounter(:\#{column}).write_identifier\nend\n\ndef \#{column}_identifier\n_mounter(:\#{column}).identifier\nend\n\ndef store_previous_model_for_\#{column}\nserialization_column = _mounter(:\#{column}).serialization_column\n\nif \#{column}.remove_previously_stored_files_after_update && send(:\"\\\#{serialization_column}_changed?\")\n@previous_model_for_\#{column} ||= self.find_previous_model_for_\#{column}\nend\nend\n\ndef find_previous_model_for_\#{column}\nself.class.find(to_key.first)\nend\n\ndef remove_previously_stored_\#{column}\nif @previous_model_for_\#{column} && @previous_model_for_\#{column}.\#{column}.path != \#{column}.path\n@previous_model_for_\#{column}.\#{column}.remove!\n@previous_model_for_\#{column} = nil\nend\nend\n\n", __FILE__, __LINE__+1
end

#uploader_option(column, option) ⇒ Object

Return a particular option for a particular uploader

Parameters

column (Symbol)

The column the uploader is mounted at

option (Symbol)

The option, e.g. validate_integrity

Returns

Object

The option value



46
47
48
49
50
51
52
# File 'lib/carrierwave/mount.rb', line 46

def uploader_option(column, option)
  if uploader_options[column].has_key?(option)
    uploader_options[column][option]
  else
    uploaders[column].send(option)
  end
end

#uploader_optionsObject



28
29
30
31
32
# File 'lib/carrierwave/mount.rb', line 28

def uploader_options
  @uploader_options ||= {}
  @uploader_options = superclass.uploader_options.merge(@uploader_options) if superclass.respond_to?(:uploader_options)
  @uploader_options
end

#uploadersObject

Returns

Hash=> CarrierWave

what uploaders are mounted on which columns



22
23
24
25
26
# File 'lib/carrierwave/mount.rb', line 22

def uploaders
  @uploaders ||= {}
  @uploaders = superclass.uploaders.merge(@uploaders) if superclass.respond_to?(:uploaders)
  @uploaders
end