-
Notifications
You must be signed in to change notification settings - Fork 158
/
main.go
167 lines (135 loc) · 3.83 KB
/
main.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
package main
import (
"context"
"fmt"
"log"
"time"
"github.com/joho/godotenv"
"github.com/hatchet-dev/hatchet/pkg/client"
"github.com/hatchet-dev/hatchet/pkg/cmdutils"
"github.com/hatchet-dev/hatchet/pkg/worker"
)
type userCreateEvent struct {
Username string `json:"username"`
UserID string `json:"user_id"`
Data map[string]string `json:"data"`
}
type stepOutput struct {
Message string `json:"message"`
}
func main() {
err := godotenv.Load()
if err != nil {
panic(err)
}
events := make(chan string, 50)
if err := run(cmdutils.InterruptChan(), events); err != nil {
panic(err)
}
}
func run(ch <-chan interface{}, events chan<- string) error {
c, err := client.New()
if err != nil {
return fmt.Errorf("error creating client: %w", err)
}
w, err := worker.NewWorker(
worker.WithClient(
c,
),
worker.WithMaxRuns(1),
)
if err != nil {
return fmt.Errorf("error creating worker: %w", err)
}
testSvc := w.NewService("test")
err = testSvc.On(
worker.Events("user:create:simple"),
&worker.WorkflowJob{
Name: "post-user-update",
Description: "This runs after an update to the user model.",
Steps: []*worker.WorkflowStep{
worker.Fn(func(ctx worker.HatchetContext) (result *stepOutput, err error) {
input := &userCreateEvent{}
ctx.WorkflowInput(input)
time.Sleep(1 * time.Second)
return &stepOutput{
Message: "Step 1 got username: " + input.Username,
}, nil
},
).SetName("step-one"),
worker.Fn(func(ctx worker.HatchetContext) (result *stepOutput, err error) {
input := &userCreateEvent{}
ctx.WorkflowInput(input)
time.Sleep(2 * time.Second)
return &stepOutput{
Message: "Step 2 got username: " + input.Username,
}, nil
}).SetName("step-two"),
worker.Fn(func(ctx worker.HatchetContext) (result *stepOutput, err error) {
input := &userCreateEvent{}
ctx.WorkflowInput(input)
step1Out := &stepOutput{}
ctx.StepOutput("step-one", step1Out)
step2Out := &stepOutput{}
ctx.StepOutput("step-two", step2Out)
time.Sleep(3 * time.Second)
return &stepOutput{
Message: "Username was: " + input.Username + ", Step 3: has parents 1 and 2" + step1Out.Message + ", " + step2Out.Message,
}, nil
}).SetName("step-three").AddParents("step-one", "step-two"),
worker.Fn(func(ctx worker.HatchetContext) (result *stepOutput, err error) {
step1Out := &stepOutput{}
ctx.StepOutput("step-one", step1Out)
step3Out := &stepOutput{}
ctx.StepOutput("step-three", step3Out)
time.Sleep(4 * time.Second)
return &stepOutput{
Message: "Step 4: has parents 1 and 3" + step1Out.Message + ", " + step3Out.Message,
}, nil
}).SetName("step-four").AddParents("step-one", "step-three"),
worker.Fn(func(ctx worker.HatchetContext) (result *stepOutput, err error) {
step4Out := &stepOutput{}
ctx.StepOutput("step-four", step4Out)
time.Sleep(5 * time.Second)
return &stepOutput{
Message: "Step 5: has parent 4" + step4Out.Message,
}, nil
}).SetName("step-five").AddParents("step-four"),
},
},
)
if err != nil {
return fmt.Errorf("error registering workflow: %w", err)
}
interruptCtx, cancel := cmdutils.InterruptContextFromChan(ch)
defer cancel()
cleanup, err := w.Start()
if err != nil {
return fmt.Errorf("error starting worker: %w", err)
}
testEvent := userCreateEvent{
Username: "echo-test",
UserID: "1234",
Data: map[string]string{
"test": "test",
},
}
log.Printf("pushing event user:create:simple")
// push an event
err = c.Event().Push(
context.Background(),
"user:create:simple",
testEvent,
)
if err != nil {
return fmt.Errorf("error pushing event: %w", err)
}
for {
select {
case <-interruptCtx.Done():
return cleanup()
default:
time.Sleep(time.Second)
}
}
}