2019-01-22 08:55:35 +00:00
|
|
|
const mysql = require('mysql2/promise');
|
|
|
|
const config = require('./config.js');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
init() {
|
2019-10-31 13:14:18 +00:00
|
|
|
if (!this.pool) {
|
2019-01-22 08:55:35 +00:00
|
|
|
this.pool = mysql.createPool(config.mysql);
|
2019-10-31 13:14:18 +00:00
|
|
|
this.pool.on('connection', connection => {
|
|
|
|
connection.config.namedPlaceholders = true;
|
|
|
|
});
|
|
|
|
}
|
2019-01-22 08:55:35 +00:00
|
|
|
},
|
2019-11-18 14:04:51 +00:00
|
|
|
/**
|
|
|
|
* Makes a query from a raw sql
|
|
|
|
* @param {String} query - The raw SQL query
|
|
|
|
* @param {Object} params - Parameterized values
|
|
|
|
*
|
|
|
|
* @return {Object} - Result
|
|
|
|
*/
|
|
|
|
rawSql(query, params) {
|
2019-10-24 05:41:54 +00:00
|
|
|
return this.pool.query(query, params).then(([rows]) => {
|
2019-10-31 11:43:04 +00:00
|
|
|
return rows;
|
2019-10-24 05:41:54 +00:00
|
|
|
});
|
|
|
|
},
|
2019-10-31 11:43:04 +00:00
|
|
|
findOne(query, params) {
|
2019-11-18 14:04:51 +00:00
|
|
|
return this.rawSql(query, params).then(([rows]) => rows);
|
2019-10-31 11:43:04 +00:00
|
|
|
},
|
2019-10-24 05:41:54 +00:00
|
|
|
findFromDef() {
|
|
|
|
|
|
|
|
}
|
2019-01-22 08:55:35 +00:00
|
|
|
};
|