-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path20230125143522-replace-object-ids.js
72 lines (69 loc) · 1.61 KB
/
20230125143522-replace-object-ids.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
const names = [
"Job",
"Policy",
"Sample",
"UserSetting",
"Attachment",
"OrigDatablock",
];
const translation = {};
module.exports = {
async up(db, client) {
for (var i = 0; i < names.length; i++) {
console.info("Collection:" + names[i]);
db.collection(names[i])
.find({
$or: [
{
_id: {
$regex: /^[a-f\d]{24}$/i,
},
},
{
_id: {
$type: "objectId",
},
},
],
})
.forEach(function (x) {
var oldId = x._id;
// eslint-disable-next-line @/quotes
x._id = UUID().toString().split('"')[1];
console.info(" Update id " + oldId + " to id " + x._id);
if (names[i] == "Sample") {
translation[oldId] = x._id;
}
db.collection(names[i]).insert(x);
db.collection(names[i]).remove({
_id: oldId,
});
});
}
console.info("Update sampleIds in datasets:");
console.info(translation);
db.collection("Dataset")
.find({
sampleId: {
$in: Object.keys(translation),
},
})
.forEach(function (ds) {
if ("sampleId" in ds) {
db.collection("Dataset").update(
{
_id: ds._id,
},
{
$set: {
sampleId: translation[ds.sampleId],
},
},
);
}
});
},
async down(db, client) {
// TODO: Not sure how to write this down migration???
},
};