Class: Caboose::VariantsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/caboose/variants_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#before_action, #before_before_action, #hashify_query_string, #init_cart, #logged_in?, #logged_in_user, #login_user, #logout_user, #parse_url_params, #reject_param, #under_construction_or_forwarding_domain?, #user_is_allowed, #user_is_allowed_to, #validate_cookie, #validate_token, #var, #verify_logged_in

Instance Method Details

#admin_addObject

POST /admin/products/:product_id/variants/add



166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# File 'app/controllers/caboose/variants_controller.rb', line 166

def admin_add
  return if !user_is_allowed('variants', 'add')
  resp = Caboose::StdClass.new(
    :error   => nil,
    :refresh => nil
  )

  p = Product.find(params[:id])
  v = Variant.new(:product_id => p.id)
  v.option1 = p.default1
  v.option2 = p.default2
  v.option3 = p.default3
  v.status  = 'Active'
  v.save
  resp.refresh = true
  render :json => resp
end

#admin_attach_to_imageObject

PUT /admin/variants/:id/attach-to-image



185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'app/controllers/caboose/variants_controller.rb', line 185

def admin_attach_to_image
  render :json => false if !user_is_allowed('variants', 'edit')         
  variant_id = params[:id].to_i
  img = ProductImage.find(params[:product_image_id])

  exists = false
  img.variants.each do |v|
    if v.id == variant_id
      exists = true
      break
    end
  end
  if exists
    render :json => true
    return
  end

  img.variants = [] if img.variants.nil?
  img.variants << Variant.find(variant_id)
  img.save

  render :json => true
end

#admin_bulk_addObject

POST /admin/products/:product_id/variants/bulk



348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
# File 'app/controllers/caboose/variants_controller.rb', line 348

def admin_bulk_add
  product = Product.find(params[:product_id])
  
  resp = Caboose::StdClass.new
  p = Caboose::Product.find(params[:product_id])
  
  # Check for data integrity first
  CSV.parse(params[:csv_data]).each do |row|
    if    row[1].nil? then resp.error = "Quantity is not defined for variant: #{row[0].strip}" and break          
    elsif row[2].nil? then resp.error = "Price is not defined for variant: #{row[0].strip}" and break
    elsif p.option1 && row[3].nil? then resp.error = "#{p.option1} is not defined for variant: #{row[0].strip}" and break
    elsif p.option2 && row[4].nil? then resp.error = "#{p.option2} is not defined for variant: #{row[0].strip}" and break
    elsif p.option3 && row[5].nil? then resp.error = "#{p.option3} is not defined for variant: #{row[0].strip}" and break
    end
  end
  
  if resp.error.nil?
    CSV.parse(params[:csv_data]).each do |row|
      v = nil
      if row[0].strip.length == 0
        v = Caboose::Variant.new(:product_id => p.id)
      else
        v = Caboose::Variant.where(:alternate_id => row[0]).first
        v = Caboose::Variant.new(:product_id => p.id) if v.nil?
      end

      v.product_id        = p.id
      v.alternate_id      = row[0].strip
      v.quantity_in_stock = row[1].strip.to_i
      v.price             = '%.2f' % row[2].strip.to_f
      v.option1 = row[3] if p.option1
      v.option2 = row[4] if p.option2
      v.option3 = row[5] if p.option3
      v.status = 'Active'
      v.save
    end
    resp.success = true
  end
  
  render :json => resp
end

#admin_bulk_deleteObject

DELETE /admin/products/:product_id/variants/bulk



231
232
233
234
235
236
237
238
239
240
241
242
# File 'app/controllers/caboose/variants_controller.rb', line 231

def admin_bulk_delete
  return if !user_is_allowed('variants', 'delete')
  
  resp = Caboose::StdClass.new
  params[:model_ids].each do |variant_id|
    v = Variant.find(variant_id)
    v.status = 'Deleted'
    v.save
  end
  resp.success = true
  render :json => resp
end

#admin_bulk_updateObject

PUT /admin/products/:product_id/variants/bulk



391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
# File 'app/controllers/caboose/variants_controller.rb', line 391

