-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathshipments_controller.rb
196 lines (169 loc) · 6.13 KB
/
shipments_controller.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# frozen_string_literal: true
module Spree
module Api
class ShipmentsController < Spree::Api::BaseController
before_action :find_order_on_create, only: :create
before_action :find_shipment, only: [:update, :ship, :ready, :add, :remove, :estimated_rates, :select_shipping_method]
before_action :load_transfer_params, only: [:transfer_to_location, :transfer_to_shipment]
around_action :lock_order, except: [:mine, :estimated_rates]
before_action :update_shipment, only: [:ship, :ready, :add, :remove]
def mine
if current_api_user
@shipments = Spree::Shipment
.reverse_chronological
.joins(:order)
.where(spree_orders: { user_id: current_api_user.id })
.includes(mine_includes)
.ransack(params[:q]).result
@shipments = paginate(@shipments)
else
render "spree/api/errors/unauthorized", status: :unauthorized
end
end
def estimated_rates
authorize! :update, @shipment
estimator = Spree::Config.stock.estimator_class.new
@shipping_rates = estimator.shipping_rates(@shipment.to_package, false)
end
def select_shipping_method
authorize! :update, @shipment
shipping_method = Spree::ShippingMethod.find(params.require(:shipping_method_id))
@shipment.select_shipping_method(shipping_method)
@order.recalculate
respond_with(@shipment, default_template: :show)
end
def create
authorize! :create, Shipment
@shipment = @order.shipments.create(stock_location_id: params.fetch(:stock_location_id))
respond_with(@shipment, default_template: :show)
end
def update
@shipment.update_attributes_and_order(shipment_params)
respond_with(@shipment.reload, default_template: :show)
end
def ready
unless @shipment.ready?
if @shipment.can_ready?
@shipment.ready!
else
logger.error("cannot_ready_shipment shipment_state=#{@shipment.state}")
render('spree/api/shipments/cannot_ready_shipment', status: 422) && return
end
end
respond_with(@shipment, default_template: :show)
end
def ship
authorize! :ship, @shipment
unless @shipment.shipped?
@shipment.suppress_mailer = (params[:send_mailer] == 'false')
@shipment.ship!
end
respond_with(@shipment, default_template: :show)
end
def add
quantity = params[:quantity].to_i
@shipment.order.contents.add(variant, quantity, { shipment: @shipment })
respond_with(@shipment, default_template: :show)
end
def remove
quantity = params[:quantity].to_i
if @shipment.shipped? || @shipment.canceled?
@shipment.errors.add(:base, :cannot_remove_items_shipment_state, state: @shipment.state)
invalid_resource!(@shipment)
else
@shipment.order.contents.remove(variant, quantity, { shipment: @shipment })
@shipment.reload if @shipment.persisted?
respond_with(@shipment, default_template: :show)
end
end
def transfer_to_location
@desired_stock_location = Spree::StockLocation.find(params[:stock_location_id])
@desired_shipment = @original_shipment.order.shipments.build(stock_location: @desired_stock_location)
transfer_to_shipment
end
def transfer_to_shipment
@desired_shipment ||= Spree::Shipment.find_by!(number: params[:target_shipment_number])
fulfilment_changer = Spree::FulfilmentChanger.new(
current_shipment: @original_shipment,
desired_shipment: @desired_shipment,
variant: @variant,
quantity: @quantity,
track_inventory: Spree::Config.track_inventory_levels
)
if fulfilment_changer.run!
render json: { success: true, message: t('spree.api.shipment.transfer_success') }, status: :accepted
else
render json: { success: false, message: fulfilment_changer.errors.full_messages.to_sentence }, status: :accepted
end
end
private
def load_transfer_params
@original_shipment = Spree::Shipment.find_by!(number: params[:original_shipment_number])
@order = @original_shipment.order
@variant = Spree::Variant.find(params[:variant_id])
@quantity = params[:quantity].to_i
authorize! [:update, :destroy], @original_shipment
authorize! :create, Shipment
end
def find_order_on_create
@order = Spree::Order.find_by!(number: params[:shipment][:order_id])
authorize! :show, @order
end
def find_shipment
if @order.present?
@shipment = @order.shipments.find_by!(number: params[:id])
else
@shipment = Spree::Shipment.readonly(false).find_by!(number: params[:id])
@order = @shipment.order
end
authorize! :update, @shipment
end
def update_shipment
@shipment.update(shipment_params)
@shipment.reload
end
def shipment_params
if params[:shipment] && !params[:shipment].empty?
params.require(:shipment).permit(permitted_shipment_attributes)
else
{}
end
end
def variant
@variant ||= Spree::Variant.unscoped.find(params.fetch(:variant_id))
end
def mine_includes
{
order: {
bill_address: {
state: {},
country: {}
},
ship_address: {
state: {},
country: {}
},
adjustments: {},
payments: {
order: {},
payment_method: {}
}
},
inventory_units: {
line_item: {
product: {},
variant: {}
},
variant: {
product: {},
prices: {},
option_values: {
option_type: {}
}
}
}
}
end
end
end
end