-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwrappers.js
227 lines (194 loc) · 4.87 KB
/
wrappers.js
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
const isUndefined = require('lodash.isundefined');
const isString = require('lodash.isstring');
const ProtoBuf = require('@ortoo/protobufjs');
const BSON = require('bson');
const ObjectId = BSON.ObjectId;
const wrappers = {};
module.exports = wrappers;
wrappers['.google.protobuf.Timestamp'] = {
fromObject: function(val) {
if (!val) {
return;
}
if (isString(val)) {
val = new Date(val);
}
return {
seconds: Math.floor(val.getTime() / 1000),
nanos: val.getUTCMilliseconds() * 1e6
};
},
toObject: function(val) {
if (!val) {
return val;
}
var millis = val.seconds * 1000 + Math.round(val.nanos / 1e6);
return new Date(millis);
}
};
wrappers['.ortoo.BSONObject'] = {
fromObject: function(obj) {
return {
value: objToBson(obj)
};
},
toObject: function(obj) {
if (!obj) {
return obj;
}
try {
return objFromBson(obj.value);
} catch (err) {
// ignore
}
}
};
wrappers['.ortoo.JSONObject'] = {
fromObject: function(obj) {
return {
value: JSON.stringify(obj)
};
},
toObject: function(obj) {
if (!obj) {
return obj;
}
try {
return JSON.parse(obj.value);
} catch (err) {
// ignore
}
}
};
wrappers['.ortoo.HybridObject'] = {
fromObject: function(obj) {
if (typeof obj === 'undefined') {
return;
}
return {
json: JSON.stringify(obj),
bson: objToBson(obj)
};
},
toObject: function(obj) {
if (!obj) {
return obj;
}
if (obj.bson) {
try {
return objFromBson(obj.bson);
} catch (err) {
// ignore
}
}
try {
return JSON.parse(obj.json);
} catch (err) {
// ignore
}
}
};
wrappers['.ortoo.ObjectId'] = {
fromObject: function(val) {
if (!val) {
return val;
}
var strRep = val.toString ? val.toString() : String(val);
return { value: Buffer.from(strRep, 'hex') };
},
toObject: function(msg) {
if (!msg) {
return msg;
}
return msg.value && msg.value.length ? new ObjectId(msg.value) : undefined;
}
};
wrappers['.ortoo.resource.*.wrappers.values.*'] = wrappers[
'.ortoo.resource.*.wrappers.arrays.*'
] = {
fromObject: function(val) {
if (val === null) {
return { isNull: true };
} else if (!isUndefined(val)) {
var valField = this.fields.value;
let resolvedType = valField.resolvedType;
// Could be map, array or individual value
if (valField.map) {
let outVal = {};
var key;
for (var keys = Object.keys(val), ii = 0; ii < keys.length; ++ii) {
key = keys[ii];
outVal[key] = performWrap(resolvedType, val[key]);
}
return { value: outVal };
} else if (valField.repeated) {
// For safety let's filter out any null / undefined values
return {
value: val.filter(val => val != null).map(outVal => performWrap(resolvedType, outVal))
};
} else {
return { value: performWrap(resolvedType, val) };
}
}
},
toObject: function(obj, opts) {
if (obj && obj.isNull) {
return null;
} else if (obj) {
var valField = this.fields.value;
let resolvedType = valField.resolvedType;
let val = obj.value;
if (valField.map) {
let outVal = {};
var key;
for (var keys = Object.keys(val), ii = 0; ii < keys.length; ++ii) {
key = keys[ii];
outVal[key] = performUnwrap(resolvedType, val[key], opts);
}
return outVal;
} else if (valField.repeated) {
return val.map(outVal => performUnwrap(resolvedType, outVal, opts));
} else {
return performUnwrap(resolvedType, val, opts);
}
}
}
};
['Double', 'Float', 'Int64', 'UInt64', 'Int32', 'UInt32', 'Bool', 'String', 'Bytes'].forEach(
type => {
wrappers[`.google.protobuf.${type}Value`] = {
fromObject(val) {
if (isUndefined(val) || val === null) {
return null;
} else {
return {
value: val
};
}
},
toObject(obj) {
return obj && obj.value;
}
};
}
);
function performWrap(resolvedType, outVal) {
if (resolvedType instanceof ProtoBuf.Enum) {
return isString(outVal) ? resolvedType.values[outVal] : outVal;
}
return resolvedType ? resolvedType.fromObject(outVal) : outVal;
}
function performUnwrap(resolvedType, outVal, opts) {
if (resolvedType instanceof ProtoBuf.Enum) {
return isString(outVal) ? outVal : resolvedType.valuesById[outVal];
}
return resolvedType ? resolvedType.toObject(outVal, opts) : outVal;
}
function objToBson(obj) {
// The root bson object must be an object, so we wrap once here...
return BSON.serialize({ bson: obj });
}
function objFromBson(buf) {
// Unwrap the inner bson wrapper (see above)
return BSON.deserialize(buf).bson;
}