-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathconnectors.go
221 lines (196 loc) · 5.89 KB
/
connectors.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
// Copyright © 2022 Meroxa, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package orchestrator
import (
"context"
"github.com/conduitio/conduit/pkg/connector"
"github.com/conduitio/conduit/pkg/foundation/cerrors"
"github.com/conduitio/conduit/pkg/foundation/rollback"
"github.com/conduitio/conduit/pkg/inspector"
"github.com/conduitio/conduit/pkg/pipeline"
"github.com/google/uuid"
)
type ConnectorOrchestrator base
func (c *ConnectorOrchestrator) Inspect(ctx context.Context, id string) (*inspector.Session, error) {
conn, err := c.Get(ctx, id)
if err != nil {
return nil, err
}
return conn.Inspect(ctx), nil
}
func (c *ConnectorOrchestrator) Create(
ctx context.Context,
t connector.Type,
plugin string,
pipelineID string,
config connector.Config,
) (*connector.Instance, error) {
var r rollback.R
defer r.MustExecute()
txn, ctx, err := c.db.NewTransaction(ctx, true)
if err != nil {
return nil, cerrors.Errorf("could not create db transaction: %w", err)
}
r.AppendPure(txn.Discard)
// TODO lock pipeline
pl, err := c.pipelines.Get(ctx, pipelineID)
if err != nil {
return nil, cerrors.Errorf("couldn't get pipeline: %w", err)
}
if pl.ProvisionedBy != pipeline.ProvisionTypeAPI {
return nil, cerrors.Errorf("cannot add a connector to the pipeline %q: %w", pl.ID, ErrImmutableProvisionedByConfig)
}
if pl.Status == pipeline.StatusRunning {
return nil, cerrors.Errorf("cannot create connector: %w", pipeline.ErrPipelineRunning)
}
err = c.Validate(ctx, t, plugin, config)
if err != nil {
return nil, err
}
conn, err := c.connectors.Create(ctx, uuid.NewString(), t, plugin, pl.ID, config, connector.ProvisionTypeAPI)
if err != nil {
return nil, err
}
r.Append(func() error { return c.connectors.Delete(ctx, conn.ID, c.plugins) })
_, err = c.pipelines.AddConnector(ctx, pl.ID, conn.ID)
if err != nil {
return nil, cerrors.Errorf("couldn't add connector %v to pipeline %v: %w", conn.ID, pl.ID, err)
}
r.Append(func() error {
_, err := c.pipelines.RemoveConnector(ctx, pl.ID, conn.ID)
return err
})
err = txn.Commit()
if err != nil {
return nil, cerrors.Errorf("could not commit db transaction: %w", err)
}
r.Skip()
return conn, nil
}
func (c *ConnectorOrchestrator) List(ctx context.Context) map[string]*connector.Instance {
return c.connectors.List(ctx)
}
func (c *ConnectorOrchestrator) Get(ctx context.Context, id string) (*connector.Instance, error) {
return c.connectors.Get(ctx, id)
}
func (c *ConnectorOrchestrator) Delete(ctx context.Context, id string) error {
var r rollback.R
defer r.MustExecute()
txn, ctx, err := c.db.NewTransaction(ctx, true)
if err != nil {
return cerrors.Errorf("could not create db transaction: %w", err)
}
r.AppendPure(txn.Discard)
conn, err := c.connectors.Get(ctx, id)
if err != nil {
return err
}
if conn.ProvisionedBy != connector.ProvisionTypeAPI {
return cerrors.Errorf("connector %q cannot be deleted: %w", conn.ID, ErrImmutableProvisionedByConfig)
}
if len(conn.ProcessorIDs) != 0 {
return ErrConnectorHasProcessorsAttached
}
pl, err := c.pipelines.Get(ctx, conn.PipelineID)
if err != nil {
return err
}
if pl.Status == pipeline.StatusRunning {
return pipeline.ErrPipelineRunning
}
err = c.connectors.Delete(ctx, id, c.plugins)
if err != nil {
return err
}
r.Append(func() error {
_, err = c.connectors.Create(ctx, id, conn.Type, conn.Plugin, conn.PipelineID, conn.Config, conn.ProvisionedBy)
return err
})
_, err = c.pipelines.RemoveConnector(ctx, pl.ID, id)
if err != nil {
return err
}
r.Append(func() error {
_, err := c.pipelines.AddConnector(ctx, pl.ID, id)
return err
})
err = txn.Commit()
if err != nil {
return cerrors.Errorf("could not commit db transaction: %w", err)
}
r.Skip()
return nil
}
func (c *ConnectorOrchestrator) Update(ctx context.Context, id string, config connector.Config) (*connector.Instance, error) {
var r rollback.R
defer r.MustExecute()
txn, ctx, err := c.db.NewTransaction(ctx, true)
if err != nil {
return nil, cerrors.Errorf("could not create db transaction: %w", err)
}
r.AppendPure(txn.Discard)
conn, err := c.connectors.Get(ctx, id)
if err != nil {
return nil, err
}
if conn.ProvisionedBy != connector.ProvisionTypeAPI {
return nil, cerrors.Errorf("connector %q cannot be updated: %w", conn.ID, ErrImmutableProvisionedByConfig)
}
pl, err := c.pipelines.Get(ctx, conn.PipelineID)
if err != nil {
return nil, err
}
if pl.Status == pipeline.StatusRunning {
return nil, pipeline.ErrPipelineRunning
}
err = c.Validate(ctx, conn.Type, conn.Plugin, config)
if err != nil {
return nil, err
}
oldConfig := conn.Config
conn, err = c.connectors.Update(ctx, id, config)
if err != nil {
return nil, err
}
r.Append(func() error {
_, err = c.connectors.Update(ctx, id, oldConfig)
return err
})
err = txn.Commit()
if err != nil {
return nil, cerrors.Errorf("could not commit db transaction: %w", err)
}
r.Skip()
return conn, nil
}
func (c *ConnectorOrchestrator) Validate(
ctx context.Context,
t connector.Type,
plugin string,
config connector.Config,
) error {
var err error
switch t {
case connector.TypeSource:
err = c.plugins.ValidateSourceConfig(ctx, plugin, config.Settings)
case connector.TypeDestination:
err = c.plugins.ValidateDestinationConfig(ctx, plugin, config.Settings)
default:
return cerrors.New("invalid connector type")
}
if err != nil {
return cerrors.Errorf("invalid connector config: %w", err)
}
return nil
}