2018-04-02 07:15:53 +03:00
|
|
|
import config from '../config';
|
2017-01-17 02:12:33 +02:00
|
|
|
|
2017-12-31 19:26:25 +02:00
|
|
|
const u = config.mongodb.user ? encodeURIComponent(config.mongodb.user) : null;
|
|
|
|
const p = config.mongodb.pass ? encodeURIComponent(config.mongodb.pass) : null;
|
|
|
|
|
|
|
|
const uri = u && p
|
|
|
|
? `mongodb://${u}:${p}@${config.mongodb.host}:${config.mongodb.port}/${config.mongodb.db}`
|
2017-12-31 07:38:41 +02:00
|
|
|
: `mongodb://${config.mongodb.host}:${config.mongodb.port}/${config.mongodb.db}`;
|
2017-11-06 07:37:00 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* monk
|
|
|
|
*/
|
2018-02-02 00:34:51 +02:00
|
|
|
import mongo from 'monk';
|
2017-01-17 02:12:33 +02:00
|
|
|
|
2018-06-10 18:24:03 +03:00
|
|
|
const db = mongo(uri);
|
2017-01-17 02:12:33 +02:00
|
|
|
|
|
|
|
export default db;
|
2017-11-06 07:37:00 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MongoDB native module (officialy)
|
|
|
|
*/
|
2017-11-06 09:32:01 +02:00
|
|
|
import * as mongodb from 'mongodb';
|
2017-11-06 07:37:00 +02: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) => {
|
2018-06-18 03:54:53 +03:00
|
|
|
(mongodb as any).MongoClient.connect(uri, (e: Error, client: any) => {
|
2017-11-06 09:32:01 +02:00
|
|
|
if (e) return reject(e);
|
2017-12-31 08:15:19 +02:00
|
|
|
resolve(client.db(config.mongodb.db));
|
2017-11-06 09:32:01 +02:00
|
|
|
});
|
|
|
|
}))();
|
2017-11-06 07:37:00 +02:00
|
|
|
|
2017-11-06 09:32:01 +02:00
|
|
|
mdb = db;
|
2017-11-06 07:37:00 +02:00
|
|
|
|
2017-11-06 09:32:01 +02:00
|
|
|
return db;
|
|
|
|
};
|
2017-11-06 07:37:00 +02:00
|
|
|
|
2017-11-06 09:32:01 +02:00
|
|
|
export { nativeDbConn };
|