A website template with lots of features, built with ruby on rails.

cover_uploader.rb 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # encoding: utf-8
  2. class CoverUploader < CarrierWave::Uploader::Base
  3. # Include RMagick or MiniMagick support:
  4. # include CarrierWave::RMagick
  5. include CarrierWave::MiniMagick
  6. include CarrierWave::MimeTypes
  7. include ::CarrierWave::Backgrounder::Delay
  8. # Choose what kind of storage to use for this uploader:
  9. if Rails.env.test? or Rails.env.cucumber?
  10. storage :file
  11. end
  12. if Rails.env.development?
  13. storage :file
  14. end
  15. if Rails.env.production?
  16. # Include the Sprockets helpers for Rails 3.1+ asset pipeline compatibility if using fog:
  17. # include Sprockets::Rails::Helper
  18. include Sprockets::Helpers
  19. storage :fog
  20. end
  21. process :set_content_type
  22. # Override the directory where uploaded files will be stored.
  23. # This is a sensible default for uploaders that are meant to be mounted:
  24. def store_dir
  25. "uploads/#{mounted_as}/#{model.id}"
  26. end
  27. def root
  28. "#{Rails.root}/public"
  29. end
  30. def cache_dir
  31. " ./tmp/uploads/#{mounted_as}/"
  32. end
  33. # Provide a default URL as a default if there hasn't been a file uploaded:
  34. # def default_url
  35. # # For Rails 3.1+ asset pipeline compatibility:
  36. # # ActionController::Base.helpers.asset_path("fallback/" + [version_name, "default.png"].compact.join('_'))
  37. #
  38. # "/images/fallback/" + [version_name, "default.png"].compact.join('_')
  39. # end
  40. # Process files as they are uploaded:
  41. # process :scale => [200, 300]
  42. #
  43. # def scale(width, height)
  44. # # do something
  45. # end
  46. # Create different versions of your uploaded files:
  47. version :thumb do
  48. process :resize_to_fit => [300, 200]
  49. end
  50. version :mini do
  51. process :resize_to_fit => [150, 100]
  52. end
  53. # Add a white list of extensions which are allowed to be uploaded.
  54. # For images you might use something like this:
  55. # def extension_white_list
  56. # %w(jpg jpeg gif png)
  57. # end
  58. # Override the filename of the uploaded files:
  59. # Avoid using model.id or version_name here, see uploader/store.rb for details.
  60. # def filename
  61. # "something.jpg" if original_filename
  62. # end
  63. end