Class: Binda::Video::VideoUploader

Inherits:
CarrierWave::Uploader::Base
  • Object
show all
Defined in:
app/uploaders/binda/video/video_uploader.rb

Instance Method Summary collapse

Instance Method Details

#extension_whitelistObject

Add a white list of extensions which are allowed to be uploaded. For images you might use something like this:



42
43
44
# File 'app/uploaders/binda/video/video_uploader.rb', line 42

def extension_whitelist
  %w(mp4 webm ogg)
end

#register_detailsObject



54
55
56
57
58
59
# File 'app/uploaders/binda/video/video_uploader.rb', line 54

def register_details
    if file && model
        model.content_type = file.content_type if file.content_type
        model.file_size = file.size
    end
end

#store_dirObject

Override the directory where uploaded files will be stored. This is a sensible default for uploaders that are meant to be mounted:



16
17
18
# File 'app/uploaders/binda/video/video_uploader.rb', line 16

def store_dir
  "uploads/#{model.class.to_s.underscore}/#{mounted_as}/#{model.id}"
end