-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuego.go
72 lines (58 loc) · 1.97 KB
/
fuego.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
package fuego
import (
"context"
"strings"
"cloud.google.com/go/firestore"
"github.com/remychantenay/fuego/collection"
"github.com/remychantenay/fuego/document"
)
// Fuego is a wrapper for the Firestore client.
// Contains the Firestore client.
type Fuego struct {
// FirestoreClient is a ptr to a firestore client.
FirestoreClient *firestore.Client
// WriteBatch is a ptr to a writebatch.
// will be nil if not started with StartBatch() or cancelled with CancelBatch().
WriteBatch *firestore.WriteBatch
}
// New creates and returns a Fuego wrapper.
func New(fs *firestore.Client) *Fuego {
return &Fuego{
FirestoreClient: fs,
WriteBatch: nil,
}
}
// StartBatch starts a write batch.
// Write operations that follow will be added to the batch and processed when CommitBatch is called.
func (f *Fuego) StartBatch() {
f.WriteBatch = f.FirestoreClient.Batch()
}
// CommitBatch commits the write batch previously started with StartBatch().
func (f *Fuego) CommitBatch(ctx context.Context) ([]*firestore.WriteResult, error) {
if f.WriteBatch == nil {
return nil, ErrBatchWriteNotStarted
}
return f.WriteBatch.Commit(ctx)
}
// CancelBatch cancels an on-going write batch (if any).
func (f *Fuego) CancelBatch() {
f.WriteBatch = nil
}
// Document returns a new FirestoreDocument.
func (f *Fuego) Document(path, documentID string) *document.FirestoreDocument {
return document.New(f.FirestoreClient, cleanPath(path), documentID, f.WriteBatch)
}
// DocumentWithGeneratedID returns a new FirestoreDocument without ID.
func (f *Fuego) DocumentWithGeneratedID(path string) *document.FirestoreDocument {
return f.Document(path, "")
}
// Collection returns a new FirestoreCollection.
func (f *Fuego) Collection(path string) *collection.FirestoreCollection {
return collection.New(f.FirestoreClient, cleanPath(path))
}
// cleanPath cleans and returns a given path.
func cleanPath(path string) string {
path = strings.TrimPrefix(path, "/")
path = strings.TrimSuffix(path, "/")
return path
}