Sha256: 9e3e871a70ebf020f89b03df2c9848bc3ca001a37a77501046904f4bfbddff10

Contents?: true

Size: 1.75 KB

Versions: 22

Compression:

Stored size: 1.75 KB

Contents

module Spree
  class Image < Asset
    validate :no_attachment_errors

    has_attached_file :attachment,
                      styles: { mini: '48x48>', small: '100x100>', product: '240x240>', large: '600x600>' },
                      default_style: :product,
                      url: '/spree/products/:id/:style/:basename.:extension',
                      path: ':rails_root/public/spree/products/:id/:style/:basename.:extension',
                      convert_options: { all: '-strip -auto-orient -colorspace sRGB' }
    validates_attachment :attachment,
      :presence => true,
      :content_type => { :content_type => %w(image/jpeg image/jpg image/png image/gif) }

    # save the w,h of the original image (from which others can be calculated)
    # we need to look at the write-queue for images which have not been saved yet
    before_save :find_dimensions, if: :attachment_updated_at_changed?

    #used by admin products autocomplete
    def mini_url
      attachment.url(:mini, false)
    end

    def find_dimensions
      temporary = attachment.queued_for_write[:original]
      filename = temporary.path unless temporary.nil?
      filename = attachment.path if filename.blank?
      geometry = Paperclip::Geometry.from_file(filename)
      self.attachment_width  = geometry.width
      self.attachment_height = geometry.height
    end

    # if there are errors from the plugin, then add a more meaningful message
    def no_attachment_errors
      unless attachment.errors.empty?
        # uncomment this to get rid of the less-than-useful interim messages
        # errors.clear
        errors.add :attachment, "Paperclip returned errors for file '#{attachment_file_name}' - check ImageMagick installation or image source file."
        false
      end
    end
  end
end

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
goca-spree-core-3.1.14.rails.5.0 app/models/spree/image.rb
goca-spree-core-3.1.15.rails.5.0 app/models/spree/image.rb
goca-spree-core-3.1.15.pre.rails.pre.5.0 app/models/spree/image.rb
spree_core-3.1.14 app/models/spree/image.rb
spree_core-3.1.13 app/models/spree/image.rb
spree_core-3.1.12 app/models/spree/image.rb
spree_core-3.1.11 app/models/spree/image.rb
spree_core-3.1.10 app/models/spree/image.rb
spree_core-3.1.9 app/models/spree/image.rb
spree_core-3.1.8 app/models/spree/image.rb
spree_core-3.1.7 app/models/spree/image.rb
spree_core-3.1.6 app/models/spree/image.rb
spree_core-3.1.5 app/models/spree/image.rb
spree_core-3.1.4 app/models/spree/image.rb
spree_core-3.1.3 app/models/spree/image.rb
spree_core-3.1.2 app/models/spree/image.rb
spree_core-3.1.1 app/models/spree/image.rb
spree_core-3.1.0 app/models/spree/image.rb
spree_core-3.1.0.rc4 app/models/spree/image.rb
spree_core-3.1.0.rc3 app/models/spree/image.rb