-
Notifications
You must be signed in to change notification settings - Fork 678
Expand file tree
/
Copy pathconvert.ts
More file actions
350 lines (322 loc) · 9.83 KB
/
convert.ts
File metadata and controls
350 lines (322 loc) · 9.83 KB
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/*!
* Copyright 2019 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.
*/
import {google} from '../protos/firestore_v1_proto_api';
import {ApiMapValue, ProtobufJsValue} from './types';
import {validateObject} from './validate';
import api = google.firestore.v1;
import {
RESERVED_BSON_BINARY_KEY,
RESERVED_INT32_KEY,
RESERVED_MAP_KEY,
RESERVED_MAP_KEY_VECTOR_VALUE,
RESERVED_MAX_KEY,
RESERVED_MIN_KEY,
RESERVED_BSON_OBJECT_ID_KEY,
RESERVED_REGEX_KEY,
RESERVED_BSON_TIMESTAMP_KEY,
RESERVED_DECIMAL128_KEY,
} from './map-type';
/*!
* @module firestore/convert
* @private
* @internal
*
* This module contains utility functions to convert
* `firestore.v1.Documents` from Proto3 JSON to their equivalent
* representation in Protobuf JS. Protobuf JS is the only encoding supported by
* this client, and dependencies that use Proto3 JSON (such as the Google Cloud
* Functions SDK) are supported through this conversion and its usage in
* {@see Firestore#snapshot_}.
*/
/**
* Converts an ISO 8601 or google.protobuf.Timestamp proto into Protobuf JS.
*
* @private
* @internal
* @param timestampValue The value to convert.
* @param argumentName The argument name to use in the error message if the
* conversion fails. If omitted, 'timestampValue' is used.
* @returns The value as expected by Protobuf JS or undefined if no input was
* provided.
*/
export function timestampFromJson(
timestampValue?: string | google.protobuf.ITimestamp,
argumentName?: string,
): google.protobuf.ITimestamp | undefined {
let timestampProto: google.protobuf.ITimestamp = {};
if (typeof timestampValue === 'string') {
const date = new Date(timestampValue);
const seconds = Math.floor(date.getTime() / 1000);
let nanos = 0;
if (timestampValue.length > 20) {
const nanoString = timestampValue.substring(
20,
timestampValue.length - 1,
);
const trailingZeroes = 9 - nanoString.length;
nanos = Number(nanoString) * Math.pow(10, trailingZeroes);
}
if (isNaN(seconds) || isNaN(nanos)) {
argumentName = argumentName || 'timestampValue';
throw new Error(
`Specify a valid ISO 8601 timestamp for "${argumentName}".`,
);
}
timestampProto = {
seconds: seconds || undefined,
nanos: nanos || undefined,
};
} else if (timestampValue !== undefined) {
validateObject('timestampValue', timestampValue);
timestampProto = {
seconds: timestampValue.seconds || undefined,
nanos: timestampValue.nanos || undefined,
};
}
return timestampProto;
}
/**
* Converts a Proto3 JSON 'bytesValue' field into Protobuf JS.
*
* @private
* @internal
* @param bytesValue The value to convert.
* @returns The value as expected by Protobuf JS.
*/
function bytesFromJson(bytesValue: string | Uint8Array): Uint8Array {
if (typeof bytesValue === 'string') {
return Buffer.from(bytesValue, 'base64');
} else {
return bytesValue;
}
}
/**
* Detects the 'valueType' for cases where a map value has been used to
* represent another type.
* @param mapValue The map value to probe.
*/
function detectMapRepresentation(
mapValue: api.IMapValue | null | undefined
): string {
const fields = mapValue?.fields;
if (fields) {
const props = Object.keys(fields);
if (
props.indexOf(RESERVED_MAP_KEY) !== -1 &&
detectValueType(fields[RESERVED_MAP_KEY]) === 'stringValue' &&
fields[RESERVED_MAP_KEY].stringValue === RESERVED_MAP_KEY_VECTOR_VALUE
) {
return 'vectorValue';
} else if (props.indexOf(RESERVED_MIN_KEY) !== -1) {
return 'minKeyValue';
} else if (props.indexOf(RESERVED_MAX_KEY) !== -1) {
return 'maxKeyValue';
} else if (props.indexOf(RESERVED_REGEX_KEY) !== -1) {
return 'regexValue';
} else if (props.indexOf(RESERVED_BSON_OBJECT_ID_KEY) !== -1) {
return 'bsonObjectIdValue';
} else if (props.indexOf(RESERVED_INT32_KEY) !== -1) {
return 'int32Value';
} else if (props.indexOf(RESERVED_DECIMAL128_KEY) !== -1) {
return 'decimal128Value';
} else if (props.indexOf(RESERVED_BSON_TIMESTAMP_KEY) !== -1) {
return 'bsonTimestampValue';
} else if (props.indexOf(RESERVED_BSON_BINARY_KEY) !== -1) {
return 'bsonBinaryValue';
}
}
// If none of the above cases apply, it's a regular map.
return 'mapValue';
}
/**
* Detects 'valueType' from a Proto3 JSON `firestore.v1.Value` proto.
*
* @private
* @internal
* @param proto The `firestore.v1.Value` proto.
* @returns The string value for 'valueType'.
*/
export function detectValueType(proto: ProtobufJsValue): string {
let valueType: string | undefined;
if (proto.valueType) {
valueType = proto.valueType;
} else {
const detectedValues: string[] = [];
if (proto.stringValue !== undefined) {
detectedValues.push('stringValue');
}
if (proto.booleanValue !== undefined) {
detectedValues.push('booleanValue');
}
if (proto.integerValue !== undefined) {
detectedValues.push('integerValue');
}
if (proto.doubleValue !== undefined) {
detectedValues.push('doubleValue');
}
if (proto.timestampValue !== undefined) {
detectedValues.push('timestampValue');
}
if (proto.referenceValue !== undefined) {
detectedValues.push('referenceValue');
}
if (proto.arrayValue !== undefined) {
detectedValues.push('arrayValue');
}
if (proto.nullValue !== undefined) {
detectedValues.push('nullValue');
}
if (proto.mapValue !== undefined) {
detectedValues.push('mapValue');
}
if (proto.geoPointValue !== undefined) {
detectedValues.push('geoPointValue');
}
if (proto.bytesValue !== undefined) {
detectedValues.push('bytesValue');
}
if (detectedValues.length !== 1) {
throw new Error(
`Unable to infer type value from '${JSON.stringify(proto)}'.`,
);
}
valueType = detectedValues[0];
}
// Special handling of mapValues which may or may not have been
// used to represent other data types.
if (valueType === 'mapValue') {
valueType = detectMapRepresentation(proto.mapValue);
}
return valueType;
}
/**
* Detects the value kind from a Proto3 JSON `google.protobuf.Value` proto.
*
* @private
* @internal
* @param proto The `firestore.v1.Value` proto.
* @returns The string value for 'valueType'.
*/
export function detectGoogleProtobufValueType(
proto: google.protobuf.IValue,
): string {
const detectedValues: string[] = [];
if (proto.nullValue !== undefined) {
detectedValues.push('nullValue');
}
if (proto.numberValue !== undefined) {
detectedValues.push('numberValue');
}
if (proto.stringValue !== undefined) {
detectedValues.push('stringValue');
}
if (proto.boolValue !== undefined) {
detectedValues.push('boolValue');
}
if (proto.structValue !== undefined) {
detectedValues.push('structValue');
}
if (proto.listValue !== undefined) {
detectedValues.push('listValue');
}
if (detectedValues.length !== 1) {
throw new Error(
`Unable to infer type value from '${JSON.stringify(proto)}'.`,
);
}
return detectedValues[0];
}
/**
* Converts a `firestore.v1.Value` in Proto3 JSON encoding into the
* Protobuf JS format expected by this client.
*
* @private
* @internal
* @param fieldValue The `firestore.v1.Value` in Proto3 JSON format.
* @returns The `firestore.v1.Value` in Protobuf JS format.
*/
export function valueFromJson(fieldValue: api.IValue): api.IValue {
const valueType = detectValueType(fieldValue);
switch (valueType) {
case 'timestampValue':
return {
timestampValue: timestampFromJson(fieldValue.timestampValue!),
};
case 'bytesValue':
return {
bytesValue: bytesFromJson(fieldValue.bytesValue!),
};
case 'doubleValue':
return {
doubleValue: Number(fieldValue.doubleValue),
};
case 'arrayValue': {
const arrayValue: Array<api.IValue> = [];
if (Array.isArray(fieldValue.arrayValue!.values)) {
for (const value of fieldValue.arrayValue!.values!) {
arrayValue.push(valueFromJson(value));
}
}
return {
arrayValue: {
values: arrayValue,
},
};
}
case 'mapValue':
case 'vectorValue':
case 'regexValue':
case 'bsonObjectIdValue':
case 'bsonBinaryValue':
case 'int32Value':
case 'decimal128Value':
case 'bsonTimestampValue':
case 'minKeyValue':
case 'maxKeyValue': {
const mapValue: ApiMapValue = {};
const fields = fieldValue.mapValue!.fields;
if (fields) {
for (const prop of Object.keys(fields)) {
mapValue[prop] = valueFromJson(fieldValue.mapValue!.fields![prop]);
}
}
return {
mapValue: {
fields: mapValue,
},
};
}
default:
return fieldValue;
}
}
/**
* Converts a map of IValues in Proto3 JSON encoding into the Protobuf JS format
* expected by this client. This conversion creates a copy of the underlying
* fields.
*
* @private
* @internal
* @param document An object with IValues in Proto3 JSON format.
* @returns The object in Protobuf JS format.
*/
export function fieldsFromJson(document: ApiMapValue): ApiMapValue {
const result: ApiMapValue = {};
for (const prop of Object.keys(document)) {
result[prop] = valueFromJson(document[prop]);
}
return result;
}