sql2csv/sql2csv.js
2019-09-28 15:30:35 +02:00

80 lines
2.1 KiB
JavaScript

const { execSync } = require('child_process');
class sql2csv {
log(str){
if(!this.options.logging) return;
if(this.options.colors){
console.log(this.options.prefix + str + "\x1b[0m");
} else {
console.log(this.options.prefix + str);
}
}
colorLog(str, color){
if(!this.options.logging) return;
if(this.options.colors){
console.log(this.options.prefix + color + str + "\x1b[0m");
} else {
console.log(this.options.prefix + str);
}
}
warn(str){
if(!this.options.logging) return;
if(this.options.colors){
console.warn(this.options.prefix + "\x1b[33m" + str + "\x1b[0m");
} else {
console.warn(this.options.prefix + str);
}
}
constructor(options) {
if(typeof options != undefined){
this.options = options;
if(this.options.conn) this.conn = this.options.conn;
if(this.options.connection) this.conn = this.options.connection;//long alias for conn
} else {
this.options = {};
}
if(!this.options.prefix) this.options.prefix = "[SQL2CSV] ";
if(this.options.colors == undefined) this.options.colors = true;
if(!this.options.skipMysqlCheck){
try {
this.log("Checking for mysql driver...");
execSync('npm ls mysql --json');
this.log("\x1b[32mMysql driver is installed");
} catch(e){
this.warn("Remember sql2csv needs mysql driver.");
this.warn("You can still use sql2csv with other drivers, but the conversion might not work.")
}
} else {
this.warn("Mysql driver check skipped");
}
this.colorLog("Initialized", "\x1b[32m");
}
query(sql){
return new Promise((resolve, reject) => {
this.conn.query(sql, function (err, result) {
if (err) reject(err);
console.log(result);
resolve(result);
});
}
}
//update certain option
setOption(name, value){
this.options[name] = value;
}
//overwrites options
setOptions(options){
this.options = options;
}
//set connection
setConnection(conn){
this.conn = conn;
}
}
module.exports = sql2csv;