Class: Spree::Api::OrdersController

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

Instance Attribute Summary

Attributes inherited from BaseController

#current_api_user

Instance Method Summary collapse

Methods inherited from BaseController

#map_nested_attributes_keys, #permitted_line_item_attributes, #set_jsonp_format

Methods included from ControllerSetup

included

Instance Method Details

#apply_coupon_codeObject



75
76
77
78
79
80
81
# File 'app/controllers/spree/api/orders_controller.rb', line 75

def apply_coupon_code
  find_order
  @order.coupon_code = params[:coupon_code]
  @handler = PromotionHandler::Coupon.new(@order).apply
  status = @handler.successful? ? 200 : 422
  render "spree/api/promotions/handler", :status => status
end

#cancelObject



16
17
18
19
20
21
# File 'app/controllers/spree/api/orders_controller.rb', line 16

def cancel
  find_order
  authorize! :update, @order, params[:token]
  @order.cancel!
  render :show
end

#createObject



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

def create
  authorize! :create, Order
  @order = Spree::Core::Importer::Order.import(current_api_user, order_params)
  respond_with(@order, default_template: :show, status: 201)
end

#emptyObject



29
30
31
32
33
34
# File 'app/controllers/spree/api/orders_controller.rb', line 29

def empty
  find_order
  @order.empty!
  @order.update!
  render text: nil, status: 200
end

#indexObject



36
37
38
39
40
# File 'app/controllers/spree/api/orders_controller.rb', line 36

def index
  authorize! :index, Order
  @orders = Order.ransack(params[:q]).result.page(params[:page]).per(params[:per_page])
  respond_with(@orders)
end

#mineObject



67
68
69
70
71
72
73
# File 'app/controllers/spree/api/orders_controller.rb', line 67

def mine
  if current_api_user.persisted?
    @orders = current_api_user.orders.ransack(params[:q]).result.page(params[:page]).per(params[:per_page])
  else
    render "spree/api/errors/unauthorized", status: :unauthorized
  end
end

#showObject



42
43
44
45
46
47
# File 'app/controllers/spree/api/orders_controller.rb', line 42

def show
  find_order
  method = "before_#{@order.state}"
  send(method) if respond_to?(method, true)
  respond_with(@order)
end

#updateObject



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'app/controllers/spree/api/orders_controller.rb', line 49

def update
  find_order(true)
  # Parsing line items through as an update_attributes call in the API will result in
  # many line items for the same variant_id being created. We must be smarter about this,
  # hence the use of the update_line_items method, defined within order_decorator.rb.
  order_params.delete("line_items_attributes")
  if @order.update_attributes(order_params)

    deal_with_line_items if params[:order][:line_items]

    @order.line_items.reload
    @order.update!
    respond_with(@order, default_template: :show)
  else
    invalid_resource!(@order)
  end
end