-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathutil.js
78 lines (72 loc) · 1.75 KB
/
util.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
const BSON = require('bson-ext')
const Long = BSON.Long
const _ = require('lodash')
exports.describeTypes = function (doc) {
if (doc._bsontype) {
return doc._bsontype
} else if (Array.isArray(doc)) {
const types = doc.map(exports.describeTypes)
const uniqueTypes = _.uniqWith(types, _.isEqual)
if (uniqueTypes.length > 1) {
//throw new Error('arrays containing multiple data types are not allowed')
}
if (_.isUndefined(uniqueTypes[0])) {
return []
}
return uniqueTypes
} else if (typeof doc === 'object') {
const out = {}
for (const key of Object.keys(doc)) {
const v = exports.describeTypes(doc[key])
if (typeof v !== 'undefined') {
out[key] = v
}
}
return out
}
}
exports.getArrayPaths = function (doc) {
const arrayPaths = []
function recursiveHepler(path, doc) {
if (Array.isArray(doc)) {
arrayPaths.push(path)
} else if (doc && typeof doc === 'object') {
for (const key of Object.keys(doc)) {
recursiveHepler(path ? (path + '.' + key) : key, doc[key])
}
}
}
recursiveHepler('', doc)
return arrayPaths
}
exports.createCursor = function (ns, firstBatch, id = Long.fromNumber(0)) {
return {
cursor: {
id,
ns,
firstBatch
},
ok: 1
}
}
exports.listIndicesQuery = function (fieldName, collectionName) {
return `select
t.relname as table_name,
i.relname as index_name,
a.attname as column_name
from
pg_class t,
pg_class i,
pg_index ix,
pg_attribute a
where
t.oid = ix.indrelid
and i.oid = ix.indexrelid
and a.attrelid = t.oid
and t.relkind = 'r'
and t.relname = '${collectionName}'
and a.attname = '${fieldName}'
order by
t.relname,
i.relname;`
}