Ghost/core/server/data/db/connection.js

37 lines
1.1 KiB
JavaScript
Raw Normal View History

var knex = require('knex'),
config = require('../../config'),
common = require('../../lib/common'),
knexInstance;
// @TODO:
// - if you require this file before config file was loaded,
// - then this file is cached and you have no chance to connect to the db anymore
// - bring dynamic into this file (db.connect())
function configure(dbConfig) {
var client = dbConfig.client;
if (client === 'sqlite3') {
dbConfig.useNullAsDefault = Object.prototype.hasOwnProperty.call(dbConfig, 'useNullAsDefault') ? dbConfig.useNullAsDefault : true;
}
if (client === 'mysql') {
dbConfig.connection.timezone = 'UTC';
dbConfig.connection.charset = 'utf8mb4';
2017-10-04 11:40:59 +03:00
dbConfig.connection.loggingHook = function loggingHook(err) {
common.logging.error(new common.errors.InternalServerError({
2017-10-04 11:40:59 +03:00
code: 'MYSQL_LOGGING_HOOK',
err: err
}));
};
}
return dbConfig;
}
if (!knexInstance && config.get('database') && config.get('database').client) {
knexInstance = knex(configure(config.get('database')));
}
module.exports = knexInstance;