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
|
// Copyright 2020 Northern.tech AS
//
// 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 oid contains wrappers for creating bson ObjectIDs that marshals
// correctly according to the bson specification: http://bsonspec.org/spec.html
package oid
import (
"bytes"
"encoding/binary"
"encoding/json"
"github.com/pkg/errors"
"github.com/satori/go.uuid"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/bson/bsontype"
"go.mongodb.org/mongo-driver/bson/primitive"
)
type Type int
const (
TypeNil Type = iota
TypeUUID
TypeBSONID
TypeString
)
// ObjectID implements a bson compatible fusion of bson ObjectID, UUID and
// string types. Depending on the initialization, this type marshals to the
// correct bson type (and sub-type) for each type.
type ObjectID struct {
id interface{}
}
// NewBSONID initialize a new bson-type ObjectID (used by default by mongo)
func NewBSONID() ObjectID {
return ObjectID{id: primitive.NewObjectID()}
}
// NewUUIDv4 creates a new ObjectID initialized with a UUID v4 (random).
// In the rare event that the RNG returns an error, the null UUID is returned.
func NewUUIDv4() ObjectID {
uid := uuid.NewV4()
return ObjectID{id: uid}
}
// NewUUIDv5 returns a new version 5 uuid in the objectID namespace
func NewUUIDv5(id string) ObjectID {
ret := uuid.NewV5(uuid.NamespaceOID, id)
return ObjectID{id: ret}
}
func fromString(id string) interface{} {
var ret interface{}
switch len(id) {
case 24: // Hex-encoded bson-type objectID type.
mgoID, e := primitive.ObjectIDFromHex(id)
if e != nil {
// Fall back on assigning the raw string if value does
// not comply.
ret = id
} else {
ret = mgoID
}
case 32, 36, 38, 41, 45: // All valid hex-encoded uuid formats.
uid, e := uuid.FromString(id)
if e != nil {
// Fall back on using the string.
ret = id
} else {
ret = uid
}
default:
ret = id
}
return ret
}
// FromString tries to parse a hex-encoded mongo ObjectID/UUID string, and
// returns an error if the string is not a valid UUID.
func FromString(id string) ObjectID {
return ObjectID{id: fromString(id)}
}
func marshalBSONUUID(u uuid.UUID) (bsontype.Type, []byte, error) {
buf := make([]byte, uuid.Size+4+1)
binary.LittleEndian.PutUint32(buf, uuid.Size)
buf[4] = bsontype.BinaryUUID
copy(buf[5:], u[:])
return bsontype.Binary, buf, nil
}
// MarshalBSONValue provides the bson.ValueMarshaler interface.
func (oid ObjectID) MarshalBSONValue() (bsontype.Type, []byte, error) {
switch objectID := oid.id.(type) {
case uuid.UUID:
return marshalBSONUUID(objectID)
case primitive.ObjectID:
return bson.MarshalValue(objectID)
case string:
return bson.MarshalValue(objectID)
}
return bsontype.Null, nil, errors.New(
"unable to marshal ObjectID: not initialized",
)
}
// UnmarshalBSONValue provides the bson.ValueUnmarshaler interace.
func (oid *ObjectID) UnmarshalBSONValue(t bsontype.Type, b []byte) error {
var err error
switch t {
case bsontype.Binary: // Assume UUID type
l := binary.LittleEndian.Uint32(b)
if l != uuid.Size {
return errors.Errorf("illegal uuid length: %d", l)
}
if b[4] != bsontype.BinaryUUID {
return errors.Errorf(
"illegal bson sub-type: %0x02X, expected: 0x%02X",
b[4], bsontype.BinaryUUID,
)
}
oid.id, err = uuid.FromBytes(b[5:])
case bsontype.ObjectID:
if len(b) != 12 {
return errors.Errorf(
"illegal objectID length: %d",
len(b),
)
}
bsonID := primitive.ObjectID{}
copy(bsonID[:], b)
oid.id = bsonID
return nil
case bsontype.String:
l := binary.LittleEndian.Uint32(b)
strLen := len(b) - 4
if int(l) != strLen {
return errors.Errorf(
"illegal string length; buffer length: "+
"%d != header length: %d",
l, strLen,
)
}
// Length include terminating zero-byte
buf := make([]byte, l-1)
copy(buf, b[4:])
oid.id = string(buf)
return nil
default:
return errors.Errorf(
"illegal bson-type %s, expected ObjectID", t,
)
}
return err
}
// MarshalJSON ensures the ObjectID marhsals correctly.
func (oid ObjectID) MarshalJSON() ([]byte, error) {
// All supported types provides json.Marshaller interface.
return json.Marshal(oid.id)
}
// UnmarshalJSON unmarshal string-type json to the appropriate ObjectID type.
func (oid *ObjectID) UnmarshalJSON(b []byte) error {
b = bytes.Trim(b, `"`)
oid.id = fromString(string(b))
return nil
}
func (oid ObjectID) String() string {
switch id := oid.id.(type) {
case uuid.UUID:
return id.String()
case primitive.ObjectID:
return id.Hex()
case string:
return id
default:
return ""
}
}
func (oid ObjectID) Type() Type {
switch oid.id.(type) {
case uuid.UUID:
return TypeUUID
case primitive.ObjectID:
return TypeBSONID
case string:
return TypeString
default:
return TypeNil
}
}
|