2017-05-15 16:22:03 -04:00
|
|
|
import fs = require('fs')
|
|
|
|
import { join } from 'path'
|
|
|
|
import Sequelize = require('sequelize')
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
import { CONFIG } from './constants'
|
|
|
|
// Do not use barrel, we need to load database first
|
|
|
|
import { logger } from '../helpers/logger'
|
|
|
|
import { isTestInstance } from '../helpers/utils'
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const dbname = CONFIG.DATABASE.DBNAME
|
|
|
|
const username = CONFIG.DATABASE.USERNAME
|
|
|
|
const password = CONFIG.DATABASE.PASSWORD
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const database: any = {}
|
2016-12-25 03:44:57 -05:00
|
|
|
|
|
|
|
const sequelize = new Sequelize(dbname, username, password, {
|
2016-12-11 15:50:51 -05:00
|
|
|
dialect: 'postgres',
|
2017-05-15 16:22:03 -04:00
|
|
|
host: CONFIG.DATABASE.HOSTNAME,
|
|
|
|
port: CONFIG.DATABASE.PORT,
|
|
|
|
benchmark: isTestInstance(),
|
2016-12-24 10:59:17 -05:00
|
|
|
|
|
|
|
logging: function (message, benchmark) {
|
|
|
|
let newMessage = message
|
|
|
|
if (benchmark !== undefined) {
|
|
|
|
newMessage += ' | ' + benchmark + 'ms'
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.debug(newMessage)
|
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
})
|
|
|
|
|
2016-12-25 03:44:57 -05:00
|
|
|
database.sequelize = sequelize
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
database.init = function (silent, callback) {
|
2016-12-25 03:44:57 -05:00
|
|
|
if (!callback) {
|
|
|
|
callback = silent
|
|
|
|
silent = false
|
|
|
|
}
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
if (!callback) callback = function () { /* empty */ }
|
2016-12-11 15:50:51 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
const modelDirectory = join(__dirname, '..', 'models')
|
2016-12-25 03:44:57 -05:00
|
|
|
fs.readdir(modelDirectory, function (err, files) {
|
|
|
|
if (err) throw err
|
2016-01-31 05:23:52 -05:00
|
|
|
|
2016-12-25 03:44:57 -05:00
|
|
|
files.filter(function (file) {
|
|
|
|
// For all models but not utils.js
|
|
|
|
if (file === 'utils.js') return false
|
2015-06-09 11:41:40 -04:00
|
|
|
|
2016-12-25 03:44:57 -05:00
|
|
|
return true
|
|
|
|
})
|
|
|
|
.forEach(function (file) {
|
2017-05-15 16:22:03 -04:00
|
|
|
const model = sequelize.import(join(modelDirectory, file))
|
2016-12-25 03:44:57 -05:00
|
|
|
|
2017-05-15 16:22:03 -04:00
|
|
|
database[model['name']] = model
|
2016-12-25 03:44:57 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
Object.keys(database).forEach(function (modelName) {
|
|
|
|
if ('associate' in database[modelName]) {
|
|
|
|
database[modelName].associate(database)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-01-23 16:16:48 -05:00
|
|
|
if (!silent) logger.info('Database %s is ready.', dbname)
|
2016-12-25 03:44:57 -05:00
|
|
|
|
|
|
|
return callback(null)
|
|
|
|
})
|
|
|
|
}
|
2017-05-15 16:22:03 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
module.exports = database
|