2017-10-22 08:07:36 +00:00
|
|
|
|
// Copyright 2017 Google Inc. All Rights Reserved.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
|
|
package firestore
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"errors"
|
2018-01-23 18:40:42 +00:00
|
|
|
|
"fmt"
|
2017-10-22 08:07:36 +00:00
|
|
|
|
"reflect"
|
|
|
|
|
"sort"
|
|
|
|
|
|
|
|
|
|
"golang.org/x/net/context"
|
|
|
|
|
"google.golang.org/api/iterator"
|
|
|
|
|
|
|
|
|
|
vkit "cloud.google.com/go/firestore/apiv1beta1"
|
|
|
|
|
pb "google.golang.org/genproto/googleapis/firestore/v1beta1"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var errNilDocRef = errors.New("firestore: nil DocumentRef")
|
|
|
|
|
|
|
|
|
|
// A DocumentRef is a reference to a Firestore document.
|
|
|
|
|
type DocumentRef struct {
|
|
|
|
|
// The CollectionRef that this document is a part of. Never nil.
|
|
|
|
|
Parent *CollectionRef
|
|
|
|
|
|
|
|
|
|
// The full resource path of the document: "projects/P/databases/D/documents..."
|
|
|
|
|
Path string
|
|
|
|
|
|
|
|
|
|
// The ID of the document: the last component of the resource path.
|
|
|
|
|
ID string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func newDocRef(parent *CollectionRef, id string) *DocumentRef {
|
|
|
|
|
return &DocumentRef{
|
|
|
|
|
Parent: parent,
|
|
|
|
|
ID: id,
|
|
|
|
|
Path: parent.Path + "/" + id,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Collection returns a reference to sub-collection of this document.
|
|
|
|
|
func (d *DocumentRef) Collection(id string) *CollectionRef {
|
|
|
|
|
return newCollRefWithParent(d.Parent.c, d, id)
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// Get retrieves the document. It returns a NotFound error if the document does not exist.
|
|
|
|
|
// You can test for NotFound with
|
|
|
|
|
// grpc.Code(err) == codes.NotFound
|
2017-10-22 08:07:36 +00:00
|
|
|
|
func (d *DocumentRef) Get(ctx context.Context) (*DocumentSnapshot, error) {
|
|
|
|
|
if err := checkTransaction(ctx); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
if d == nil {
|
|
|
|
|
return nil, errNilDocRef
|
|
|
|
|
}
|
|
|
|
|
doc, err := d.Parent.c.c.GetDocument(withResourceHeader(ctx, d.Parent.c.path()),
|
|
|
|
|
&pb.GetDocumentRequest{Name: d.Path})
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
return newDocumentSnapshot(d, doc, d.Parent.c)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Create creates the document with the given data.
|
|
|
|
|
// It returns an error if a document with the same ID already exists.
|
|
|
|
|
//
|
|
|
|
|
// The data argument can be a map with string keys, a struct, or a pointer to a
|
|
|
|
|
// struct. The map keys or exported struct fields become the fields of the firestore
|
|
|
|
|
// document.
|
|
|
|
|
// The values of data are converted to Firestore values as follows:
|
|
|
|
|
//
|
|
|
|
|
// - bool converts to Bool.
|
|
|
|
|
// - string converts to String.
|
|
|
|
|
// - int, int8, int16, int32 and int64 convert to Integer.
|
|
|
|
|
// - uint8, uint16 and uint32 convert to Integer. uint64 is disallowed,
|
|
|
|
|
// because it can represent values that cannot be represented in an int64, which
|
|
|
|
|
// is the underlying type of a Integer.
|
|
|
|
|
// - float32 and float64 convert to Double.
|
|
|
|
|
// - []byte converts to Bytes.
|
|
|
|
|
// - time.Time converts to Timestamp.
|
|
|
|
|
// - latlng.LatLng converts to GeoPoint. latlng is the package
|
|
|
|
|
// "google.golang.org/genproto/googleapis/type/latlng".
|
|
|
|
|
// - Slices convert to Array.
|
|
|
|
|
// - Maps and structs convert to Map.
|
|
|
|
|
// - nils of any type convert to Null.
|
|
|
|
|
//
|
|
|
|
|
// Pointers and interface{} are also permitted, and their elements processed
|
|
|
|
|
// recursively.
|
|
|
|
|
//
|
|
|
|
|
// Struct fields can have tags like those used by the encoding/json package. Tags
|
|
|
|
|
// begin with "firestore:" and are followed by "-", meaning "ignore this field," or
|
|
|
|
|
// an alternative name for the field. Following the name, these comma-separated
|
|
|
|
|
// options may be provided:
|
|
|
|
|
//
|
|
|
|
|
// - omitempty: Do not encode this field if it is empty. A value is empty
|
|
|
|
|
// if it is a zero value, or an array, slice or map of length zero.
|
|
|
|
|
// - serverTimestamp: The field must be of type time.Time. When writing, if
|
|
|
|
|
// the field has the zero value, the server will populate the stored document with
|
|
|
|
|
// the time that the request is processed.
|
|
|
|
|
func (d *DocumentRef) Create(ctx context.Context, data interface{}) (*WriteResult, error) {
|
2018-01-23 18:40:42 +00:00
|
|
|
|
ws, err := d.newCreateWrites(data)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
return d.Parent.c.commit1(ctx, ws)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
func (d *DocumentRef) newCreateWrites(data interface{}) ([]*pb.Write, error) {
|
|
|
|
|
if d == nil {
|
|
|
|
|
return nil, errNilDocRef
|
|
|
|
|
}
|
|
|
|
|
doc, serverTimestampPaths, err := toProtoDocument(data)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
doc.Name = d.Path
|
|
|
|
|
pc, err := exists(false).preconditionProto()
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
return d.newUpdateWithTransform(doc, nil, pc, serverTimestampPaths, false), nil
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// Set creates or overwrites the document with the given data. See DocumentRef.Create
|
|
|
|
|
// for the acceptable values of data. Without options, Set overwrites the document
|
|
|
|
|
// completely. Specify one of the Merge options to preserve an existing document's
|
|
|
|
|
// fields.
|
|
|
|
|
func (d *DocumentRef) Set(ctx context.Context, data interface{}, opts ...SetOption) (*WriteResult, error) {
|
|
|
|
|
ws, err := d.newSetWrites(data, opts)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
return d.Parent.c.commit1(ctx, ws)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
func (d *DocumentRef) newSetWrites(data interface{}, opts []SetOption) ([]*pb.Write, error) {
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if d == nil {
|
|
|
|
|
return nil, errNilDocRef
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
if data == nil {
|
|
|
|
|
return nil, errors.New("firestore: nil document contents")
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
if len(opts) == 0 { // Set without merge
|
|
|
|
|
doc, serverTimestampPaths, err := toProtoDocument(data)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
doc.Name = d.Path
|
|
|
|
|
return d.newUpdateWithTransform(doc, nil, nil, serverTimestampPaths, true), nil
|
|
|
|
|
}
|
|
|
|
|
// Set with merge.
|
|
|
|
|
// This is just like Update, except for the existence precondition.
|
|
|
|
|
// So we turn data into a list of (FieldPath, interface{}) pairs (fpv's), as we do
|
|
|
|
|
// for Update.
|
|
|
|
|
fieldPaths, allPaths, err := processSetOptions(opts)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
var fpvs []fpv
|
|
|
|
|
v := reflect.ValueOf(data)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if allPaths {
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// Set with MergeAll. Collect all the leaves of the map.
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if v.Kind() != reflect.Map {
|
|
|
|
|
return nil, errors.New("firestore: MergeAll can only be specified with map data")
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
fpvsFromData(v, nil, &fpvs)
|
|
|
|
|
} else {
|
|
|
|
|
// Set with merge paths. Collect only the values at the given paths.
|
2017-10-22 08:07:36 +00:00
|
|
|
|
for _, fp := range fieldPaths {
|
2018-01-23 18:40:42 +00:00
|
|
|
|
val, err := getAtPath(v, fp)
|
|
|
|
|
if err != nil {
|
2017-10-22 08:07:36 +00:00
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
fpvs = append(fpvs, fpv{fp, val})
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
return d.fpvsToWrites(fpvs, nil)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// fpvsFromData converts v into a list of (FieldPath, value) pairs.
|
|
|
|
|
func fpvsFromData(v reflect.Value, prefix FieldPath, fpvs *[]fpv) {
|
2017-10-22 08:07:36 +00:00
|
|
|
|
switch v.Kind() {
|
|
|
|
|
case reflect.Map:
|
2018-01-23 18:40:42 +00:00
|
|
|
|
for _, k := range v.MapKeys() {
|
|
|
|
|
fpvsFromData(v.MapIndex(k), prefix.with(k.String()), fpvs)
|
|
|
|
|
}
|
2017-10-22 08:07:36 +00:00
|
|
|
|
case reflect.Interface:
|
2018-01-23 18:40:42 +00:00
|
|
|
|
fpvsFromData(v.Elem(), prefix, fpvs)
|
|
|
|
|
|
2017-10-22 08:07:36 +00:00
|
|
|
|
default:
|
2018-01-23 18:40:42 +00:00
|
|
|
|
var val interface{}
|
|
|
|
|
if v.IsValid() {
|
|
|
|
|
val = v.Interface()
|
|
|
|
|
}
|
|
|
|
|
*fpvs = append(*fpvs, fpv{prefix, val})
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// removePathsIf creates a new slice of FieldPaths that contains
|
|
|
|
|
// exactly those elements of fps for which pred returns false.
|
|
|
|
|
func removePathsIf(fps []FieldPath, pred func(FieldPath) bool) []FieldPath {
|
|
|
|
|
var result []FieldPath
|
|
|
|
|
for _, fp := range fps {
|
|
|
|
|
if !pred(fp) {
|
|
|
|
|
result = append(result, fp)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// Delete deletes the document. If the document doesn't exist, it does nothing
|
|
|
|
|
// and returns no error.
|
|
|
|
|
func (d *DocumentRef) Delete(ctx context.Context, preconds ...Precondition) (*WriteResult, error) {
|
|
|
|
|
ws, err := d.newDeleteWrites(preconds)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
return d.Parent.c.commit1(ctx, ws)
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-22 08:07:36 +00:00
|
|
|
|
func (d *DocumentRef) newDeleteWrites(preconds []Precondition) ([]*pb.Write, error) {
|
|
|
|
|
if d == nil {
|
|
|
|
|
return nil, errNilDocRef
|
|
|
|
|
}
|
|
|
|
|
pc, err := processPreconditionsForDelete(preconds)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
return []*pb.Write{{
|
|
|
|
|
Operation: &pb.Write_Delete{d.Path},
|
|
|
|
|
CurrentDocument: pc,
|
|
|
|
|
}}, nil
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
func (d *DocumentRef) newUpdatePathWrites(updates []Update, preconds []Precondition) ([]*pb.Write, error) {
|
|
|
|
|
if len(updates) == 0 {
|
|
|
|
|
return nil, errors.New("firestore: no paths to update")
|
|
|
|
|
}
|
|
|
|
|
var fpvs []fpv
|
|
|
|
|
for _, u := range updates {
|
|
|
|
|
v, err := u.process()
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
fpvs = append(fpvs, v)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
pc, err := processPreconditionsForUpdate(preconds)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
return d.fpvsToWrites(fpvs, pc)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
func (d *DocumentRef) fpvsToWrites(fpvs []fpv, pc *pb.Precondition) ([]*pb.Write, error) {
|
|
|
|
|
// Make sure there are no duplications or prefixes among the field paths.
|
2017-10-22 08:07:36 +00:00
|
|
|
|
var fps []FieldPath
|
2018-01-23 18:40:42 +00:00
|
|
|
|
for _, fpv := range fpvs {
|
|
|
|
|
fps = append(fps, fpv.fieldPath)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
if err := checkNoDupOrPrefix(fps); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// Process each fpv.
|
|
|
|
|
var updatePaths, transformPaths []FieldPath
|
|
|
|
|
doc := &pb.Document{
|
|
|
|
|
Name: d.Path,
|
|
|
|
|
Fields: map[string]*pb.Value{},
|
|
|
|
|
}
|
|
|
|
|
for _, fpv := range fpvs {
|
|
|
|
|
switch fpv.value {
|
|
|
|
|
case Delete:
|
|
|
|
|
// Send the field path without a corresponding value.
|
|
|
|
|
updatePaths = append(updatePaths, fpv.fieldPath)
|
|
|
|
|
|
|
|
|
|
case ServerTimestamp:
|
|
|
|
|
// Use the path in a transform operation.
|
|
|
|
|
transformPaths = append(transformPaths, fpv.fieldPath)
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
updatePaths = append(updatePaths, fpv.fieldPath)
|
|
|
|
|
// Convert the value to a proto and put it into the document.
|
|
|
|
|
v := reflect.ValueOf(fpv.value)
|
|
|
|
|
pv, sawServerTimestamp, err := toProtoValue(v)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
setAtPath(doc.Fields, fpv.fieldPath, pv)
|
|
|
|
|
// Also accumulate any serverTimestamp values within the value.
|
|
|
|
|
if sawServerTimestamp {
|
|
|
|
|
stps, err := extractTransformPaths(v, nil)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
for _, p := range stps {
|
|
|
|
|
transformPaths = append(transformPaths, fpv.fieldPath.concat(p))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
return d.newUpdateWithTransform(doc, updatePaths, pc, transformPaths, false), nil
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var requestTimeTransform = &pb.DocumentTransform_FieldTransform_SetToServerValue{
|
|
|
|
|
pb.DocumentTransform_FieldTransform_REQUEST_TIME,
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// newUpdateWithTransform constructs operations for a commit. Most generally, it
|
|
|
|
|
// returns an update operation followed by a transform.
|
|
|
|
|
//
|
|
|
|
|
// If there are no serverTimestampPaths, the transform is omitted.
|
|
|
|
|
//
|
|
|
|
|
// If doc.Fields is empty, there are no updatePaths, and there is no precondition,
|
|
|
|
|
// the update is omitted, unless updateOnEmpty is true.
|
|
|
|
|
func (d *DocumentRef) newUpdateWithTransform(doc *pb.Document, updatePaths []FieldPath, pc *pb.Precondition, serverTimestampPaths []FieldPath, updateOnEmpty bool) []*pb.Write {
|
|
|
|
|
// Remove server timestamp fields from updatePaths. Those fields were removed
|
|
|
|
|
// from the document by toProtoDocument, so they should not be in the update
|
|
|
|
|
// mask.
|
|
|
|
|
// Note: this is technically O(n^2), but it is unlikely that there is
|
|
|
|
|
// more than one server timestamp path.
|
|
|
|
|
updatePaths = removePathsIf(updatePaths, func(fp FieldPath) bool {
|
|
|
|
|
return fp.in(serverTimestampPaths)
|
|
|
|
|
})
|
2017-10-22 08:07:36 +00:00
|
|
|
|
var ws []*pb.Write
|
2018-01-23 18:40:42 +00:00
|
|
|
|
if updateOnEmpty || len(doc.Fields) > 0 ||
|
|
|
|
|
len(updatePaths) > 0 || (pc != nil && len(serverTimestampPaths) == 0) {
|
|
|
|
|
var mask *pb.DocumentMask
|
|
|
|
|
if len(updatePaths) > 0 {
|
|
|
|
|
sfps := toServiceFieldPaths(updatePaths)
|
|
|
|
|
sort.Strings(sfps) // TODO(jba): make tests pass without this
|
|
|
|
|
mask = &pb.DocumentMask{FieldPaths: sfps}
|
|
|
|
|
}
|
|
|
|
|
w := &pb.Write{
|
|
|
|
|
Operation: &pb.Write_Update{doc},
|
|
|
|
|
UpdateMask: mask,
|
|
|
|
|
CurrentDocument: pc,
|
|
|
|
|
}
|
2017-10-22 08:07:36 +00:00
|
|
|
|
ws = append(ws, w)
|
2018-01-23 18:40:42 +00:00
|
|
|
|
pc = nil // If the precondition is in the write, we don't need it in the transform.
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
if len(serverTimestampPaths) > 0 || pc != nil {
|
|
|
|
|
ws = append(ws, d.newTransform(serverTimestampPaths, pc))
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
return ws
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
func (d *DocumentRef) newTransform(serverTimestampFieldPaths []FieldPath, pc *pb.Precondition) *pb.Write {
|
2017-10-22 08:07:36 +00:00
|
|
|
|
sort.Sort(byPath(serverTimestampFieldPaths)) // TODO(jba): make tests pass without this
|
|
|
|
|
var fts []*pb.DocumentTransform_FieldTransform
|
|
|
|
|
for _, p := range serverTimestampFieldPaths {
|
|
|
|
|
fts = append(fts, &pb.DocumentTransform_FieldTransform{
|
|
|
|
|
FieldPath: p.toServiceFieldPath(),
|
|
|
|
|
TransformType: requestTimeTransform,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
return &pb.Write{
|
|
|
|
|
Operation: &pb.Write_Transform{
|
|
|
|
|
&pb.DocumentTransform{
|
|
|
|
|
Document: d.Path,
|
|
|
|
|
FieldTransforms: fts,
|
|
|
|
|
// TODO(jba): should the transform have the same preconditions as the write?
|
|
|
|
|
},
|
|
|
|
|
},
|
2018-01-23 18:40:42 +00:00
|
|
|
|
CurrentDocument: pc,
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-12-03 20:01:25 +00:00
|
|
|
|
type sentinel int
|
|
|
|
|
|
|
|
|
|
const (
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// Delete is used as a value in a call to Update or Set with merge to indicate
|
|
|
|
|
// that the corresponding key should be deleted.
|
2017-12-03 20:01:25 +00:00
|
|
|
|
Delete sentinel = iota
|
2017-10-22 08:07:36 +00:00
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// ServerTimestamp is used as a value in a call to Update to indicate that the
|
2017-10-22 08:07:36 +00:00
|
|
|
|
// key's value should be set to the time at which the server processed
|
|
|
|
|
// the request.
|
2017-12-03 20:01:25 +00:00
|
|
|
|
ServerTimestamp
|
2017-10-22 08:07:36 +00:00
|
|
|
|
)
|
|
|
|
|
|
2017-12-03 20:01:25 +00:00
|
|
|
|
func (s sentinel) String() string {
|
|
|
|
|
switch s {
|
|
|
|
|
case Delete:
|
|
|
|
|
return "Delete"
|
|
|
|
|
case ServerTimestamp:
|
|
|
|
|
return "ServerTimestamp"
|
|
|
|
|
default:
|
|
|
|
|
return "<?sentinel?>"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-22 08:07:36 +00:00
|
|
|
|
func isStructOrStructPtr(x interface{}) bool {
|
|
|
|
|
v := reflect.ValueOf(x)
|
|
|
|
|
if v.Kind() == reflect.Struct {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
if v.Kind() == reflect.Ptr && v.Elem().Kind() == reflect.Struct {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// An Update describes an update to a value referred to by a path.
|
|
|
|
|
// An Update should have either a non-empty Path or a non-empty FieldPath,
|
|
|
|
|
// but not both.
|
2017-10-22 08:07:36 +00:00
|
|
|
|
//
|
|
|
|
|
// See DocumentRef.Create for acceptable values.
|
|
|
|
|
// To delete a field, specify firestore.Delete as the value.
|
2018-01-23 18:40:42 +00:00
|
|
|
|
type Update struct {
|
|
|
|
|
Path string // Will be split on dots, and must not contain any of "˜*/[]".
|
|
|
|
|
FieldPath FieldPath
|
|
|
|
|
Value interface{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// An fpv is a pair of validated FieldPath and value.
|
|
|
|
|
type fpv struct {
|
|
|
|
|
fieldPath FieldPath
|
|
|
|
|
value interface{}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (u *Update) process() (fpv, error) {
|
|
|
|
|
if (u.Path != "") == (u.FieldPath != nil) {
|
|
|
|
|
return fpv{}, fmt.Errorf("firestore: update %+v should have exactly one of Path or FieldPath", u)
|
|
|
|
|
}
|
|
|
|
|
fp := u.FieldPath
|
|
|
|
|
var err error
|
|
|
|
|
if fp == nil {
|
|
|
|
|
fp, err = parseDotSeparatedString(u.Path)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return fpv{}, err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if err := fp.validate(); err != nil {
|
|
|
|
|
return fpv{}, err
|
|
|
|
|
}
|
|
|
|
|
return fpv{fp, u.Value}, nil
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-23 18:40:42 +00:00
|
|
|
|
// Update updates the document. The values at the given
|
2017-10-22 08:07:36 +00:00
|
|
|
|
// field paths are replaced, but other fields of the stored document are untouched.
|
2018-01-23 18:40:42 +00:00
|
|
|
|
func (d *DocumentRef) Update(ctx context.Context, updates []Update, preconds ...Precondition) (*WriteResult, error) {
|
|
|
|
|
ws, err := d.newUpdatePathWrites(updates, preconds)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
2018-01-23 18:40:42 +00:00
|
|
|
|
return d.Parent.c.commit1(ctx, ws)
|
2017-10-22 08:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Collections returns an interator over the immediate sub-collections of the document.
|
|
|
|
|
func (d *DocumentRef) Collections(ctx context.Context) *CollectionIterator {
|
|
|
|
|
client := d.Parent.c
|
|
|
|
|
it := &CollectionIterator{
|
|
|
|
|
err: checkTransaction(ctx),
|
|
|
|
|
client: client,
|
|
|
|
|
parent: d,
|
|
|
|
|
it: client.c.ListCollectionIds(
|
|
|
|
|
withResourceHeader(ctx, client.path()),
|
|
|
|
|
&pb.ListCollectionIdsRequest{Parent: d.Path}),
|
|
|
|
|
}
|
|
|
|
|
it.pageInfo, it.nextFunc = iterator.NewPageInfo(
|
|
|
|
|
it.fetch,
|
|
|
|
|
func() int { return len(it.items) },
|
|
|
|
|
func() interface{} { b := it.items; it.items = nil; return b })
|
|
|
|
|
return it
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// CollectionIterator is an iterator over sub-collections of a document.
|
|
|
|
|
type CollectionIterator struct {
|
|
|
|
|
client *Client
|
|
|
|
|
parent *DocumentRef
|
|
|
|
|
it *vkit.StringIterator
|
|
|
|
|
pageInfo *iterator.PageInfo
|
|
|
|
|
nextFunc func() error
|
|
|
|
|
items []*CollectionRef
|
|
|
|
|
err error
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// PageInfo supports pagination. See the google.golang.org/api/iterator package for details.
|
|
|
|
|
func (it *CollectionIterator) PageInfo() *iterator.PageInfo { return it.pageInfo }
|
|
|
|
|
|
|
|
|
|
// Next returns the next result. Its second return value is iterator.Done if there
|
|
|
|
|
// are no more results. Once Next returns Done, all subsequent calls will return
|
|
|
|
|
// Done.
|
|
|
|
|
func (it *CollectionIterator) Next() (*CollectionRef, error) {
|
|
|
|
|
if err := it.nextFunc(); err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
item := it.items[0]
|
|
|
|
|
it.items = it.items[1:]
|
|
|
|
|
return item, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (it *CollectionIterator) fetch(pageSize int, pageToken string) (string, error) {
|
|
|
|
|
if it.err != nil {
|
|
|
|
|
return "", it.err
|
|
|
|
|
}
|
|
|
|
|
return iterFetch(pageSize, pageToken, it.it.PageInfo(), func() error {
|
|
|
|
|
id, err := it.it.Next()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
var cr *CollectionRef
|
|
|
|
|
if it.parent == nil {
|
|
|
|
|
cr = newTopLevelCollRef(it.client, it.client.path(), id)
|
|
|
|
|
} else {
|
|
|
|
|
cr = newCollRefWithParent(it.client, it.parent, id)
|
|
|
|
|
}
|
|
|
|
|
it.items = append(it.items, cr)
|
|
|
|
|
return nil
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GetAll returns all the collections remaining from the iterator.
|
|
|
|
|
func (it *CollectionIterator) GetAll() ([]*CollectionRef, error) {
|
|
|
|
|
var crs []*CollectionRef
|
|
|
|
|
for {
|
|
|
|
|
cr, err := it.Next()
|
|
|
|
|
if err == iterator.Done {
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
crs = append(crs, cr)
|
|
|
|
|
}
|
|
|
|
|
return crs, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Common fetch code for iterators that are backed by vkit iterators.
|
|
|
|
|
// TODO(jba): dedup with same function in logging/logadmin.
|
|
|
|
|
func iterFetch(pageSize int, pageToken string, pi *iterator.PageInfo, next func() error) (string, error) {
|
|
|
|
|
pi.MaxSize = pageSize
|
|
|
|
|
pi.Token = pageToken
|
|
|
|
|
// Get one item, which will fill the buffer.
|
|
|
|
|
if err := next(); err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
// Collect the rest of the buffer.
|
|
|
|
|
for pi.Remaining() > 0 {
|
|
|
|
|
if err := next(); err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return pi.Token, nil
|
|
|
|
|
}
|