product.rb 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #---
  2. # Excerpted from "Agile Web Development with Rails",
  3. # published by The Pragmatic Bookshelf.
  4. # Copyrights apply to this code. It may not be used to create training material,
  5. # courses, books, articles, and the like. Contact us if you are in doubt.
  6. # We make no guarantees that this code is fit for any purpose.
  7. # Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information.
  8. #---
  9. class Product < ActiveRecord::Base
  10. has_many :line_items
  11. has_many :orders, through: :line_items
  12. #...
  13. before_destroy :ensure_not_referenced_by_any_line_item
  14. attr_accessible :description, :image_url, :price, :title
  15. validates :title, :description, :image_url, presence: true
  16. validates :price, numericality: {greater_than_or_equal_to: 0.01}
  17. #
  18. validates :title, uniqueness: true
  19. validates :image_url, allow_blank: true, format: {
  20. with: %r{\.(gif|jpg|png)\Z}i,
  21. message: 'must be a URL for GIF, JPG or PNG image.'
  22. }
  23. validates :title, length: {minimum: 10}
  24. def self.latest
  25. Product.order('updated_at desc').limit(1).first
  26. end
  27. private
  28. # ensure that there are no line items referencing this product
  29. def ensure_not_referenced_by_any_line_item
  30. if line_items.empty?
  31. return true
  32. else
  33. errors.add(:base, 'Line Items present')
  34. return false
  35. end
  36. end
  37. end