-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathworkflow.go
221 lines (175 loc) · 7.13 KB
/
workflow.go
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
package subscription
import (
"github.com/indeedeng/iwf-golang-samples/workflows/service"
"github.com/indeedeng/iwf-golang-sdk/iwf"
"time"
)
type SubscriptionWorkflow struct {
iwf.DefaultWorkflowType
svc service.MyService
}
func NewSubscriptionWorkflow(svc service.MyService) iwf.ObjectWorkflow {
return &SubscriptionWorkflow{
svc: svc,
}
}
const (
keyBillingPeriodNum = "billingPeriodNum"
keyCustomer = "customer"
SignalCancelSubscription = "cancelSubscription"
SignalUpdateBillingPeriodChargeAmount = "updateBillingPeriodChargeAmount"
)
func (b SubscriptionWorkflow) GetWorkflowStates() []iwf.StateDef {
return []iwf.StateDef{
iwf.StartingStateDef(NewInitState()),
iwf.NonStartingStateDef(NewTrialState(b.svc)),
iwf.NonStartingStateDef(NewChargeCurrentBillState(b.svc)),
iwf.NonStartingStateDef(NewCancelState(b.svc)),
iwf.NonStartingStateDef(NewUpdateChargeAmountState()),
}
}
func (b SubscriptionWorkflow) GetPersistenceSchema() []iwf.PersistenceFieldDef {
return []iwf.PersistenceFieldDef{
iwf.DataAttributeDef(keyBillingPeriodNum),
iwf.DataAttributeDef(keyCustomer),
}
}
func (b SubscriptionWorkflow) GetCommunicationSchema() []iwf.CommunicationMethodDef {
return []iwf.CommunicationMethodDef{
iwf.SignalChannelDef(SignalCancelSubscription),
iwf.SignalChannelDef(SignalUpdateBillingPeriodChargeAmount),
iwf.RPCMethodDef(b.Describe, nil),
}
}
func (b SubscriptionWorkflow) Describe(ctx iwf.WorkflowContext, input iwf.Object, persistence iwf.Persistence, communication iwf.Communication) (interface{}, error) {
var customer Customer
persistence.GetDataAttribute(keyCustomer, &customer)
return customer.Subscription, nil
}
type Subscription struct {
TrialPeriod time.Duration
BillingPeriod time.Duration
MaxBillingPeriods int
BillingPeriodCharge int
}
type Customer struct {
FirstName string
LastName string
Id string
Email string
Subscription Subscription
}
func NewInitState() iwf.WorkflowState {
return initState{}
}
type initState struct {
iwf.WorkflowStateDefaults
}
func (b initState) WaitUntil(ctx iwf.WorkflowContext, input iwf.Object, persistence iwf.Persistence, communication iwf.Communication) (*iwf.CommandRequest, error) {
var customer Customer
input.Get(&customer)
persistence.SetDataAttribute(keyCustomer, customer)
return iwf.EmptyCommandRequest(), nil
}
func (b initState) Execute(ctx iwf.WorkflowContext, input iwf.Object, commandResults iwf.CommandResults, persistence iwf.Persistence, communication iwf.Communication) (*iwf.StateDecision, error) {
return iwf.MultiNextStates(trialState{}, cancelState{}, updateChargeAmountState{}), nil
}
func NewTrialState(svc service.MyService) iwf.WorkflowState {
return trialState{
svc: svc,
}
}
type trialState struct {
iwf.WorkflowStateDefaults
svc service.MyService
}
func (b trialState) WaitUntil(ctx iwf.WorkflowContext, input iwf.Object, persistence iwf.Persistence, communication iwf.Communication) (*iwf.CommandRequest, error) {
var customer Customer
persistence.GetDataAttribute(keyCustomer, &customer)
// send welcome email
b.svc.SendEmail(customer.Email, "welcome email", "hello content")
return iwf.AllCommandsCompletedRequest(
iwf.NewTimerCommand("", time.Now().Add(customer.Subscription.TrialPeriod)),
), nil
}
func (b trialState) Execute(ctx iwf.WorkflowContext, input iwf.Object, commandResults iwf.CommandResults, persistence iwf.Persistence, communication iwf.Communication) (*iwf.StateDecision, error) {
persistence.SetDataAttribute(keyBillingPeriodNum, 0)
return iwf.SingleNextState(chargeCurrentBillState{}, nil), nil
}
func NewChargeCurrentBillState(svc service.MyService) iwf.WorkflowState {
return chargeCurrentBillState{
svc: svc,
}
}
type chargeCurrentBillState struct {
iwf.WorkflowStateDefaults
svc service.MyService
}
const subscriptionOverKey = "subscriptionOver"
func (b chargeCurrentBillState) WaitUntil(ctx iwf.WorkflowContext, input iwf.Object, persistence iwf.Persistence, communication iwf.Communication) (*iwf.CommandRequest, error) {
var customer Customer
persistence.GetDataAttribute(keyCustomer, &customer)
var periodNum int
persistence.GetDataAttribute(keyBillingPeriodNum, &periodNum)
if periodNum >= customer.Subscription.MaxBillingPeriods {
persistence.SetStateExecutionLocal(subscriptionOverKey, true)
return iwf.EmptyCommandRequest(), nil
}
persistence.SetDataAttribute(keyBillingPeriodNum, periodNum+1)
return iwf.AllCommandsCompletedRequest(
iwf.NewTimerCommand("", time.Now().Add(customer.Subscription.BillingPeriod)),
), nil
}
func (b chargeCurrentBillState) Execute(ctx iwf.WorkflowContext, input iwf.Object, commandResults iwf.CommandResults, persistence iwf.Persistence, communication iwf.Communication) (*iwf.StateDecision, error) {
var customer Customer
persistence.GetDataAttribute(keyCustomer, &customer)
var subscriptionOver bool
persistence.GetStateExecutionLocal(subscriptionOverKey, &subscriptionOver)
if subscriptionOver {
b.svc.SendEmail(customer.Email, "subscription over", "hello content")
// use force completing because the cancel state is still waiting for signal
return iwf.ForceCompletingWorkflow, nil
}
b.svc.ChargeUser(customer.Email, customer.Id, customer.Subscription.BillingPeriodCharge)
return iwf.SingleNextState(chargeCurrentBillState{}, nil), nil
}
func NewCancelState(svc service.MyService) iwf.WorkflowState {
return cancelState{
svc: svc,
}
}
type cancelState struct {
iwf.WorkflowStateDefaults
svc service.MyService
}
func (b cancelState) WaitUntil(ctx iwf.WorkflowContext, input iwf.Object, persistence iwf.Persistence, communication iwf.Communication) (*iwf.CommandRequest, error) {
return iwf.AllCommandsCompletedRequest(
iwf.NewSignalCommand("", SignalCancelSubscription),
), nil
}
func (b cancelState) Execute(ctx iwf.WorkflowContext, input iwf.Object, commandResults iwf.CommandResults, persistence iwf.Persistence, communication iwf.Communication) (*iwf.StateDecision, error) {
var customer Customer
persistence.GetDataAttribute(keyCustomer, &customer)
b.svc.SendEmail(customer.Email, "subscription canceled", "hello content")
return iwf.ForceCompletingWorkflow, nil
}
func NewUpdateChargeAmountState() iwf.WorkflowState {
return updateChargeAmountState{}
}
type updateChargeAmountState struct {
iwf.WorkflowStateDefaults
}
func (b updateChargeAmountState) WaitUntil(ctx iwf.WorkflowContext, input iwf.Object, persistence iwf.Persistence, communication iwf.Communication) (*iwf.CommandRequest, error) {
return iwf.AllCommandsCompletedRequest(
iwf.NewSignalCommand("", SignalUpdateBillingPeriodChargeAmount),
), nil
}
func (b updateChargeAmountState) Execute(ctx iwf.WorkflowContext, input iwf.Object, commandResults iwf.CommandResults, persistence iwf.Persistence, communication iwf.Communication) (*iwf.StateDecision, error) {
var customer Customer
persistence.GetDataAttribute(keyCustomer, &customer)
var newAmount int
commandResults.GetSignalCommandResultByChannel(SignalUpdateBillingPeriodChargeAmount).SignalValue.Get(&newAmount)
customer.Subscription.BillingPeriodCharge = newAmount
persistence.SetDataAttribute(keyCustomer, customer)
return iwf.SingleNextState(updateChargeAmountState{}, nil), nil
}