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_edit ⇒ Object
GET /admin/products/:product_id/variants/:variant_id.
-
#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_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
#admin_json_single, #before_action, #before_before_action, #hashify_query_string, #init_cart, #logged_in?, #logged_in_user, #login_user, #logout_user, #parse_url_params, #reject_param, #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
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'app/controllers/caboose/variants_controller.rb', line 123 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
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'app/controllers/caboose/variants_controller.rb', line 142 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
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 |
# File 'app/controllers/caboose/variants_controller.rb', line 305 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 = Caboose::Variant.where(:alternate_id => row[0]).first v = Caboose::Variant.new(:product_id => p.id) if v.nil? 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
188 189 190 191 192 193 194 195 196 197 198 199 |
# File 'app/controllers/caboose/variants_controller.rb', line 188 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
343 344 345 346 347 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 |
# File 'app/controllers/caboose/variants_controller.rb', line 343 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 '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 } end end variants.each{ |v| v.save } resp.success = true render :json => resp end |
#admin_delete ⇒ Object
DELETE /admin/products/:product_id/variants/:id
177 178 179 180 181 182 183 184 185 |
# File 'app/controllers/caboose/variants_controller.rb', line 177 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_edit ⇒ Object
GET /admin/products/:product_id/variants/:variant_id
73 74 75 76 77 78 |
# File 'app/controllers/caboose/variants_controller.rb', line 73 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_order ⇒ Object
GET /admin/products/:product_id/variants/sort-order
202 203 204 205 206 |
# File 'app/controllers/caboose/variants_controller.rb', line 202 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
242 243 244 245 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 |
# File 'app/controllers/caboose/variants_controller.rb', line 242 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 } end |
#admin_new ⇒ Object
GET /admin/products/:id/variants/new
114 115 116 117 118 119 120 |
# File 'app/controllers/caboose/variants_controller.rb', line 114 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
378 379 380 381 382 383 384 385 386 387 388 389 |
# File 'app/controllers/caboose/variants_controller.rb', line 378 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
396 397 398 399 400 401 402 403 404 405 406 |
# File 'app/controllers/caboose/variants_controller.rb', line 396 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
167 168 169 170 171 172 173 174 |
# File 'app/controllers/caboose/variants_controller.rb', line 167 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
81 82 83 84 85 86 87 88 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 81 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 '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 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
209 210 211 212 213 214 215 216 217 |
# File 'app/controllers/caboose/variants_controller.rb', line 209 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
220 221 222 223 224 225 226 227 228 |
# File 'app/controllers/caboose/variants_controller.rb', line 220 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
231 232 233 234 235 236 237 238 239 |
# File 'app/controllers/caboose/variants_controller.rb', line 231 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 |