2017-06-19 18:37:35 +02:00
const fs = require ( 'fs' ) ;
const path = require ( 'path' ) ;
const Sequelize = require ( 'sequelize' ) ;
const basename = path . basename ( module . filename ) ;
2017-06-19 22:22:06 +02:00
const logger = require ( 'winston' ) ;
2017-11-08 16:25:21 +01:00
const config = require ( '../config/speechConfig.js' ) ;
2017-11-07 00:18:45 +01:00
const database = config . sql . database ;
const username = config . sql . username ;
const password = config . sql . password ;
2017-11-08 16:25:21 +01:00
const db = { } ;
2017-11-01 00:00:12 +01:00
2017-11-08 16:25:21 +01:00
// set sequelize options
2017-09-13 02:59:55 +02:00
const sequelize = new Sequelize ( database , username , password , {
2017-11-08 16:25:21 +01:00
host : 'localhost' ,
dialect : 'mysql' ,
dialectOptions : { decimalNumbers : true } , // fix to ensure DECIMAL will not be stored as a string
logging : false ,
pool : {
2017-08-26 13:31:16 +02:00
max : 5 ,
min : 0 ,
2017-09-13 02:59:55 +02:00
idle : 10000 ,
acquire : 10000 ,
2017-08-26 13:31:16 +02:00
} ,
2017-06-19 22:22:06 +02:00
} ) ;
2017-06-15 20:15:13 +02:00
sequelize
. authenticate ( )
. then ( ( ) => {
2017-06-22 01:36:08 +02:00
logger . info ( 'Sequelize has established mysql connection successfully.' ) ;
2017-06-15 20:15:13 +02:00
} )
. catch ( err => {
2017-06-22 01:36:08 +02:00
logger . error ( 'Sequelize was unable to connect to the database:' , err ) ;
2017-06-19 18:37:35 +02:00
} ) ;
2017-06-15 20:15:13 +02:00
2017-11-01 00:44:32 +01:00
// add each model to the db object
2017-07-13 00:30:31 +02:00
fs
. readdirSync ( _ _dirname )
. filter ( file => {
return ( file . indexOf ( '.' ) !== 0 && file !== basename && file . slice ( - 3 ) === '.js' ) ;
} )
. forEach ( file => {
const model = sequelize [ 'import' ] ( path . join ( _ _dirname , file ) ) ;
db [ model . name ] = model ;
} ) ;
2017-06-17 22:51:30 +02:00
2017-11-01 00:44:32 +01:00
// run model.association for each model in the db object that has an association
2017-06-17 22:51:30 +02:00
Object . keys ( db ) . forEach ( modelName => {
2017-06-15 20:15:13 +02:00
if ( db [ modelName ] . associate ) {
2017-07-13 01:57:12 +02:00
logger . info ( 'Associating model:' , modelName ) ;
2017-06-19 18:37:35 +02:00
db [ modelName ] . associate ( db ) ;
2017-06-15 20:15:13 +02:00
}
2017-06-19 18:37:35 +02:00
} ) ;
2017-06-15 20:15:13 +02:00
2017-09-07 21:24:40 +02:00
db . sequelize = sequelize ;
db . Sequelize = Sequelize ;
2017-11-08 16:25:21 +01:00
// add an 'upsert' method to the db object
2017-11-01 00:44:32 +01:00
db . upsert = ( Model , values , condition , tableName ) => {
2017-08-04 20:32:21 +02:00
return Model
. findOne ( { where : condition } )
2017-11-01 00:44:32 +01:00
. then ( obj => {
2017-08-04 20:32:21 +02:00
if ( obj ) { // update
2017-11-01 00:44:32 +01:00
logger . debug ( ` updating record in db. ${ tableName } ` ) ;
2017-08-04 20:32:21 +02:00
return obj . update ( values ) ;
} else { // insert
2017-11-01 00:44:32 +01:00
logger . debug ( ` creating record in db. ${ tableName } ` ) ;
2017-08-04 20:32:21 +02:00
return Model . create ( values ) ;
}
2017-09-08 02:08:06 +02:00
} )
. catch ( function ( error ) {
2017-11-06 23:15:47 +01:00
logger . error ( ` ${ tableName } .upsert error ` , error ) ;
2017-11-30 00:36:23 +01:00
throw error ;
2017-08-04 20:32:21 +02:00
} ) ;
} ;
2017-11-08 16:25:21 +01:00
// add a 'getTrendingClaims' method to the db object
2017-11-01 00:44:32 +01:00
db . getTrendingClaims = ( startDate ) => {
2017-09-07 21:24:40 +02:00
return db . sequelize . query ( ` SELECT COUNT(*), File.* FROM Request LEFT JOIN File ON Request.FileId = File.id WHERE FileId IS NOT NULL AND nsfw != 1 AND trendingEligible = 1 AND Request.createdAt > " ${ startDate } " GROUP BY FileId ORDER BY COUNT(*) DESC LIMIT 25; ` , { type : db . sequelize . QueryTypes . SELECT } ) ;
} ;
2017-06-19 18:37:35 +02:00
module . exports = db ;