-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
67 lines (59 loc) · 2.76 KB
/
index.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
import { MongoClient, MongoClientOptions } from 'mongodb';
export class MongoURL {
shortUrl: string;
longUrl: string;
constructor(public host: string, public port: number, public dbName: string, public username?: string, public password?: string) {
const auth = (!!password ? `${username || 'root'}:${password}@` : '');
this.shortUrl = `mongodb://${auth}${host}:${port}`;
this.longUrl = `${this.shortUrl}/${dbName}`;
}
}
let url: MongoURL;
let _options: MongoClientOptions = {};
export async function init(host: string = 'localhost', port: number = 27017, dbName: string = 'test', options: MongoClientOptions = {}, dry = false): Promise<MongoURL> {
setOptions(options);
if (_options.auth) {
url = new MongoURL(host || 'localhost', port || 27017, dbName || 'test', _options.auth.user, _options.auth.password);
} else {
url = new MongoURL(host || 'localhost', port || 27017, dbName || 'test');
}
return dry ? MongoClient.connect(url.shortUrl, _options).then(() => url) : url;
}
export function setOptions(options: MongoClientOptions = {}): void {
_options = options;
if (!_options.auth && process.env.MONGO_PWD) {
_options.auth = {
user: process.env.MONGO_USER || 'root',
password: process.env.MONGO_PWD,
};
}
_options.useNewUrlParser = true;
}
export async function load(data: Record<string, any[]>, dbName?: string, mongoClient?: MongoClient): Promise<void> {
const getMongoClient = mongoClient ? Promise.resolve(mongoClient) : MongoClient.connect(url.shortUrl, _options);
return getMongoClient
.then(client => {
const db = client.db(dbName || url.dbName);
const queries = Object.keys(data).map(col => {
const collection = db.collection(col);
return collection.insertMany(data[col]);
});
return Promise.all(queries).then(() => client.close());
});
}
export async function drop(mongoClient?: MongoClient): Promise<void> {
const getMongoClient = mongoClient ? Promise.resolve(mongoClient) : MongoClient.connect(url.shortUrl, _options);
return getMongoClient
.then(client => client.db(url.dbName).dropDatabase().then(() => client.close()));
}
export async function deleteAll(mongoClient?: MongoClient): Promise<void> {
let _client: MongoClient;
const getMongoClient = mongoClient ? Promise.resolve(mongoClient) : MongoClient.connect(url.shortUrl, _options);
return getMongoClient
.then(client => _client = client)
.then(client => client.db(url.dbName).collections())
.then(cols => {
const queries = cols.map(col => col.deleteMany({}));
return Promise.all(queries).then(() => _client.close());
});
}