Class: Spree::Api::TaxonsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/spree/api/taxons_controller.rb

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Methods inherited from BaseController

#map_nested_attributes_keys, #set_jsonp_format

Methods included from ControllerSetup

included

Instance Method Details

#createObject



28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'app/controllers/spree/api/taxons_controller.rb', line 28

def create
  authorize! :create, Taxon
  @taxon = Taxon.new(params[:taxon])
  @taxon.taxonomy_id = params[:taxonomy_id]
  taxonomy = Taxonomy.find_by_id(params[:taxonomy_id])

  if taxonomy.nil?
    @taxon.errors[:taxonomy_id] = I18n.t(:invalid_taxonomy_id, :scope => 'spree.api')
    invalid_resource!(@taxon) and 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

#destroyObject



57
58
59
60
61
# File 'app/controllers/spree/api/taxons_controller.rb', line 57

def destroy
  authorize! :delete, Taxon
  taxon.destroy
  respond_with(taxon, :status => 204)
end

#indexObject



6
7
8
9
10
11
12
13
14
15
16
17
# File 'app/controllers/spree/api/taxons_controller.rb', line 6

def index
  if taxonomy
    @taxons = taxonomy.root.children
  else
    if params[:ids]
      @taxons = Taxon.where(:id => params[:ids].split(","))
    else
      @taxons = Taxon.ransack(params[:q]).result
    end
  end
  respond_with(@taxons)
end

#jstreeObject



24
25
26
# File 'app/controllers/spree/api/taxons_controller.rb', line 24

def jstree
  show
end

#showObject



19
20
21
22
# File 'app/controllers/spree/api/taxons_controller.rb', line 19

def show
  @taxon = taxon
  respond_with(@taxon)
end

#updateObject



48
49
50
51
52
53
54
55
# File 'app/controllers/spree/api/taxons_controller.rb', line 48

def update
  authorize! :update, Taxon
  if taxon.update_attributes(params[:taxon])
    respond_with(taxon, :status => 200, :default_template => :show)
  else
    invalid_resource!(taxon)
  end
end