Class: Caboose::VariantsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Caboose::VariantsController
- Defined in:
- app/controllers/caboose/variants_controller.rb
Instance Method Summary collapse
-
#admin_add ⇒ Object
POST /admin/products/:product_id/variants/add.
-
#admin_attach_to_image ⇒ Object
PUT /admin/variants/:id/attach-to-image.
-
#admin_bulk_add ⇒ Object
POST /admin/products/:product_id/variants/bulk.
-
#admin_bulk_delete ⇒ Object
DELETE /admin/products/:product_id/variants/bulk.
-
#admin_bulk_update ⇒ Object
PUT /admin/products/:product_id/variants/bulk.
-
#admin_delete ⇒ Object
DELETE /admin/products/:product_id/variants/:id.
-
#admin_download_url ⇒ Object
GET /admin/producst/:product_id/variants/:id/download-url.
-
#admin_edit ⇒ Object
GET /admin/products/:product_id/variants/:variant_id.
-
#admin_edit_option1_media ⇒ Object
GET /admin/products/:product_id/variants/option1-media.
-
#admin_edit_option2_media ⇒ Object
GET /admin/products/:product_id/variants/option2-media.
-
#admin_edit_option3_media ⇒ Object
GET /admin/products/:product_id/variants/option3-media.
-
#admin_edit_sort_order ⇒ Object
GET /admin/products/:product_id/variants/sort-order.
-
#admin_group ⇒ Object
GET /admin/variants.
-
#admin_index ⇒ Object
GET /admin/products/:id/variants GET /admin/products/:id/variants/:variant_id.
-
#admin_json ⇒ Object
GET /admin/products/:product_id/variants/json.
-
#admin_json_single ⇒ Object
GET /admin/products/:product_id/variants/:id/json.
-
#admin_new ⇒ Object
GET /admin/products/:id/variants/new.
-
#admin_remove_variants ⇒ Object
POST /admin/products/:product_id/variants/remove.
-
#admin_status_options ⇒ Object
GET /admin/variants/status-options.
-
#admin_unattach_from_image ⇒ Object
PUT /admin/variants/:id/unattach-from-image.
-
#admin_update ⇒ Object
PUT /admin/variants/:id.
-
#admin_update_option1_sort_order ⇒ Object
PUT /admin/products/:product_id/variants/option1-sort-order.
-
#admin_update_option2_sort_order ⇒ Object
PUT /admin/products/:product_id/variants/option1-sort-order.
-
#admin_update_option3_sort_order ⇒ Object
PUT /admin/products/:product_id/variants/option1-sort-order.
-
#display_image ⇒ Object
GET /variants/:id/display-image.
-
#find_by_options ⇒ Object
POST /variants/find-by-options.
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_add ⇒ Object
POST /admin/products/:product_id/variants/add
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
# File 'app/controllers/caboose/variants_controller.rb', line 182 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_image ⇒ Object
PUT /admin/variants/:id/attach-to-image
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 |
# File 'app/controllers/caboose/variants_controller.rb', line 201 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_add ⇒ Object
POST /admin/products/:product_id/variants/bulk
388 389 390 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 |
# File 'app/controllers/caboose/variants_controller.rb', line 388 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_delete ⇒ Object
DELETE /admin/products/:product_id/variants/bulk
247 248 249 250 251 252 253 254 255 256 257 258 |
# File 'app/controllers/caboose/variants_controller.rb', line 247 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_update ⇒ Object
PUT /admin/products/:product_id/variants/bulk
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 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 |
# File 'app/controllers/caboose/variants_controller.rb', line 431 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. = 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_delete ⇒ Object
DELETE /admin/products/:product_id/variants/:id
236 237 238 239 240 241 242 243 244 |
# File 'app/controllers/caboose/variants_controller.rb', line 236 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_url ⇒ Object
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 108 109 110 111 |
# 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") 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_edit ⇒ Object
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_option1_media ⇒ Object
GET /admin/products/:product_id/variants/option1-media
268 269 270 271 272 273 |
# File 'app/controllers/caboose/variants_controller.rb', line 268 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_media ⇒ Object
GET /admin/products/:product_id/variants/option2-media
276 277 278 279 280 281 |
# File 'app/controllers/caboose/variants_controller.rb', line 276 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_media ⇒ Object
GET /admin/products/:product_id/variants/option3-media
284 285 286 287 288 289 |
# File 'app/controllers/caboose/variants_controller.rb', line 284 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_order ⇒ Object
GET /admin/products/:product_id/variants/sort-order
261 262 263 264 265 |
# File 'app/controllers/caboose/variants_controller.rb', line 261 def admin_edit_sort_order return if !user_is_allowed('products', 'edit') @product = Product.find(params[:product_id]) render :layout => 'caboose/admin' end |
#admin_group ⇒ Object
GET /admin/variants
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 |
# File 'app/controllers/caboose/variants_controller.rb', line 325 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_index ⇒ Object
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_json ⇒ Object
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.as_json(:include => [:flat_rate_shipping_package, :flat_rate_shipping_method]) } end |
#admin_json_single ⇒ Object
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_new ⇒ Object
GET /admin/products/:id/variants/new
173 174 175 176 177 178 179 |
# File 'app/controllers/caboose/variants_controller.rb', line 173 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_variants ⇒ Object
POST /admin/products/:product_id/variants/remove
512 513 514 515 516 517 518 519 520 521 522 523 |
# File 'app/controllers/caboose/variants_controller.rb', line 512 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_options ⇒ Object
GET /admin/variants/status-options
530 531 532 533 534 535 536 537 538 539 540 |
# File 'app/controllers/caboose/variants_controller.rb', line 530 def arr = ['Active', 'Inactive', 'Deleted'] = [] arr.each do |status| << { :value => status, :text => status } end render :json => end |
#admin_unattach_from_image ⇒ Object
PUT /admin/variants/:id/unattach-from-image
226 227 228 229 230 231 232 233 |
# File 'app/controllers/caboose/variants_controller.rb', line 226 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_update ⇒ Object
PUT /admin/variants/:id
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 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'app/controllers/caboose/variants_controller.rb', line 114 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. = 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_order ⇒ Object
PUT /admin/products/:product_id/variants/option1-sort-order
292 293 294 295 296 297 298 299 300 |
# File 'app/controllers/caboose/variants_controller.rb', line 292 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_order ⇒ Object
PUT /admin/products/:product_id/variants/option1-sort-order
303 304 305 306 307 308 309 310 311 |
# File 'app/controllers/caboose/variants_controller.rb', line 303 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_order ⇒ Object
PUT /admin/products/:product_id/variants/option1-sort-order
314 315 316 317 318 319 320 321 322 |
# File 'app/controllers/caboose/variants_controller.rb', line 314 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_image ⇒ Object
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_options ⇒ Object
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 the variant based on the product ID and options variant = Variant.(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, | Variant.(customization_id, [:option1], [:option2], [:option3]) end else Array.new end render :json => { :variant => variant, :customizations => customizations } end |