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



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

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



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

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

#createObject



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

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



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

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



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

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

#indexObject



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

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

#mineObject



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

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



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

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

#updateObject



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

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