-
Notifications
You must be signed in to change notification settings - Fork 0
/
collection.go
469 lines (380 loc) · 10.7 KB
/
collection.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
460
461
462
463
464
465
466
467
468
469
package firevault
import (
"context"
"errors"
"strings"
"sync"
"cloud.google.com/go/firestore"
"cloud.google.com/go/firestore/apiv1/firestorepb"
"google.golang.org/api/iterator"
)
// A Firevault CollectionRef holds a reference to a
// Firestore Collection and allows for the fetching and
// modifying (with validation) of documents in it.
//
// CollectionRef instances are lightweight and safe to
// create repeatedly. They can be freely used as needed,
// without concern for maintaining a singleton instance,
// as each instance independently references the
// specified Firestore collection.
type CollectionRef[T interface{}] struct {
connection *Connection
ref *firestore.CollectionRef
}
// A Firevault Document holds the ID and data related to
// fetched document.
type Document[T interface{}] struct {
ID string
Data T
}
// Create a new CollectionRef instance.
//
// A Firevault CollectionRef holds a reference to a
// Firestore Collection and allows for the fetching and
// modifying (with validation) of documents in it.
//
// CollectionRef instances are lightweight and safe to
// create repeatedly. They can be freely used as needed,
// without concern for maintaining a singleton instance,
// as each instance independently references the
// specified Firestore collection.
//
// The path argument is a sequence of IDs,
// separated by slashes.
//
// Returns nil if path contains an even number of IDs,
// or any ID is empty.
func Collection[T interface{}](connection *Connection, path string) *CollectionRef[T] {
if connection == nil || connection.client == nil {
return nil
}
collectionRef := connection.client.Collection(path)
if collectionRef == nil {
return nil
}
return &CollectionRef[T]{connection, collectionRef}
}
// Validate and transform provided data.
func (c *CollectionRef[T]) Validate(ctx context.Context, data *T, opts ...Options) error {
if c == nil {
return errors.New("firevault: nil CollectionRef")
}
valOptions, _, _ := c.parseOptions(validate, opts...)
_, err := c.connection.validator.validate(ctx, data, valOptions)
return err
}
// Create a Firestore document with provided data
// (after validation).
func (c *CollectionRef[T]) Create(ctx context.Context, data *T, opts ...Options) (string, error) {
if c == nil {
return "", errors.New("firevault: nil CollectionRef")
}
valOptions, id, _ := c.parseOptions(create, opts...)
dataMap, err := c.connection.validator.validate(ctx, data, valOptions)
if err != nil {
return "", err
}
if id == "" {
docRef, _, err := c.ref.Add(ctx, dataMap)
if err != nil {
return "", err
}
id = docRef.ID
} else {
_, err = c.ref.Doc(id).Set(ctx, dataMap)
if err != nil {
return "", err
}
}
return id, nil
}
// Update all Firestore documents which match
// provided Query (after data validation).
//
// If Query contains an ID clause and no documents
// are matched, a new document will be created
// for each provided ID.
//
// The operation is not atomic.
func (c *CollectionRef[T]) Update(ctx context.Context, query Query, data *T, opts ...Options) error {
if c == nil {
return errors.New("firevault: nil CollectionRef")
}
valOptions, _, mergeFields := c.parseOptions(update, opts...)
dataMap, err := c.connection.validator.validate(ctx, data, valOptions)
if err != nil {
return err
}
if len(opts) > 0 {
// delete all mergeFields which are empty (i.e. not present in dataMap)
c.deleteEmptyMergeFields(dataMap, opts[0].mergeFields)
}
return c.bulkOperation(ctx, query, func(bw *firestore.BulkWriter, docID string) error {
_, err := bw.Set(c.ref.Doc(docID), dataMap, mergeFields)
return err
})
}
// Delete all Firestore documents which match
// provided Query.
//
// The operation is not atomic.
func (c *CollectionRef[T]) Delete(ctx context.Context, query Query) error {
if c == nil {
return errors.New("firevault: nil CollectionRef")
}
return c.bulkOperation(ctx, query, func(bw *firestore.BulkWriter, docID string) error {
_, err := bw.Delete(c.ref.Doc(docID))
return err
})
}
// Find all Firestore documents which match
// provided Query.
func (c *CollectionRef[T]) Find(ctx context.Context, query Query) ([]Document[T], error) {
if c == nil {
return nil, errors.New("firevault: nil CollectionRef")
}
if len(query.ids) > 0 {
return c.fetchDocsByID(ctx, query.ids)
}
return c.fetchDocsByQuery(ctx, query)
}
// Find the first Firestore document which
// matches provided Query.
//
// Returns an empty Document[T] (empty ID
// string and zero-value T Data), and no error
// if no documents are found.
func (c *CollectionRef[T]) FindOne(ctx context.Context, query Query) (Document[T], error) {
if c == nil {
return Document[T]{}, errors.New("firevault: nil CollectionRef")
}
if len(query.ids) > 0 {
docs, err := c.fetchDocsByID(ctx, query.ids[0:1])
if err != nil {
return Document[T]{}, err
}
if len(docs) == 0 {
return Document[T]{}, nil
}
return docs[0], nil
}
docs, err := c.fetchDocsByQuery(ctx, query.Limit(1))
if err != nil {
return Document[T]{}, err
}
if len(docs) == 0 {
return Document[T]{}, nil
}
return docs[0], nil
}
// Find number of Firestore documents which
// match provided Query.
func (c *CollectionRef[T]) Count(ctx context.Context, query Query) (int64, error) {
if c == nil {
return 0, errors.New("firevault: nil CollectionRef")
}
if len(query.ids) > 0 {
return int64(len(query.ids)), nil
}
builtQuery := c.buildQuery(query)
results, err := builtQuery.NewAggregationQuery().WithCount("all").Get(ctx)
if err != nil {
return 0, err
}
count, ok := results["all"]
if !ok {
return 0, errors.New("firestore: couldn't get alias for COUNT from results")
}
countValue := count.(*firestorepb.Value)
countInt := countValue.GetIntegerValue()
return countInt, nil
}
// extract passed options
func (c *CollectionRef[T]) parseOptions(
method methodType,
opts ...Options,
) (validationOpts, string, firestore.SetOption) {
options := validationOpts{
method: method,
skipValidation: false,
emptyFieldsAllowed: make([]string, 0),
}
if len(opts) == 0 {
return options, "", firestore.MergeAll
}
// parse options
passedOpts := opts[0]
if passedOpts.skipValidation {
options.skipValidation = true
}
if len(passedOpts.allowEmptyFields) > 0 {
options.emptyFieldsAllowed = passedOpts.allowEmptyFields
}
if method == update && len(passedOpts.mergeFields) > 0 {
fps := make([]firestore.FieldPath, 0)
for i := 0; i < len(passedOpts.mergeFields); i++ {
fp := firestore.FieldPath(strings.Split(passedOpts.mergeFields[i], "."))
fps = append(fps, fp)
}
return options, passedOpts.id, firestore.Merge(fps...)
}
return options, passedOpts.id, firestore.MergeAll
}
// delete any fields which are not present in map and are specified in mergeFields opt
func (c *CollectionRef[T]) deleteEmptyMergeFields(
dataMap map[string]interface{},
mergeFields []string,
) {
for _, path := range mergeFields {
fields := strings.Split(path, ".")
current := dataMap
exists := true
// check if the complete path exists
for _, field := range fields {
if m, ok := current[field].(map[string]interface{}); ok {
current = m
} else if current[field] != nil && field == fields[len(fields)-1] {
// skip if last field exists (with any value)
continue
} else {
exists = false
break
}
}
// skip if complete path already exists
if exists {
continue
}
// reset current to start creating the path
current = dataMap
// create the nested structure
for i := 0; i < len(fields)-1; i++ {
if _, exists := current[fields[i]]; !exists {
current[fields[i]] = make(map[string]interface{})
}
current = current[fields[i]].(map[string]interface{})
}
// set the last field to 'delete'
if len(fields) > 0 {
current[fields[len(fields)-1]] = firestore.Delete
}
}
}
// build a new firestore query
func (c *CollectionRef[T]) buildQuery(query Query) firestore.Query {
newQuery := c.ref.Query
for _, filter := range query.filters {
newQuery = newQuery.Where(filter.path, filter.operator, filter.value)
}
for _, order := range query.orders {
newQuery = newQuery.OrderBy(order.path, firestore.Direction(order.direction))
}
if len(query.startAt) > 0 {
newQuery = newQuery.StartAt(query.startAt...)
}
if len(query.startAfter) > 0 {
newQuery = newQuery.StartAfter(query.startAfter...)
}
if len(query.endBefore) > 0 {
newQuery = newQuery.EndBefore(query.endBefore...)
}
if len(query.endAt) > 0 {
newQuery = newQuery.EndAt(query.endAt...)
}
if query.limit > 0 {
newQuery = newQuery.Limit(query.limit)
}
if query.limitToLast > 0 {
newQuery = newQuery.LimitToLast(query.limitToLast)
}
if query.offset > 0 {
newQuery = newQuery.Offset(query.offset)
}
return newQuery
}
// perform a bulk operation
func (c *CollectionRef[T]) bulkOperation(
ctx context.Context,
query Query,
operation func(*firestore.BulkWriter, string) error,
) error {
bulkWriter := c.connection.client.BulkWriter(ctx)
defer bulkWriter.End()
var mu sync.Mutex
var errs []error
docIDs := query.ids
if len(docIDs) == 0 {
docs, err := c.Find(ctx, query)
if err != nil {
return err
}
for _, doc := range docs {
docIDs = append(docIDs, doc.ID)
}
}
for _, docID := range docIDs {
err := operation(bulkWriter, docID)
if err != nil {
mu.Lock()
errs = append(errs, errors.New(err.Error()+" (docID: "+docID+")"))
mu.Unlock()
}
}
// wait for all operations to complete
bulkWriter.Flush()
return errors.Join(errs...)
}
// fetch documents based on provided ids
func (c *CollectionRef[T]) fetchDocsByID(ctx context.Context, ids []string) ([]Document[T], error) {
const batchSize = 100
var docRefs []*firestore.DocumentRef
var docs []Document[T]
for _, docID := range ids {
docRefs = append(docRefs, c.ref.Doc(docID))
}
for i := 0; i < len(docRefs); i += batchSize {
end := i + batchSize
if end > len(docRefs) {
end = len(docRefs)
}
batchRefs := docRefs[i:end]
snapshots, err := c.connection.client.GetAll(ctx, batchRefs)
if err != nil {
return nil, err
}
for _, docSnap := range snapshots {
if !docSnap.Exists() {
continue
}
var doc T
err = docSnap.DataTo(&doc)
if err != nil {
return nil, err
}
docs = append(docs, Document[T]{docSnap.Ref.ID, doc})
}
}
return docs, nil
}
// fetch documents based on provided Query
func (c *CollectionRef[T]) fetchDocsByQuery(ctx context.Context, query Query) ([]Document[T], error) {
builtQuery := c.buildQuery(query)
iter := builtQuery.Documents(ctx)
var docs []Document[T]
for {
docSnap, err := iter.Next()
if err == iterator.Done {
break
}
if err != nil {
return nil, err
}
var doc T
err = docSnap.DataTo(&doc)
if err != nil {
return nil, err
}
docs = append(docs, Document[T]{docSnap.Ref.ID, doc})
}
return docs, nil
}