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

Instance Method Details

#apply_coupon_codeObject



92
93
94
95
96
97
98
99
100
101
102
# File 'app/controllers/spree/api/orders_controller.rb', line 92

def apply_coupon_code
  authorize! :update, @order, order_token
  @order.coupon_code = params[:coupon_code]
  @handler = PromotionHandler::Coupon.new(@order).apply
  if @handler.successful?
    render "spree/api/promotions/handler", status: 200
  else
    logger.error("apply_coupon_code_error=#{@handler.error.inspect}")
    render "spree/api/promotions/handler", status: 422
  end
end

#cancelObject



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

def cancel
  authorize! :update, @order, params[:token]
  @order.canceled_by(current_api_user)
  respond_with(@order, default_template: :show)
end

#createObject



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

def create
  authorize! :create, Order

  if can?(:admin, Order)
    @order = Spree::Core::Importer::Order.import(determine_order_user, order_params)
    respond_with(@order, default_template: :show, status: 201)
  else
    @order = Spree::Order.create!(user: current_api_user, store: current_store)
    if @order.contents.update_cart order_params
      respond_with(@order, default_template: :show, status: 201)
    else
      invalid_resource!(@order)
    end
  end
end

#currentObject



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

def current
  if current_api_user && @order = current_api_user.last_incomplete_spree_order(store: current_store)
    respond_with(@order, default_template: :show, locals: { root_object: @order })
  else
    head :no_content
  end
end

#emptyObject



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

def empty
  authorize! :update, @order, order_token
  @order.empty!
  render plain: nil, status: 204
end

#indexObject



50
51
52
53
54
# File 'app/controllers/spree/api/orders_controller.rb', line 50

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

#mineObject



83
84
85
86
87
88
89
90
# File 'app/controllers/spree/api/orders_controller.rb', line 83

def mine
  if current_api_user
    @orders = current_api_user.orders.by_store(current_store).reverse_chronological.ransack(params[:q]).result
    @orders = paginate(@orders)
  else
    render "spree/api/errors/unauthorized", status: :unauthorized
  end
end

#showObject



56
57
58
59
# File 'app/controllers/spree/api/orders_controller.rb', line 56

def show
  authorize! :show, @order, order_token
  respond_with(@order)
end

#updateObject



61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'app/controllers/spree/api/orders_controller.rb', line 61

def update
  authorize! :update, @order, order_token

  if @order.contents.update_cart(order_params)
    user_id = params[:order][:user_id]
    if can?(:admin, @order) && user_id
      @order.associate_user!(Spree.user_class.find(user_id))
    end
    respond_with(@order, default_template: :show)
  else
    invalid_resource!(@order)
  end
end