Class: Caboose::Product

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/caboose/product.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.activeObject



53
54
55
# File 'app/models/caboose/product.rb', line 53

def self.active
  where(:status => 'Active')
end

.by_titleObject



57
58
59
# File 'app/models/caboose/product.rb', line 57

def self.by_title
  order('title')
end

.with_imagesObject

Class Methods



49
50
51
# File 'app/models/caboose/product.rb', line 49

def self.with_images
  joins(:product_images)
end

Instance Method Details

#active_customizationsObject



126
127
128
# File 'app/models/caboose/product.rb', line 126

def active_customizations
  self.customizations.where(:status => 'Active')
end

#as_json(options = {}) ⇒ Object

Instance Methods



65
66
67
68
69
70
71
72
# File 'app/models/caboose/product.rb', line 65

def as_json(options={})
  self.attributes.merge({
    :vendor => self.vendor,
    :categories => self.categories,
    :variants => self.variants,
    :images => self.product_images        
  })
end


88
89
90
# File 'app/models/caboose/product.rb', line 88

def featured_image
	self.product_images.reject{|p| p.nil?}.first
end

#in_stockObject



118
119
120
# File 'app/models/caboose/product.rb', line 118

def in_stock
  Variant.where(:product_id => self.id).where('quantity_in_stock > 0').count > 0
end

#input_required?Boolean

Returns:

  • (Boolean)


122
123
124
# File 'app/models/caboose/product.rb', line 122

def input_required?
  !self.custom_input.nil?
end

#live_variantsObject



130
131
132
133
134
# File 'app/models/caboose/product.rb', line 130

def live_variants
  
  # Return variants that haven't been "deleted"
  self.variants.where(:status => ['Active', 'Inactive'])
end


84
85
86
# File 'app/models/caboose/product.rb', line 84

def most_popular_variant
  self.variants.where('price > ? AND status != ?', 0, 'Deleted').order('price ASC').first
end

#option1_valuesObject



136
137
138
# File 'app/models/caboose/product.rb', line 136

def option1_values      
  self.variants.where(:status => 'Active').reorder(:option1_sort_order).pluck(:option1).uniq.reject { |x| x.nil? || x.empty? }
end

#option2_valuesObject



140
141
142
# File 'app/models/caboose/product.rb', line 140

def option2_values
  self.variants.where(:status => 'Active').reorder(:option2_sort_order).pluck(:option2).uniq.reject { |x| x.nil? || x.empty? }
end

#option3_valuesObject



144
145
146
# File 'app/models/caboose/product.rb', line 144

def option3_values
  self.variants.where(:status => 'Active').reorder(:option3_sort_order).pluck(:option3).uniq.reject { |x| x.nil? || x.empty? }
end

#optionsObject



74
75
76
77
78
79
80
81
82
# File 'app/models/caboose/product.rb', line 74

def options
  options = []
  
  options << self.option1 if !self.option1.nil? && self.option1.strip.length > 0
  options << self.option2 if !self.option2.nil? && self.option2.strip.length > 0
  options << self.option3 if !self.option3.nil? && self.option3.strip.length > 0
  
  return options
end

#price_rangeObject



97
98
99
100
101
102
103
104
105
106
107
108
# File 'app/models/caboose/product.rb', line 97

def price_range
  min = 100000
  max = 0
  
  self.variants.each do |variant|
    next if variant.nil? or variant.price.nil? or variant.price <= 0
    min = variant.price if variant.price < min
    max = variant.price if variant.price > max
  end
  
  return [min, max]
end

#price_variesObject



92
93
94
95
# File 'app/models/caboose/product.rb', line 92

def price_varies
  arr = variants.collect{ |v| v.price }.uniq
  return arr.count > 0
end


114
115
116
# File 'app/models/caboose/product.rb', line 114

def related_items
  Array.new # TODO should be obvious
end

#toggle_category(cat_id, value) ⇒ Object



148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'app/models/caboose/product.rb', line 148

def toggle_category(cat_id, value)            
  if value.to_i > 0 # Add to category                   
    if cat_id == 'all'
      CategoryMembership.where(:product_id => self.id).destroy_all      
      Category.reorder(:name).all.each{ |cat| CategoryMembership.create(:product_id => self.id, :category_id => cat.id) }                          
    else
      if !CategoryMembership.where(:product_id => self.id, :category_id => cat_id.to_i).exists?
        CategoryMembership.create(:product_id => self.id, :category_id => cat_id.to_i)
      end      
    end
  else # Remove from category    
    if cat_id == 'all'
      CategoryMembership.where(:product_id => self.id).destroy_all                          
    else
      CategoryMembership.where(:product_id => self.id, :category_id => cat_id.to_i).destroy_all      
    end
  end
end

#urlObject



110
111
112
# File 'app/models/caboose/product.rb', line 110

def url
  "/products/#{self.id}"
end