-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathdatabase.ts
32 lines (26 loc) · 946 Bytes
/
database.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
import * as Mongoose from "mongoose";
import { IDataConfiguration } from "./configurations";
import { ILogging, LoggingModel } from "./plugins/logging/logging";
import { IUser, UserModel } from "./api/users/user";
import { ITask, TaskModel } from "./api/tasks/task";
export interface IDatabase {
loggingModel: Mongoose.Model<ILogging>;
userModel: Mongoose.Model<IUser>;
taskModel: Mongoose.Model<ITask>;
}
export function init(config: IDataConfiguration): IDatabase {
(<any>Mongoose).Promise = Promise;
Mongoose.connect(process.env.MONGO_URL || config.connectionString);
let mongoDb = Mongoose.connection;
mongoDb.on("error", () => {
console.log(`Unable to connect to database: ${config.connectionString}`);
});
mongoDb.once("open", () => {
console.log(`Connected to database: ${config.connectionString}`);
});
return {
loggingModel: LoggingModel,
taskModel: TaskModel,
userModel: UserModel
};
}