def admin_bulk_update
  return unless user_is_allowed_to 'edit', 'sites'

  resp = Caboose::StdClass.new    
  variants = params[:model_ids].collect{ |variant_id| Variant.find(variant_id) }      

  save = true
  params.each do |k,value|
    case k
      when 'alternate_id'       then variants.each { |v| v.alternate_id       = value }
      when 'sku'                then variants.each { |v| v.sku                = value }
      when 'barcode'            then variants.each { |v| v.barcode            = value }
      when 'price'              then variants.each { |v| v.price              = value }
      when 'quantity_in_stock'  then variants.each { |v| v.quantity_in_stock  = value }
      when 'ignore_quantity'    then variants.each { |v| v.ignore_quantity    = value }
      when 'allow_backorder'    then variants.each { |v| v.allow_backorder    = value }
      when 'status'             then variants.each { |v| v.status             = value }
      when 'weight'             then variants.each { |v| v.weight             = value }
      when 'length'             then variants.each { |v| v.length             = value }
      when 'width'              then variants.each { |v| v.width              = value }
      when 'height'             then variants.each { |v| v.height             = value }
      when 'option1'            then variants.each { |v| v.option1            = value }
      when 'option2'            then variants.each { |v| v.option2            = value }
      when 'option3'            then variants.each { |v| v.option3            = value }
      when 'requires_shipping'  then variants.each { |v| v.requires_shipping  = value }
      when 'taxable'            then variants.each { |v| v.taxable            = value }
      when 'downloadable'       then variants.each { |v| v.downloadable       = value }
      when 'download_path'      then variants.each { |v| v.download_path      = value }

      when 'sale_price'
        variants.each_with_index do |v, i|              
          v.sale_price = value            
          v.product.delay(:run_at => 3.seconds.from_now).update_on_sale if i == 0
        end
      when 'date_sale_starts'
        variants.each_with_index do |v, i|
          v.date_sale_starts = ModelBinder.update_date(v.date_sale_starts, value, @logged_in_user.timezone)
          if i == 0
            v.product.delay(:run_at => v.date_sale_starts).update_on_sale
            v.product.delay(:run_at => 3.seconds.from_now).update_on_sale                
          end                                
        end
      when 'time_sale_starts'
        variants.each_with_index do |v, i|
          v.date_sale_starts = ModelBinder.update_time(v.date_sale_starts, value, @logged_in_user.timezone)                                    
          if i == 0
            v.product.delay(:run_at => v.date_sale_starts).update_on_sale
            v.product.delay(:run_at => 3.seconds.from_now).update_on_sale                
          end
        end            
      when 'date_sale_ends'
        variants.each_with_index do |v, i|
          v.date_sale_ends = ModelBinder.update_date(v.date_sale_ends, value, @logged_in_user.timezone)            
          if i == 0
            v.product.delay(:run_at => v.date_sale_ends).update_on_sale
            v.product.delay(:run_at => 3.seconds.from_now).update_on_sale                
          end
        end            
      when 'time_sale_ends'
        variants.each_with_index do |v, i|
          v.date_sale_ends = ModelBinder.update_time(v.date_sale_ends, value, @logged_in_user.timezone)                                    
          if i == 0
            v.product.delay(:run_at => v.date_sale_ends).update_on_sale
            v.product.delay(:run_at => 3.seconds.from_now).update_on_sale                
          end
        end
        
    end        
  end
  variants.each{ |v| v.save }

  resp.success = true
  render :json => resp
end

#admin_deleteObject

DELETE /admin/products/:product_id/variants/:id



220
221
222
223
224
225
226
227
228
# File 'app/controllers/caboose/variants_controller.rb', line 220

def admin_delete
  return if !user_is_allowed('variants', 'delete')
  v = Variant.find(params[:id])
  v.status = 'Deleted'
  v.save
  render :json => Caboose::StdClass.new({
    :redirect => "/admin/products/#{v.product_id}/variants"
  })
end

#admin_download_urlObject

GET /admin/producst/:product_id/variants/:id/download-url



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# File 'app/controllers/caboose/variants_controller.rb', line 89

def admin_download_url
  return if !user_is_allowed('variants', 'edit')
  
  resp = StdClass.new
  v = Variant.find(params[:id])
  expires_in = params[:expires_in].to_i
  
  if !v.downloadable
    resp.error = "This variant is not downloadable."
  else
    config = YAML.load_file("#{::Rails.root}/config/aws.yml")        
    bucket = AWS::S3::Bucket.new(config[Rails.env]['bucket'])
    s3object = AWS::S3::S3Object.new(bucket, v.download_path)
    resp.url = s3object.url_for(:read, :expires => expires_in.minutes).to_s
    resp.success = true
  end

  render :json => resp
end

#admin_editObject

GET /admin/products/:product_id/variants/:variant_id



81
82
83
84
85
86
# File 'app/controllers/caboose/variants_controller.rb', line 81

def admin_edit
  return if !user_is_allowed('variants', 'edit')    
  @variant = Variant.find(params[:id])
  @product = @variant.product
  render :layout => 'caboose/admin'            
end

#admin_edit_sort_orderObject

GET /admin/products/:product_id/variants/sort-order



245
246
247
248
249
# File 'app/controllers/caboose/variants_controller.rb', line 245

def admin_edit_sort_order
  return if !user_is_allowed('products', 'edit')    
  @product = Product.find(params[:product_id])      
  render :layout => 'caboose/admin'
