Class: Spree::Image

Inherits:
Asset
  • Object
show all
Defined in:
app/models/spree/image.rb

Instance Method Summary collapse

Instance Method Details

#find_dimensionsObject



22
23
24
25
26
27
28
29
# File 'app/models/spree/image.rb', line 22

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

#mini_urlObject

used by admin products autocomplete



18
19
20
# File 'app/models/spree/image.rb', line 18

def mini_url
  attachment.url(:mini, false)
end

#no_attachment_errorsObject

if there are errors from the plugin, then add a more meaningful message



32
33
34
35
36
37
38
39
# File 'app/models/spree/image.rb', line 32

def no_attachment_errors
  unless attachment.errors.empty?
    # uncomment this to get rid of the less-than-useful interrim messages
    # errors.clear
    errors.add :attachment, "Paperclip returned errors for file '#{attachment_file_name}' - check ImageMagick installation or image source file."
    false
  end
end