Sharkey/src/db/mongodb.ts

42 lines
951 B
TypeScript
Raw Normal View History

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