end

#admin_groupObject

GET /admin/variants



285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
# File 'app/controllers/caboose/variants_controller.rb', line 285

def admin_group
  return if !user_is_allowed('variants', 'edit')
  
  joins  = []
  where  = []
  values = []
  
  if params[:category_ids]
    joins  << [:category_memberships]
    where  << 'store_category_memberships.category_id IN (?)'
    values << params[:category_ids]
  end
  
  if params[:vendor_ids]
    joins  << [:vendor]
    where  << 'store_vendors.id IN (?)'
    values << params[:vendor_ids]
  end
  
  if params[:title]
    where  << 'LOWER(store_products.title) LIKE ?'
    values << "%#{params[:title].downcase}%"
  end
  
  # Query for all relevant products      
  products = values.any? ? Caboose::Product.joins(joins).where([where.join(' AND ')].concat(values)) : []
  
  # Grab variants for each product
  @variants = products.collect { |product| product.variants }.flatten
  
  # Grab all categories; except for all and uncategorized      
  @categories = Category.where('site_id = ? and parent_id IS NOT NULL AND name IS NOT NULL', @site.id).order(:url)
  
  # Grab all vendors      
  @vendors = Vendor.where('site_id = ? and name IS NOT NULL', @site.id).order(:name)
  
  render :layout => 'caboose/admin'
end

#admin_indexObject

GET /admin/products/:id/variants GET /admin/products/:id/variants/:variant_id



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'app/controllers/caboose/variants_controller.rb', line 34

def admin_index   
  return if !user_is_allowed('products', 'edit')    
  @product = Product.find(params[:product_id])
  
  if @product.variants.nil? || @product.variants.count == 0
    v = Variant.new
    v.option1 = @product.default1 if @product.option1
    v.option2 = @product.default2 if @product.option2
    v.option3 = @product.default3 if @product.option3
    v.status  = 'Active'
    @product.variants = [v]
    @product.save
  end
  @variant = params[:variant_id] ? Variant.find(params[:variant_id]) : @product.variants[0]
  @highlight_variant_id = params[:highlight] ? params[:highlight].to_i : nil
  render :layout => 'caboose/admin'                
end

#admin_jsonObject

GET /admin/products/:product_id/variants/json



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'app/controllers/caboose/variants_controller.rb', line 53

def admin_json
  return if !user_is_allowed('products', 'view')
  
  pager = Caboose::PageBarGenerator.new(params, {
    'product_id'   => params[:product_id]
  }, {
    'model'          => 'Caboose::Variant',
    'sort'           => 'option1, option2, option3',
    'desc'           => false,
    'base_url'       => "/admin/products/#{params[:product_id]}/variants",
    'items_per_page' => 100,
    'use_url_params' => false        
  })
  render :json => {
    :pager => pager,
    :models => pager.items
  }      
end

#admin_json_singleObject

GET /admin/products/:product_id/variants/:id/json



73
74
75
76
77
78
# File 'app/controllers/caboose/variants_controller.rb', line 73

def admin_json_single
  return if !user_is_allowed('products', 'view')
  
  v = Variant.find(params[:id])      
  render :json => v      
end

#admin_newObject

GET /admin/products/:id/variants/new



157
158
159
160
161
162
163
# File 'app/controllers/caboose/variants_controller.rb', line 157

def admin_new
  return if !user_is_allowed('variants', 'add')
  @top_categories = ProductCategory.where(:parent_id => nil).reorder('name').all
  @product_id = params[:id] 
  @variant = Variant.new
  render :layout => 'caboose/admin'
end

#admin_remove_variantsObject

POST /admin/products/:product_id/variants/remove



467
468
469
470
471
472
473
474
475
476
477
478
# File 'app/controllers/caboose/variants_controller.rb', line 467

def admin_remove_variants
  params[:variant_ids].each do |variant_id|
    variant = Variant.find(variant_id)
    # variant.update_attribute(:status, 'deleted')
    # variant.product.update_attribute(:status, 'deleted') if variant.product.variants.where('status != ?', 'deleted').count == 0
  end
  
  # Remove passed variants
  # redirect_to "/admin/products/#{params[:id]}/variants/group"
        
  render :json => true
end

#admin_status_optionsObject

GET /admin/variants/status-options



485
486
487
488
489
490
491
492
493
494
495
# File 'app/controllers/caboose/variants_controller.rb', line 485

def admin_status_options
  arr = ['Active', 'Inactive', 'Deleted']
  options = []
  arr.each do |status|
    options << {
      :value => status,
      :text => status
    }
  end
  render :json => options
end

#admin_unattach_from_imageObject

PUT /admin/variants/:id/unattach-from-image



210
211
212
213
214
215
216
217
# File 'app/controllers/caboose/variants_controller.rb', line 210

