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



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

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
# File 'app/controllers/spree/api/orders_controller.rb', line 28

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

#currentObject



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

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



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

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

#indexObject



40
41
42
43
44
# File 'app/controllers/spree/api/orders_controller.rb', line 40

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

#mineObject



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

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

#showObject



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

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

#updateObject



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

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