Class: Spree::Api::TaxonsController
- Inherits:
-
BaseController
- Object
- ActionController::Base
- BaseController
- Spree::Api::TaxonsController
- Defined in:
- app/controllers/spree/api/taxons_controller.rb
Instance Attribute Summary
Attributes inherited from BaseController
Instance Method Summary collapse
- #create ⇒ Object
- #destroy ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #products ⇒ Object
- #show ⇒ Object
- #update ⇒ Object
Instance Method Details
#create ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
# File 'app/controllers/spree/api/taxons_controller.rb', line 32 def create :create, Taxon @taxon = Spree::Taxon.new(taxon_params) @taxon.taxonomy_id = params[:taxonomy_id] taxonomy = Spree::Taxonomy.find_by(id: params[:taxonomy_id]) if taxonomy.nil? @taxon.errors.add(:taxonomy_id, I18n.t('spree.api.invalid_taxonomy_id')) invalid_resource!(@taxon) && return end @taxon.parent_id = taxonomy.root.id unless params[:taxon][:parent_id] if @taxon.save respond_with(@taxon, status: 201, default_template: :show) else invalid_resource!(@taxon) end end |
#destroy ⇒ Object
61 62 63 64 65 |
# File 'app/controllers/spree/api/taxons_controller.rb', line 61 def destroy :destroy, taxon taxon.destroy respond_with(taxon, status: 204) end |
#index ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'app/controllers/spree/api/taxons_controller.rb', line 6 def index if taxonomy @taxons = taxonomy.root.children elsif params[:ids] @taxons = Spree::Taxon.accessible_by(current_ability).where(id: params[:ids].split(',')) else @taxons = Spree::Taxon.accessible_by(current_ability).order(:taxonomy_id, :lft).ransack(params[:q]).result end unless params[:without_children] @taxons = @taxons.includes(:children) end @taxons = paginate(@taxons) preload_taxon_parents(@taxons) respond_with(@taxons) end |
#new ⇒ Object
24 25 |
# File 'app/controllers/spree/api/taxons_controller.rb', line 24 def new end |
#products ⇒ Object
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'app/controllers/spree/api/taxons_controller.rb', line 67 def products # Returns the products sorted by their position with the classification # Products#index does not do the sorting. taxon = Spree::Taxon.find(params[:id]) @products = paginate(taxon.products.ransack(params[:q]).result) @products = @products.includes(master: :prices) if params[:simple] @exclude_data = { variants: true, option_types: true, product_properties: true, classifications: true } @product_attributes = %i(id name display_price) end render "spree/api/products/index" end |
#show ⇒ Object
27 28 29 30 |
# File 'app/controllers/spree/api/taxons_controller.rb', line 27 def show @taxon = taxon respond_with(@taxon) end |
#update ⇒ Object
52 53 54 55 56 57 58 59 |
# File 'app/controllers/spree/api/taxons_controller.rb', line 52 def update :update, taxon if taxon.update(taxon_params) respond_with(taxon, status: 200, default_template: :show) else invalid_resource!(taxon) end end |