-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.go
235 lines (205 loc) · 6.15 KB
/
module.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
package fxgcppubsub
import (
"context"
"fmt"
"cloud.google.com/go/pubsub"
"cloud.google.com/go/pubsub/pstest"
"github.com/ankorstore/yokai-contrib/fxgcppubsub/codec"
"github.com/ankorstore/yokai-contrib/fxgcppubsub/reactor"
"github.com/ankorstore/yokai-contrib/fxgcppubsub/reactor/ack"
"github.com/ankorstore/yokai-contrib/fxgcppubsub/schema"
"github.com/ankorstore/yokai-contrib/fxgcppubsub/subscription"
"github.com/ankorstore/yokai-contrib/fxgcppubsub/topic"
"github.com/ankorstore/yokai/config"
"go.uber.org/fx"
"google.golang.org/api/option"
"google.golang.org/api/option/internaloption"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
)
// ModuleName is the module name.
const ModuleName = "gcppubsub"
// FxGcpPubSubModule is the [Fx] GCP pub/sub module.
//
// [Fx]: https://github.com/uber-go/fx
var FxGcpPubSubModule = fx.Module(
ModuleName,
fx.Provide(
NewFxGcpPubSubTestServer,
NewFxGcpPubSubClient,
NewFxGcpPubSubSchemaClient,
fx.Annotate(
ack.NewDefaultAckSupervisor,
fx.As(new(ack.AckSupervisor)),
),
fx.Annotate(
codec.NewDefaultCodecFactory,
fx.As(new(codec.CodecFactory)),
),
fx.Annotate(
schema.NewDefaultSchemaConfigRegistry,
fx.As(new(schema.SchemaConfigRegistry)),
),
fx.Annotate(
topic.NewDefaultTopicFactory,
fx.As(new(topic.TopicFactory)),
),
fx.Annotate(
topic.NewDefaultTopicRegistry,
fx.As(new(topic.TopicRegistry)),
),
fx.Annotate(
subscription.NewDefaultSubscriptionFactory,
fx.As(new(subscription.SubscriptionFactory)),
),
fx.Annotate(
subscription.NewDefaultSubscriptionRegistry,
fx.As(new(subscription.SubscriptionRegistry)),
),
fx.Annotate(
reactor.NewDefaultWaiterSupervisor,
fx.As(new(reactor.WaiterSupervisor)),
),
fx.Annotate(
NewFxGcpPubSubPublisher,
fx.As(new(Publisher)),
),
fx.Annotate(
NewFxGcpPubSubSubscriber,
fx.As(new(Subscriber)),
),
),
AsPubSubTestServerReactor(ack.NewAckReactor),
)
type FxGcpPubSubTestServerParam struct {
fx.In
Reactors []Reactor `group:"gcppubsub-reactors"`
}
// NewFxGcpPubSubTestServer returns a [pstest.Server].
func NewFxGcpPubSubTestServer(p FxGcpPubSubTestServerParam) *pstest.Server {
options := []pstest.ServerReactorOption{}
for _, r := range p.Reactors {
for _, fn := range r.FuncNames() {
options = append(options, pstest.ServerReactorOption{
FuncName: fn,
Reactor: r,
})
}
}
return pstest.NewServer(options...)
}
// FxGcpPubSubClientParam allows injection of the required dependencies in [NewFxGcpPubSubClient].
//
//nolint:containedctx
type FxGcpPubSubClientParam struct {
fx.In
LifeCycle fx.Lifecycle
Context context.Context
Config *config.Config
Server *pstest.Server
}
// NewFxGcpPubSubClient returns a [pubsub.Client].
func NewFxGcpPubSubClient(p FxGcpPubSubClientParam) (*pubsub.Client, error) {
projectID := p.Config.GetString("modules.gcppubsub.project.id")
if p.Config.IsTestEnv() {
client, err := pubsub.NewClient(
p.Context,
projectID,
option.WithEndpoint(p.Server.Addr),
option.WithoutAuthentication(),
option.WithGRPCDialOption(grpc.WithTransportCredentials(insecure.NewCredentials())),
)
if err != nil {
return nil, fmt.Errorf("failed to create test pubsub client: %w", err)
}
return client, nil
}
client, err := pubsub.NewClient(p.Context, projectID)
if err != nil {
return nil, fmt.Errorf("failed to create pubsub client: %w", err)
}
p.LifeCycle.Append(fx.Hook{
OnStop: func(context.Context) error {
return client.Close()
},
})
return client, nil
}
// FxGcpPubSubSchemaClientParam allows injection of the required dependencies in [NewFxGcpPubSubSchemaClient].
//
//nolint:containedctx
type FxGcpPubSubSchemaClientParam struct {
fx.In
LifeCycle fx.Lifecycle
Context context.Context
Config *config.Config
Server *pstest.Server
}
// NewFxGcpPubSubSchemaClient returns a [pubsub.SchemaClient].
func NewFxGcpPubSubSchemaClient(p FxGcpPubSubSchemaClientParam) (*pubsub.SchemaClient, error) {
projectID := p.Config.GetString("modules.gcppubsub.project.id")
if p.Config.IsTestEnv() {
client, err := pubsub.NewSchemaClient(
p.Context,
projectID,
option.WithEndpoint(p.Server.Addr),
option.WithoutAuthentication(),
option.WithGRPCDialOption(grpc.WithTransportCredentials(insecure.NewCredentials())),
)
if err != nil {
return nil, fmt.Errorf("failed to create test pubsub schema client: %w", err)
}
return client, nil
}
var schemaClientOptions []option.ClientOption
if emulatorHost := p.Config.GetEnvVar("PUBSUB_EMULATOR_HOST"); emulatorHost != "" {
schemaClientOptions = []option.ClientOption{
option.WithEndpoint(emulatorHost),
option.WithoutAuthentication(),
option.WithTelemetryDisabled(),
internaloption.SkipDialSettingsValidation(),
option.WithGRPCDialOption(grpc.WithTransportCredentials(insecure.NewCredentials())),
}
}
client, err := pubsub.NewSchemaClient(p.Context, projectID, schemaClientOptions...)
if err != nil {
return nil, fmt.Errorf("failed to create pubsub schema client: %w", err)
}
p.LifeCycle.Append(fx.Hook{
OnStop: func(context.Context) error {
return client.Close()
},
})
return client, nil
}
// FxGcpPubSubPublisherParam allows injection of the required dependencies in [NewFxGcpPubSubPublisher].
type FxGcpPubSubPublisherParam struct {
fx.In
LifeCycle fx.Lifecycle
Config *config.Config
Factory topic.TopicFactory
Registry topic.TopicRegistry
}
// NewFxGcpPubSubPublisher returns a [Publisher].
func NewFxGcpPubSubPublisher(p FxGcpPubSubPublisherParam) *DefaultPublisher {
publisher := NewDefaultPublisher(p.Factory, p.Registry)
if !p.Config.IsTestEnv() {
p.LifeCycle.Append(fx.Hook{
OnStop: func(context.Context) error {
publisher.Stop()
return nil
},
})
}
return publisher
}
// FxGcpPubSubSubscriberParam allows injection of the required dependencies in [NewFxGcpPubSubPublisher].
type FxGcpPubSubSubscriberParam struct {
fx.In
Factory subscription.SubscriptionFactory
Registry subscription.SubscriptionRegistry
}
// NewFxGcpPubSubSubscriber returns a [Subscriber].
func NewFxGcpPubSubSubscriber(p FxGcpPubSubSubscriberParam) *DefaultSubscriber {
return NewDefaultSubscriber(p.Factory, p.Registry)
}