Class: Spree::Api::ResourceController

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

Direct Known Subclasses

UsersController

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Instance Method Details

#createObject



28
29
30
31
32
33
34
35
36
37
38
39
# File 'app/controllers/spree/api/resource_controller.rb', line 28

def create
  authorize! :create, model_class

  @object = model_class.new(permitted_resource_params)
  instance_variable_set("@#{object_name}", @object)

  if @object.save
    respond_with(@object, status: 201, default_template: :show)
  else
    invalid_resource!(@object)
  end
end

#destroyObject



51
52
53
54
55
56
57
58
59
# File 'app/controllers/spree/api/resource_controller.rb', line 51

def destroy
  authorize! :destroy, @object

  if @object.destroy
    respond_with(@object, status: 204)
  else
    invalid_resource!(@object)
  end
end

#indexObject



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

def index
  collection_scope = model_class.accessible_by(current_ability, :read)
  if params[:ids]
    ids = params[:ids].split(",").flatten
    collection_scope = collection_scope.where(id: ids)
  else
    collection_scope = collection_scope.ransack(params[:q]).result
  end

  @collection = collection_scope.page(params[:page]).per(params[:per_page])
  instance_variable_set("@#{controller_name}", @collection)

  respond_with(@collection)
end

#newObject



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

def new
  authorize! :new, model_class
  respond_with(model_class.new)
end

#showObject



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

def show
  respond_with(@object)
end

#updateObject



41
42
43
44
45
46
47
48
49
# File 'app/controllers/spree/api/resource_controller.rb', line 41

def update
  authorize! :update, @object

  if @object.update_attributes(permitted_resource_params)
    respond_with(@object, status: 200, default_template: :show)
  else
    invalid_resource!(@object)
  end
end