forked from GoogleCloudPlatform/golang-samples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdb_datastore.go
138 lines (115 loc) · 3.63 KB
/
db_datastore.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
// Copyright 2015 Google Inc. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package bookshelf
import (
"fmt"
"golang.org/x/net/context"
"google.golang.org/cloud/datastore"
)
// datastoreDB persists books to Cloud Datastore.
// https://cloud.google.com/datastore/docs/concepts/overview
type datastoreDB struct {
client *datastore.Client
}
// Ensure datastoreDB conforms to the BookDatabase interface.
var _ BookDatabase = &datastoreDB{}
// newDatastoreDB creates a new BookDatabase backed by Cloud Datastore.
// See the datastore and google packages for details on creating a suitable Client:
// https://godoc.org/google.golang.org/cloud/datastore
func newDatastoreDB(client *datastore.Client) (BookDatabase, error) {
ctx := context.Background()
// Verify that we can communicate and authenticate with the datastore service.
t, err := client.NewTransaction(ctx)
if err != nil {
return nil, fmt.Errorf("datastoredb: could not connect: %v", err)
}
if err := t.Rollback(); err != nil {
return nil, fmt.Errorf("datastoredb: could not connect: %v", err)
}
return &datastoreDB{
client: client,
}, nil
}
// Close closes the database.
func (db *datastoreDB) Close() {
// No op.
}
func (db *datastoreDB) datastoreKey(id int64) *datastore.Key {
ctx := context.Background()
return datastore.NewKey(ctx, "Book", "", id, nil)
}
// GetBook retrieves a book by its ID.
func (db *datastoreDB) GetBook(id int64) (*Book, error) {
ctx := context.Background()
k := db.datastoreKey(id)
book := &Book{}
if err := db.client.Get(ctx, k, book); err != nil {
return nil, fmt.Errorf("datastoredb: could not get Book: %v", err)
}
book.ID = id
return book, nil
}
// AddBook saves a given book, assigning it a new ID.
func (db *datastoreDB) AddBook(b *Book) (id int64, err error) {
ctx := context.Background()
k := datastore.NewIncompleteKey(ctx, "Book", nil)
k, err = db.client.Put(ctx, k, b)
if err != nil {
return 0, fmt.Errorf("datastoredb: could not put Book: %v", err)
}
return k.ID(), nil
}
// DeleteBook removes a given book by its ID.
func (db *datastoreDB) DeleteBook(id int64) error {
ctx := context.Background()
k := db.datastoreKey(id)
if err := db.client.Delete(ctx, k); err != nil {
return fmt.Errorf("datastoredb: could not delete Book: %v", err)
}
return nil
}
// UpdateBook updates the entry for a given book.
func (db *datastoreDB) UpdateBook(b *Book) error {
ctx := context.Background()
k := db.datastoreKey(b.ID)
if _, err := db.client.Put(ctx, k, b); err != nil {
return fmt.Errorf("datastoredb: could not update Book: %v", err)
}
return nil
}
// ListBooks returns a list of books, ordered by title.
func (db *datastoreDB) ListBooks() ([]*Book, error) {
ctx := context.Background()
books := make([]*Book, 0)
q := datastore.NewQuery("Book").
Order("Title")
keys, err := db.client.GetAll(ctx, q, &books)
if err != nil {
return nil, fmt.Errorf("datastoredb: could not list books: %v", err)
}
for i, k := range keys {
books[i].ID = k.ID()
}
return books, nil
}
// ListBooksCreatedBy returns a list of books, ordered by title, filtered by
// the user who created the book entry.
func (db *datastoreDB) ListBooksCreatedBy(userID string) ([]*Book, error) {
ctx := context.Background()
if userID == "" {
return db.ListBooks()
}
books := make([]*Book, 0)
q := datastore.NewQuery("Book").
Filter("CreatedByID =", userID).
Order("Title")
keys, err := db.client.GetAll(ctx, q, &books)
if err != nil {
return nil, fmt.Errorf("datastoredb: could not list books: %v", err)
}
for i, k := range keys {
books[i].ID = k.ID()
}
return books, nil
}