-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathmongoDbUpdate.ts
118 lines (90 loc) · 2.88 KB
/
mongoDbUpdate.ts
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
import { addPrefixToProperties, isPrimitive } from './common';
import { logOnError } from './logger';
import { OVERWRITE, FICTIVE_INC } from './graphQLUpdateType';
export enum SetOverwrite {
DefaultTrueRoot,
True,
False
}
export interface UpdateArgs {
setOnInsert?: object,
set?: object,
inc?: object,
}
export interface UpdateObj {
$setOnInsert?: SetOnInsertObj
$set?: SetObj
$inc?: IncObj
}
export interface SetOnInsertObj {
[key: string]: SetOnInsertObj | any
}
export interface SetObj {
[key: string]: SetObj | any
}
export interface IncObj {
[key: string]: number
}
export interface updateParams {
update: UpdateObj,
options?: { upsert?: boolean }
}
export const getMongoDbUpdate = logOnError((update: UpdateArgs, overwrite: boolean = false): updateParams => {
const updateParams: updateParams = {
update: {}
};
if (update.setOnInsert) {
updateParams.update.$setOnInsert = update.setOnInsert;
updateParams.options = { upsert: true };
}
if (update.set) {
updateParams.update.$set = getMongoDbSet(update.set, overwrite ? SetOverwrite.DefaultTrueRoot : SetOverwrite.False);
}
if (update.inc) {
updateParams.update.$inc = getMongoDbInc(update.inc);
}
return updateParams;
});
export function getMongoDbSet(set: object, setOverwrite: SetOverwrite): SetObj {
return Object.keys(set).filter(_ => _ !== OVERWRITE).reduce((agg, key) => {
const value = set[key];
if (isPrimitive(value)) {
if (value === undefined) return agg;
return { ...agg, [key]: value };
}
if (Array.isArray(value)) {
return { ...agg, [key]: value };
}
const childOverwrite = getOverwrite(setOverwrite, value[OVERWRITE]);
const child = getMongoDbSet(value, childOverwrite);
if (childOverwrite === SetOverwrite.False) {
return { ...agg, ...addPrefixToProperties(child, `${key}.`) };
}
return { ...agg, [key]: child };
}, {});
}
export function getOverwrite(current: SetOverwrite, input?: boolean): SetOverwrite {
if (current === SetOverwrite.True) {
return SetOverwrite.True;
}
if (typeof input !== "undefined") {
return input ? SetOverwrite.True : SetOverwrite.False;
}
if (current === SetOverwrite.DefaultTrueRoot) {
return SetOverwrite.True;
}
return current;
}
export function getMongoDbInc(inc: object): IncObj {
return Object.keys(inc).filter(_ => _ !== FICTIVE_INC).reduce((agg, key) => {
const value = inc[key];
if (typeof value === "number") {
return { ...agg, [key]: value }
}
const child = getMongoDbInc(value);
if (Object.keys(child).length === 0) {
return agg;
}
return { ...agg, ...addPrefixToProperties(child, `${key}.`) };
}, {});
}