Class: Caboose::VariantsController

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

Instance Method Summary collapse

Methods inherited from ApplicationController

#add_ga_event, #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



345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
# File 'app/controllers/caboose/variants_controller.rb', line 345

def admin_add      
  resp = Caboose::StdClass.new
  p = Caboose::Product.find(params[:product_id])
  
  v = Caboose::Variant.where(:alternate_id => params[:alternate_id]).first
  v = Caboose::Variant.new(:product_id => p.id) if v.nil?
  
  v.product_id        = p.id
  v.alternate_id      = params[:alternate_id].strip
  v.quantity_in_stock = params[:quantity_in_stock].strip.to_i
  v.price             = '%.2f' % params[:price].strip.to_f
  v.option1 = params[:option1] if p.option1
  v.option2 = params[:option2] if p.option2
  v.option3 = params[:option3] if p.option3
  v.status = 'Active'      
  v.save
  
  resp.success = true      
  render :json => resp
end

#admin_attach_to_imageObject



153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'app/controllers/caboose/variants_controller.rb', line 153

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



367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
# File 'app/controllers/caboose/variants_controller.rb', line 367

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



199
200
201
202
203
204
205
206
207
208
209
210
# File 'app/controllers/caboose/variants_controller.rb', line 199

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



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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
# File 'app/controllers/caboose/variants_controller.rb', line 410

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 'clearance'          then variants.each { |v| v.clearance          = value }
      when 'clearance_price'    then variants.each { |v| v.clearance_price    = 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 'option1_media_id'   then variants.each { |v| v.option1_media_id   = value }
      when 'option2_media_id'   then variants.each { |v| v.option2_media_id   = value }
      when 'option3_media_id'   then variants.each { |v| v.option3_media_id   = 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



188
189
190
191
192
193
194
195
196
# File 'app/controllers/caboose/variants_controller.rb', line 188

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



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'app/controllers/caboose/variants_controller.rb', line 80

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")
    AWS.config({ 
      :access_key_id => config[Rails.env]['access_key_id'],
      :secret_access_key => config[Rails.env]['secret_access_key']  
    })        
    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



145
146
147
148
149
150
# File 'app/controllers/caboose/variants_controller.rb', line 145

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_option1_mediaObject



121
122
123
124
125
126
# File 'app/controllers/caboose/variants_controller.rb', line 121

def admin_edit_option1_media
  return if !user_is_allowed('products', 'edit')    
  @product = Product.find(params[:product_id])
  @variants = Variant.where(:product_id => @product.id, :option1 => params[:option_value]).reorder(:option1_sort_order).all      
  render :layout => 'caboose/modal'
end

#admin_edit_option2_mediaObject



129
130
131
132
133
134
# File 'app/controllers/caboose/variants_controller.rb', line 129

def admin_edit_option2_media
  return if !user_is_allowed('products', 'edit')    
  @product = Product.find(params[:product_id])
  @variants = Variant.where(:product_id => @product.id, :option2 => params[:option_value]).reorder(:option2_sort_order).all      
  render :layout => 'caboose/modal'
end

#admin_edit_option3_mediaObject



137
138
139
140
141
142
# File 'app/controllers/caboose/variants_controller.rb', line 137

def admin_edit_option3_media
  return if !user_is_allowed('products', 'edit')    
  @product = Product.find(params[:product_id])
  @variants = Variant.where(:product_id => @product.id, :option3 => params[:option_value]).reorder(:option3_sort_order).all      
  render :layout => 'caboose/modal'
end

#admin_edit_sort_orderObject



114
115
116
117
118
# File 'app/controllers/caboose/variants_controller.rb', line 114

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



305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# File 'app/controllers/caboose/variants_controller.rb', line 305

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).reorder(:url)
  
  # Grab all vendors      
  @vendors = Vendor.where('site_id = ? and name IS NOT NULL', @site.id).reorder(:name)
  
  render :layout => 'caboose/admin'
end

#admin_indexObject



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

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



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

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.as_json(:include => [:flat_rate_shipping_package, :flat_rate_shipping_method])
  }      
end

#admin_json_singleObject



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

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

#admin_newObject



105
106
107
108
109
110
111
# File 'app/controllers/caboose/variants_controller.rb', line 105

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

#admin_remove_variantsObject



491
492
493
494
495
496
497
498
499
500
501
502
# File 'app/controllers/caboose/variants_controller.rb', line 491

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



509
510
511
512
513
514
515
516
517
518
519
# File 'app/controllers/caboose/variants_controller.rb', line 509

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



178
179
180
181
182
183
184
185
# File 'app/controllers/caboose/variants_controller.rb', line 178

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



246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# File 'app/controllers/caboose/variants_controller.rb', line 246

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 'cost'                          then v.cost                          = 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 'clearance'                     then v.clearance                     = value
      when 'clearance_price'               then v.clearance_price               = 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 'flat_rate_shipping'            then v.flat_rate_shipping            = value
      when 'flat_rate_shipping_single'     then v.flat_rate_shipping_single     = value
      when 'flat_rate_shipping_combined'   then v.flat_rate_shipping_combined   = value
      when 'flat_rate_shipping_package_id' then v.flat_rate_shipping_package_id = value
      when 'flat_rate_shipping_method_id'  then v.flat_rate_shipping_method_id  = value
      when 'flat_rate_shipping_package_method_id' then
        arr = value.split('_')
        v.flat_rate_shipping_package_id = arr[0].to_i
        v.flat_rate_shipping_method_id  = arr[1].to_i
      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



213
214
215
216
217
218
219
220
221
# File 'app/controllers/caboose/variants_controller.rb', line 213

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



224
225
226
227
228
229
230
231
232
# File 'app/controllers/caboose/variants_controller.rb', line 224

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



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

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



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



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