2017-01-17 01:12:33 +01:00
|
|
|
import config from '../conf';
|
|
|
|
|
|
|
|
const uri = config.mongodb.user && config.mongodb.pass
|
2017-12-31 06:38:41 +01:00
|
|
|
? `mongodb://${config.mongodb.user}:${config.mongodb.pass}@${config.mongodb.host}:${config.mongodb.port}/${config.mongodb.db}`
|
|
|
|
: `mongodb://${config.mongodb.host}:${config.mongodb.port}/${config.mongodb.db}`;
|
2017-11-06 06:37:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* monk
|
|
|
|
*/
|
|
|
|
import * as mongo from 'monk';
|
2017-01-17 01:12:33 +01:00
|
|
|
|
2017-01-17 02:39:21 +01:00
|
|
|
const db = mongo(uri);
|
2017-01-17 01:12:33 +01:00
|
|
|
|
|
|
|
export default db;
|
2017-11-06 06:37:00 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MongoDB native module (officialy)
|
|
|
|
*/
|
2017-11-06 08:32:01 +01:00
|
|
|
import * as mongodb from 'mongodb';
|
2017-11-06 06:37:00 +01:00
|
|
|
|
|
|
|
let mdb: mongodb.Db;
|
|
|
|
|
|
|
|
const nativeDbConn = async (): Promise<mongodb.Db> => {
|
|
|
|
if (mdb) return mdb;
|
|
|
|
|
|
|
|
const db = await ((): Promise<mongodb.Db> => new Promise((resolve, reject) => {
|
2017-12-31 07:15:19 +01:00
|
|
|
(mongodb as any).MongoClient.connect(uri, (e, client) => {
|
2017-11-06 08:32:01 +01:00
|
|
|
if (e) return reject(e);
|
2017-12-31 07:15:19 +01:00
|
|
|
resolve(client.db(config.mongodb.db));
|
2017-11-06 08:32:01 +01:00
|
|
|
});
|
|
|
|
}))();
|
2017-11-06 06:37:00 +01:00
|
|
|
|
2017-11-06 08:32:01 +01:00
|
|
|
mdb = db;
|
2017-11-06 06:37:00 +01:00
|
|
|
|
2017-11-06 08:32:01 +01:00
|
|
|
return db;
|
|
|
|
};
|
2017-11-06 06:37:00 +01:00
|
|
|
|
2017-11-06 08:32:01 +01:00
|
|
|
export { nativeDbConn };
|