def admin_unattach_from_image
  render :json => false if !user_is_allowed('variants', 'edit')
  v = Variant.find(params[:id])
  img = ProductImage.find(params[:product_image_id])       
  img.variants.delete(v)
  img.save
  render :json => true
end

#admin_updateObject

PUT /admin/variants/:id



110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# File 'app/controllers/caboose/variants_controller.rb', line 110

def admin_update
  return if !user_is_allowed('variants', 'edit')
  
  resp = Caboose::StdClass.new({'attributes' => {}})
  v = Variant.find(params[:id])    
  
  save = true    
  params.each do |name,value|
    case name        
      when 'alternate_id'       then v.alternate_id       = value
      when 'sku'                then v.sku                = value
      when 'barcode'            then v.barcode            = value
      when 'price'              then v.price              = value                      
      when 'quantity_in_stock'  then v.quantity_in_stock  = value
      when 'ignore_quantity'    then v.ignore_quantity    = value
      when 'allow_backorder'    then v.allow_backorder    = value
      when 'status'             then v.status             = value
      when 'weight'             then v.weight             = value
      when 'length'             then v.length             = value
      when 'width'              then v.width              = value
      when 'height'             then v.height             = value
      when 'option1'            then v.option1            = value
      when 'option2'            then v.option2            = value
      when 'option3'            then v.option3            = value
      when 'requires_shipping'  then v.requires_shipping  = value
      when 'taxable'            then v.taxable            = value
      when 'downloadable'       then v.downloadable       = value
      when 'download_path'      then v.download_path      = value
        
      when 'sale_price'
        v.sale_price = value            
        v.product.delay(:run_at => 3.seconds.from_now).update_on_sale            
      when 'date_sale_starts'
        v.date_sale_starts = ModelBinder.local_datetime_to_utc(value, @logged_in_user.timezone)                        
        v.product.delay(:run_at => v.date_sale_starts).update_on_sale
        v.product.delay(:run_at => 3.seconds.from_now).update_on_sale
      when 'date_sale_ends'
        v.date_sale_ends = ModelBinder.local_datetime_to_utc(value, @logged_in_user.timezone)                        
        v.product.delay(:run_at => v.date_sale_ends).update_on_sale  
        v.product.delay(:run_at => 3.seconds.from_now).update_on_sale
    end
  end
  resp.success = save && v.save
  render :json => resp
end

#admin_update_option1_sort_orderObject

PUT /admin/products/:product_id/variants/option1-sort-order



252
253
254
255
256
257
258
259
260
# File 'app/controllers/caboose/variants_controller.rb', line 252

def admin_update_option1_sort_order
  product_id = params[:product_id]
  params[:values].each_with_index do |value, i|
    Variant.where(:product_id => product_id, :option1 => value).all.each do |v|
      v.update_attribute(:option1_sort_order, i)
    end
  end            
  render :json => { :success => true }
end

#admin_update_option2_sort_orderObject

PUT /admin/products/:product_id/variants/option1-sort-order



263
264
265
266
267
268
269
270
271
# File 'app/controllers/caboose/variants_controller.rb', line 263

def admin_update_option2_sort_order            
  product_id = params[:product_id]
  params[:values].each_with_index do |value, i|
    Variant.where(:product_id => product_id, :option2 => value).all.each do |v|
      v.update_attribute(:option2_sort_order, i)
    end
  end            
  render :json => { :success => true }
end

#admin_update_option3_sort_orderObject

PUT /admin/products/:product_id/variants/option1-sort-order



274
275
276
277
278
279
280
281
282
# File 'app/controllers/caboose/variants_controller.rb', line 274

def admin_update_option3_sort_order      
  product_id = params[:product_id]
  params[:values].each_with_index do |value, i|
    Variant.where(:product_id => product_id, :option3 => value).all.each do |v|
      v.update_attribute(:option3_sort_order, i)
    end
  end            
  render :json => { :success => true }
end

#display_imageObject

GET /variants/:id/display-image



23
24
25
26
# File 'app/controllers/caboose/variants_controller.rb', line 23

def display_image
  ap "File is found"
  render :json => Variant.find(params[:id]).product_images.first
end

#find_by_optionsObject

POST /variants/find-by-options



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'app/controllers/caboose/variants_controller.rb', line 5

def find_by_options
  
  # Find the variant based on the product ID and options
  variant = Variant.find_by_options(params[:product_id], params[:option1], params[:option2], params[:option3])
  
  # If there are customizations, find the correct variant
  customizations = if params[:customizations]
    params[:customizations].map do |customization_id, options|
      Variant.find_by_options(customization_id, options[:option1], options[:option2], options[:option3])
    end
  else
    Array.new
  end
  
  render :json => { :variant => variant, :customizations => customizations }
end