-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackup-db.js
78 lines (47 loc) · 1.4 KB
/
backup-db.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
// Connect to the mongo database
const { MongoClient } = require("mongodb");
const tar = require('tar');
const fs = require('fs');
const debug = process.env.DEBUG;
const uri = process.env.MONGODB_URI;
var it = [ ... process.argv ]
if (debug === 'true')
console.log(it)
it.shift()
it.shift()
if (debug === 'true')
console.log(it)
const client = new MongoClient(uri);
async function run(collections) {
const db = client.db('Arc3');
const files = []
let proc = 0;
// Go through all the tables that have data that is temp (Modmails, Jails, Appeals, Karaoke)
collections.forEach(async x => {
const collection = db.collection(x);
const data = await collection.find();
const items = []
for await ( let item of data) {
if (debug === 'true')
console.log(item)
items.push(item)
}
const json = JSON.stringify(items);
fs.writeFile(`./bkup/${x}.json`, json, 'utf8', async () => {
proc++;
if (proc === collections.length) {
tar.create(
{ file: `./out/backup-${Date.now()}.tar.gz`, gzip: true },
['./bkup']
).then(async _ => {
await client.close()
console.log(`Saved ${proc} collections`)
})
}
})
})
}
client.connect().then(x => {
run(it).then(x => {
}).catch(console.dir)
});