-
Notifications
You must be signed in to change notification settings - Fork 104
/
collectionsmgmtprovider_core.go
459 lines (388 loc) · 13.6 KB
/
collectionsmgmtprovider_core.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
package gocb
import (
"encoding/json"
"errors"
"fmt"
"io"
"net/url"
"strings"
"time"
gocbcore "github.com/couchbase/gocbcore/v10"
"github.com/google/uuid"
)
type collectionsManagementProviderCore struct {
mgmtProvider mgmtProvider
featureVerifier kvCapabilityVerifier
bucketName string
tracer *tracerWrapper
}
func (cm *collectionsManagementProviderCore) GetAllScopes(opts *GetAllScopesOptions) ([]ScopeSpec, error) {
path := fmt.Sprintf("/pools/default/buckets/%s/scopes", url.PathEscape(cm.bucketName))
span := cm.tracer.createSpan(opts.ParentSpan, "manager_collections_get_all_scopes", "management")
span.SetAttribute("db.name", cm.bucketName)
span.SetAttribute("db.operation", "GET "+path)
defer span.End()
req := mgmtRequest{
Service: ServiceTypeManagement,
Path: path,
Method: "GET",
RetryStrategy: opts.RetryStrategy,
IsIdempotent: true,
UniqueID: uuid.New().String(),
Timeout: opts.Timeout,
parentSpanCtx: span.Context(),
}
resp, err := cm.mgmtProvider.executeMgmtRequest(opts.Context, req)
if err != nil {
return nil, makeMgmtBadStatusError("failed to get all scopes", &req, resp)
}
defer ensureBodyClosed(resp.Body)
if resp.StatusCode != 200 {
colErr := cm.tryParseErrorMessage(&req, resp)
if colErr != nil {
return nil, colErr
}
return nil, makeMgmtBadStatusError("failed to get all scopes", &req, resp)
}
var scopes []ScopeSpec
var mfest gocbcore.Manifest
jsonDec := json.NewDecoder(resp.Body)
err = jsonDec.Decode(&mfest)
if err == nil {
for _, scope := range mfest.Scopes {
var collections []CollectionSpec
for _, col := range scope.Collections {
c := CollectionSpec{
Name: col.Name,
ScopeName: scope.Name,
MaxExpiry: time.Duration(col.MaxTTL) * time.Second,
}
if col.History != nil {
c.History = &CollectionHistorySettings{
Enabled: *col.History,
}
}
collections = append(collections, c)
}
scopes = append(scopes, ScopeSpec{
Name: scope.Name,
Collections: collections,
})
}
} else {
// Temporary support for older server version
var oldMfest jsonManifest
jsonDec := json.NewDecoder(resp.Body)
err = jsonDec.Decode(&oldMfest)
if err != nil {
return nil, err
}
for scopeName, scope := range oldMfest.Scopes {
var collections []CollectionSpec
for colName := range scope.Collections {
collections = append(collections, CollectionSpec{
Name: colName,
ScopeName: scopeName,
})
}
scopes = append(scopes, ScopeSpec{
Name: scopeName,
Collections: collections,
})
}
}
return scopes, nil
}
// CreateCollection creates a new collection on the bucket.
func (cm *collectionsManagementProviderCore) CreateCollection(scopeName string, collectionName string, settings *CreateCollectionSettings, opts *CreateCollectionOptions) error {
if collectionName == "" {
return makeInvalidArgumentsError("collection name cannot be empty")
}
if scopeName == "" {
return makeInvalidArgumentsError("scope name cannot be empty")
}
if settings == nil {
settings = &CreateCollectionSettings{}
}
if opts == nil {
opts = &CreateCollectionOptions{}
}
path := fmt.Sprintf("/pools/default/buckets/%s/scopes/%s/collections", url.PathEscape(cm.bucketName), url.PathEscape(scopeName))
span := cm.tracer.createSpan(opts.ParentSpan, "manager_collections_create_collection", "management")
span.SetAttribute("db.name", cm.bucketName)
span.SetAttribute("db.couchbase.scope", scopeName)
span.SetAttribute("db.couchbase.collection", collectionName)
span.SetAttribute("db.operation", "POST "+path)
defer span.End()
posts := url.Values{}
posts.Add("name", collectionName)
if settings.MaxExpiry != 0 {
posts.Add("maxTTL", fmt.Sprintf("%d", int(settings.MaxExpiry.Seconds())))
}
if settings.History != nil {
if cm.featureVerifier.BucketCapabilityStatus(gocbcore.BucketCapabilityNonDedupedHistory) == gocbcore.CapabilityStatusUnsupported {
return wrapError(ErrFeatureNotAvailable, "history retention is not supported - note that both server 7.2+ and Magma storage engine must be used")
}
posts.Add("history", fmt.Sprintf("%t", settings.History.Enabled))
}
eSpan := cm.tracer.createSpan(span, "request_encoding", "")
encoded := posts.Encode()
eSpan.End()
req := mgmtRequest{
Service: ServiceTypeManagement,
Path: path,
Method: "POST",
Body: []byte(encoded),
ContentType: "application/x-www-form-urlencoded",
RetryStrategy: opts.RetryStrategy,
UniqueID: uuid.New().String(),
Timeout: opts.Timeout,
parentSpanCtx: span.Context(),
}
resp, err := cm.mgmtProvider.executeMgmtRequest(opts.Context, req)
if err != nil {
return makeGenericMgmtError(err, &req, resp, "")
}
defer ensureBodyClosed(resp.Body)
if resp.StatusCode != 200 {
colErr := cm.tryParseErrorMessage(&req, resp)
if colErr != nil {
return colErr
}
return makeMgmtBadStatusError("failed to create collection", &req, resp)
}
err = resp.Body.Close()
if err != nil {
logDebugf("Failed to close socket (%s)", err)
}
return nil
}
// UpdateCollection creates a new collection on the bucket.
func (cm *collectionsManagementProviderCore) UpdateCollection(scopeName string, collectionName string, settings UpdateCollectionSettings, opts *UpdateCollectionOptions) error {
if collectionName == "" {
return makeInvalidArgumentsError("collection name cannot be empty")
}
if scopeName == "" {
return makeInvalidArgumentsError("scope name cannot be empty")
}
if opts == nil {
opts = &UpdateCollectionOptions{}
}
path := fmt.Sprintf("/pools/default/buckets/%s/scopes/%s/collections/%s", cm.bucketName, scopeName, collectionName)
span := cm.tracer.createSpan(opts.ParentSpan, "manager_collections_update_collection", "management")
span.SetAttribute("db.name", cm.bucketName)
span.SetAttribute("db.couchbase.scope", scopeName)
span.SetAttribute("db.couchbase.collection", collectionName)
span.SetAttribute("db.operation", "POST "+path)
defer span.End()
posts := url.Values{}
if settings.MaxExpiry != 0 {
posts.Add("maxTTL", fmt.Sprintf("%d", int(settings.MaxExpiry.Seconds())))
}
if settings.History != nil {
if cm.featureVerifier.BucketCapabilityStatus(gocbcore.BucketCapabilityNonDedupedHistory) == gocbcore.CapabilityStatusUnsupported {
return wrapError(ErrFeatureNotAvailable, "history retention is not supported - note that both server 7.2+ and Magma storage engine must be used")
}
posts.Add("history", fmt.Sprintf("%t", settings.History.Enabled))
}
eSpan := cm.tracer.createSpan(span, "request_encoding", "")
encoded := posts.Encode()
eSpan.End()
req := mgmtRequest{
Service: ServiceTypeManagement,
Path: path,
Method: "PATCH",
Body: []byte(encoded),
ContentType: "application/x-www-form-urlencoded",
RetryStrategy: opts.RetryStrategy,
UniqueID: uuid.New().String(),
Timeout: opts.Timeout,
parentSpanCtx: span.Context(),
}
resp, err := cm.mgmtProvider.executeMgmtRequest(opts.Context, req)
if err != nil {
return makeGenericMgmtError(err, &req, resp, "")
}
defer ensureBodyClosed(resp.Body)
if resp.StatusCode != 200 {
colErr := cm.tryParseErrorMessage(&req, resp)
if colErr != nil {
return colErr
}
return makeMgmtBadStatusError("failed to create collection", &req, resp)
}
err = resp.Body.Close()
if err != nil {
logDebugf("Failed to close socket (%s)", err)
}
return nil
}
// DropCollection removes a collection.
func (cm *collectionsManagementProviderCore) DropCollection(scopeName string, collectionName string, opts *DropCollectionOptions) error {
if collectionName == "" {
return makeInvalidArgumentsError("collection name cannot be empty")
}
if scopeName == "" {
return makeInvalidArgumentsError("scope name cannot be empty")
}
if opts == nil {
opts = &DropCollectionOptions{}
}
path := fmt.Sprintf("/pools/default/buckets/%s/scopes/%s/collections/%s", url.PathEscape(cm.bucketName), url.PathEscape(scopeName), url.PathEscape(collectionName))
span := cm.tracer.createSpan(opts.ParentSpan, "manager_collections_drop_collection", "management")
span.SetAttribute("db.name", cm.bucketName)
span.SetAttribute("db.couchbase.scope", scopeName)
span.SetAttribute("db.couchbase.collection", collectionName)
span.SetAttribute("db.operation", "DELETE "+path)
defer span.End()
req := mgmtRequest{
Service: ServiceTypeManagement,
Path: path,
Method: "DELETE",
RetryStrategy: opts.RetryStrategy,
UniqueID: uuid.New().String(),
Timeout: opts.Timeout,
parentSpanCtx: span.Context(),
}
resp, err := cm.mgmtProvider.executeMgmtRequest(opts.Context, req)
if err != nil {
return makeGenericMgmtError(err, &req, resp, "")
}
defer ensureBodyClosed(resp.Body)
if resp.StatusCode != 200 {
colErr := cm.tryParseErrorMessage(&req, resp)
if colErr != nil {
return colErr
}
return makeMgmtBadStatusError("failed to drop collection", &req, resp)
}
err = resp.Body.Close()
if err != nil {
logDebugf("Failed to close socket (%s)", err)
}
return nil
}
// CreateScope creates a new scope on the bucket.
func (cm *collectionsManagementProviderCore) CreateScope(scopeName string, opts *CreateScopeOptions) error {
if scopeName == "" {
return makeInvalidArgumentsError("scope name cannot be empty")
}
if opts == nil {
opts = &CreateScopeOptions{}
}
path := fmt.Sprintf("/pools/default/buckets/%s/scopes", url.PathEscape(cm.bucketName))
span := cm.tracer.createSpan(opts.ParentSpan, "manager_collections_create_scope", "management")
span.SetAttribute("db.name", cm.bucketName)
span.SetAttribute("db.couchbase.scope", scopeName)
span.SetAttribute("db.operation", "POST "+path)
defer span.End()
posts := url.Values{}
posts.Add("name", scopeName)
eSpan := cm.tracer.createSpan(span, "request_encoding", "")
encoded := posts.Encode()
eSpan.End()
req := mgmtRequest{
Service: ServiceTypeManagement,
Path: path,
Method: "POST",
Body: []byte(encoded),
ContentType: "application/x-www-form-urlencoded",
RetryStrategy: opts.RetryStrategy,
UniqueID: uuid.New().String(),
Timeout: opts.Timeout,
parentSpanCtx: span.Context(),
}
resp, err := cm.mgmtProvider.executeMgmtRequest(opts.Context, req)
if err != nil {
return makeGenericMgmtError(err, &req, resp, "")
}
defer ensureBodyClosed(resp.Body)
if resp.StatusCode != 200 {
colErr := cm.tryParseErrorMessage(&req, resp)
if colErr != nil {
return colErr
}
return makeMgmtBadStatusError("failed to create scope", &req, resp)
}
err = resp.Body.Close()
if err != nil {
logDebugf("Failed to close socket (%s)", err)
}
return nil
}
// DropScope removes a scope.
func (cm *collectionsManagementProviderCore) DropScope(scopeName string, opts *DropScopeOptions) error {
if opts == nil {
opts = &DropScopeOptions{}
}
path := fmt.Sprintf("/pools/default/buckets/%s/scopes/%s", url.PathEscape(cm.bucketName), url.PathEscape(scopeName))
span := cm.tracer.createSpan(opts.ParentSpan, "manager_collections_drop_scope", "management")
span.SetAttribute("db.name", cm.bucketName)
span.SetAttribute("db.couchbase.scope", scopeName)
span.SetAttribute("db.operation", "DELETE "+path)
defer span.End()
req := mgmtRequest{
Service: ServiceTypeManagement,
Path: path,
Method: "DELETE",
RetryStrategy: opts.RetryStrategy,
UniqueID: uuid.New().String(),
Timeout: opts.Timeout,
parentSpanCtx: span.Context(),
}
resp, err := cm.mgmtProvider.executeMgmtRequest(opts.Context, req)
if err != nil {
return makeGenericMgmtError(err, &req, resp, "")
}
defer ensureBodyClosed(resp.Body)
if resp.StatusCode != 200 {
colErr := cm.tryParseErrorMessage(&req, resp)
if colErr != nil {
return colErr
}
return makeMgmtBadStatusError("failed to drop scope", &req, resp)
}
err = resp.Body.Close()
if err != nil {
logDebugf("Failed to close socket (%s)", err)
}
return nil
}
func (cm *collectionsManagementProviderCore) tryParseErrorMessage(req *mgmtRequest, resp *mgmtResponse) error {
b, err := io.ReadAll(resp.Body)
if err != nil {
logDebugf("failed to read http body: %s", err)
return nil
}
errText := strings.ToLower(string(b))
if err := checkForRateLimitError(resp.StatusCode, errText); err != nil {
return makeGenericMgmtError(err, req, resp, string(b))
}
if strings.Contains(errText, "not found") && strings.Contains(errText, "collection") {
return makeGenericMgmtError(ErrCollectionNotFound, req, resp, string(b))
} else if strings.Contains(errText, "not found") && strings.Contains(errText, "scope") {
return makeGenericMgmtError(ErrScopeNotFound, req, resp, string(b))
}
if strings.Contains(errText, "already exists") && strings.Contains(errText, "collection") {
return makeGenericMgmtError(ErrCollectionExists, req, resp, string(b))
} else if strings.Contains(errText, "already exists") && strings.Contains(errText, "scope") {
return makeGenericMgmtError(ErrScopeExists, req, resp, string(b))
}
if resp.StatusCode == 400 {
return makeGenericMgmtError(ErrInvalidArgument, req, resp, string(b))
}
return makeGenericMgmtError(errors.New(errText), req, resp, string(b))
}
// These 3 types are temporary. They are necessary for now as the server beta was released with ns_server returning
// a different jsonManifest format to what it will return in the future.
type jsonManifest struct {
UID uint64 `json:"uid"`
Scopes map[string]jsonManifestScope `json:"scopes"`
}
type jsonManifestScope struct {
UID uint32 `json:"uid"`
Collections map[string]jsonManifestCollection `json:"collections"`
}
type jsonManifestCollection struct {
UID uint32 `json:"uid"`
}