spee.ch/models/index.js

82 lines
2.4 KiB
JavaScript
Raw Normal View History

const fs = require('fs');
const path = require('path');
const Sequelize = require('sequelize');
const basename = path.basename(module.filename);
const config = require('config');
const db = {};
2017-06-19 22:22:06 +02:00
const logger = require('winston');
2017-09-14 00:06:45 +02:00
const database = config.get('Database.Database');
const username = config.get('Database.Username');
const password = config.get('Database.Password');
2017-11-01 00:00:12 +01:00
const sequelize = new Sequelize(database, username, password, {
host : 'localhost',
dialect: 'mysql',
2017-06-19 22:22:06 +02:00
logging: false,
2017-08-26 13:31:16 +02:00
pool : {
max : 5,
min : 0,
idle : 10000,
acquire: 10000,
2017-08-26 13:31:16 +02:00
},
2017-06-19 22:22:06 +02:00
});
sequelize
.authenticate()
.then(() => {
logger.info('Sequelize has established mysql connection successfully.');
})
.catch(err => {
logger.error('Sequelize was unable to connect to the database:', err);
});
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-11-01 00:44:32 +01:00
// run model.association for each model in the db object that has an association
Object.keys(db).forEach(modelName => {
if (db[modelName].associate) {
2017-07-13 01:57:12 +02:00
logger.info('Associating model:', modelName);
db[modelName].associate(db);
}
});
2017-09-07 21:24:40 +02:00
db.sequelize = sequelize;
db.Sequelize = Sequelize;
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);
}
})
.catch(function (error) {
2017-08-04 20:32:21 +02:00
logger.error('Sequelize findOne error', error);
});
};
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-11-01 00:44:32 +01:00
db.getRecentClaims = () => {
2017-09-07 21:24:40 +02:00
return db.sequelize.query(`SELECT * FROM File WHERE nsfw != 1 AND trendingEligible = 1 ORDER BY createdAt DESC LIMIT 25;`, { type: db.sequelize.QueryTypes.SELECT });
};
module.exports = db;