-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorder_state.rb
More file actions
239 lines (187 loc) · 4.78 KB
/
order_state.rb
File metadata and controls
239 lines (187 loc) · 4.78 KB
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# frozen_string_literal: true
module OrderState
StateError = Class.new(StandardError)
STATES = %w[received confirmed released in_progress ready_to_ship shipped closed cancelled].freeze
def self.included(base)
base.class_eval do
# ActiveRecord
# validates_inclusion_of :state, in: STATES
STATES.each do |state|
define_singleton_method state do
where(state: state)
end
end
end
end
def order_state
OrderState.get_state(self)
end
def self.get_state(stateful)
"order_state/#{stateful.state}".camelize.constantize.new stateful
rescue NameError
raise StateError, "Invalid State '#{stateful.state}'"
end
ACTIONS = %i[received? add_part! confirm! confirmed? release! released? start! make_shippable! complete! ship!
shipped? close! closed? cancel! cancelled?].freeze
ACTIONS.each do |action|
define_method action do
order_state.public_send action
end
end
class Base
def initialize(stateful)
@stateful = stateful
end
OrderState::ACTIONS.each do |action|
if action[-1] == '!'
define_method action do
raise StateError, "#{@stateful.class.name}: Can't #{action} from '#{@stateful.state}' state"
end
else
define_method(action) { false }
end
end
def confirm!(_time = Time.now)
raise StateError, "Can't confirm! from '#{@stateful.state}' state"
end
def can_edit?
true
end
def can_cancel?
false
end
def active?
true
end
end
module Cancellable
def cancel!(time = Time.zone.now)
yield if block_given?
@stateful.update!(state: 'cancelled', cancelled_at: time)
end
def can_cancel?
true
end
end
class Received < Base
include Cancellable
def received?
true
end
def add_part!
yield if block_given?
end
def confirm!(time = Time.zone.now)
super unless @stateful.can_confirm?
yield if block_given?
@stateful.update!(state: 'confirmed', confirmed_at: time)
end
end
class Confirmed < Base
include Cancellable
def release!(time = Time.zone.now)
yield if block_given?
if @stateful.can_ship?
@stateful.update!(state: 'ready_to_ship', started_at: time)
elsif @stateful.can_complete?
@stateful.update!(state: 'shipped', started_at: time, completed_at: time)
else
@stateful.update!(state: 'released', released_at: time)
end
end
def confirmed?
true
end
end
class Released < Base
include Cancellable
def start!(time = Time.zone.now)
yield if block_given?
if @stateful.can_ship?
@stateful.update!(state: 'ready_to_ship')
elsif @stateful.can_complete?
@stateful.update!(state: 'shipped', completed_at: time)
else
@stateful.update!(state: 'in_progress', started_at: time)
end
end
def released?
true
end
end
class InProgress < Base
include Cancellable
def start!; end
def make_shippable!(time = Time.zone.now)
yield if block_given?
if @stateful.can_complete?
@stateful.update!(state: 'shipped', completed_at: time)
elsif @stateful.can_ship?
@stateful.update!(state: 'ready_to_ship')
end
end
def complete!(time = Time.zone.now)
retrun unless @stateful.can_complete?
yield if block_given?
@stateful.update!(state: 'shipped', completed_at: time)
end
end
class ReadyToShip < Base
include Cancellable
def start!; end
def make_shippable!(time = Time.zone.now)
yield if block_given?
@stateful.update!(state: 'shipped', completed_at: time) if @stateful.can_complete?
end
def ship!(time = Time.zone.now)
result = yield if block_given?
# Needs this to pickup the production entry state changes for @stateful.can_complete?
@stateful.reload
if @stateful.can_complete?
@stateful.update!(state: 'shipped', completed_at: time)
else
@stateful.update!(state: 'in_progress')
end
result
end
def complete!(time = Time.zone.now)
return unless @stateful.can_complete?
yield if block_given?
@stateful.update!(state: 'shipped', completed_at: time)
end
end
class Shipped < Base
def close!(time = Time.zone.now)
yield if block_given?
@stateful.update!(state: 'closed', closed_at: time)
end
def shipped?
true
end
def can_edit?
false
end
end
class Closed < Base
def active?
false
end
def can_edit?
false
end
def closed?
true
end
end
class Cancelled < Base
def cancelled?
true
end
def active?
false
end
def can_edit?
false
end
end
end