-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
69 lines (58 loc) · 1.42 KB
/
main.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
package main
import (
"context"
"fmt"
"log"
"google.golang.org/api/iterator"
"google.golang.org/api/option"
"cloud.google.com/go/firestore"
)
func main() {
// [START fs_initialize]
// Sets your Google Cloud Platform project ID.
projectID := "serverless-devops-play"
// Get a Firestore client.
ctx := context.Background()
sa := option.WithCredentialsFile("/Users/stefan/.secret/serverless-devops-play-firestore-play.json")
client, err := firestore.NewClient(ctx, projectID, sa)
if err != nil {
log.Fatalf("Failed to create client: %v", err)
}
// Close client when done.
defer client.Close()
// [END fs_initialize]
// [START fs_add_data_1]
_, _, err = client.Collection("users").Add(ctx, map[string]interface{}{
"first": "Ada",
"last": "Lovelace",
"born": 1815,
})
if err != nil {
log.Fatalf("Failed adding alovelace: %v", err)
}
// [END fs_add_data_1]
// [START fs_add_data_2]
_, _, err = client.Collection("users").Add(ctx, map[string]interface{}{
"first": "Alan",
"middle": "Mathison",
"last": "Turing",
"born": 1912,
})
if err != nil {
log.Fatalf("Failed adding aturing: %v", err)
}
// [END fs_add_data_2]
// [START fs_get_all_users]
iter := client.Collection("users").Documents(ctx)
for {
doc, err := iter.Next()
if err == iterator.Done {
break
}
if err != nil {
log.Fatalf("Failed to iterate: %v", err)
}
fmt.Println(doc.Data())
}
// [END fs_get_all_users]
}