loopback-datasource-juggler/lib/adapters/mysql.js

527 lines
16 KiB
JavaScript
Raw Normal View History

var safeRequire = require('../utils').safeRequire;
2011-10-08 17:11:26 +00:00
/**
* Module dependencies
*/
var mysql = safeRequire('mysql');
var BaseSQL = require('../sql');
2011-10-08 17:11:26 +00:00
exports.initialize = function initializeSchema(schema, callback) {
if (!mysql) return;
2011-10-08 17:11:26 +00:00
var s = schema.settings;
2012-09-26 04:08:27 +00:00
schema.client = mysql.createConnection({
2011-10-08 17:11:26 +00:00
host: s.host || 'localhost',
port: s.port || 3306,
2011-10-23 19:43:53 +00:00
user: s.username,
2011-10-08 17:11:26 +00:00
password: s.password,
debug: s.debug
});
schema.adapter = new MySQL(schema.client);
2012-03-22 19:46:16 +00:00
schema.adapter.schema = schema;
2012-01-30 15:43:45 +00:00
// schema.client.query('SET TIME_ZONE = "+04:00"', callback);
2012-06-25 10:13:08 +00:00
schema.client.query('USE `' + s.database + '`', function (err) {
2012-03-22 19:46:16 +00:00
if (err && err.message.match(/^unknown database/i)) {
var dbName = s.database;
schema.client.query('CREATE DATABASE ' + dbName, function (error) {
if (!error) {
2012-03-24 13:50:52 +00:00
schema.client.query('USE ' + s.database, callback);
2012-03-22 19:46:16 +00:00
} else {
throw error;
}
});
} else callback();
});
2011-10-08 17:11:26 +00:00
};
2012-03-27 14:22:24 +00:00
/**
* MySQL adapter
*/
2011-10-08 17:11:26 +00:00
function MySQL(client) {
this._models = {};
this.client = client;
}
require('util').inherits(MySQL, BaseSQL);
2011-12-09 15:23:29 +00:00
2011-11-11 13:16:09 +00:00
MySQL.prototype.query = function (sql, callback) {
2012-03-22 19:46:16 +00:00
if (!this.schema.connected) {
return this.schema.on('connected', function () {
this.query(sql, callback);
}.bind(this));
}
var client = this.client;
2011-11-11 13:16:09 +00:00
var time = Date.now();
var log = this.log;
2011-12-09 15:23:29 +00:00
if (typeof callback !== 'function') throw new Error('callback should be a function');
2011-11-11 13:16:09 +00:00
this.client.query(sql, function (err, data) {
2012-03-22 19:46:16 +00:00
if (err && err.message.match(/^unknown database/i)) {
var dbName = err.message.match(/^unknown database '(.*?)'/i)[1];
client.query('CREATE DATABASE ' + dbName, function (error) {
if (!error) {
client.query(sql, callback);
} else {
callback(err);
}
});
return;
}
2012-03-11 04:48:38 +00:00
if (log) log(sql, time);
2011-11-11 13:16:09 +00:00
callback(err, data);
});
};
2011-10-23 19:43:53 +00:00
/**
* Must invoke callback(err, id)
*/
2011-10-08 17:11:26 +00:00
MySQL.prototype.create = function (model, data, callback) {
2011-10-23 19:43:53 +00:00
var fields = this.toFields(model, data);
2012-03-10 10:32:14 +00:00
var sql = 'INSERT INTO ' + this.tableEscaped(model);
2011-10-23 19:43:53 +00:00
if (fields) {
sql += ' SET ' + fields;
} else {
sql += ' VALUES ()';
}
2011-11-11 13:16:09 +00:00
this.query(sql, function (err, info) {
2011-10-23 19:43:53 +00:00
callback(err, info && info.insertId);
});
};
2012-03-22 19:46:16 +00:00
MySQL.prototype.updateOrCreate = function (model, data, callback) {
var mysql = this;
var fieldsNames = [];
var fieldValues = [];
var combined = [];
var props = this._models[model].properties;
Object.keys(data).forEach(function (key) {
if (props[key] || key === 'id') {
var k = '`' + key + '`';
var v;
if (key !== 'id') {
v = mysql.toDatabase(props[key], data[key]);
} else {
v = data[key];
}
fieldsNames.push(k);
fieldValues.push(v);
if (key !== 'id') combined.push(k + ' = ' + v);
}
});
var sql = 'INSERT INTO ' + this.tableEscaped(model);
sql += ' (' + fieldsNames.join(', ') + ')';
sql += ' VALUES (' + fieldValues.join(', ') + ')';
sql += ' ON DUPLICATE KEY UPDATE ' + combined.join(', ');
this.query(sql, function (err, info) {
if (!err && info && info.insertId) {
data.id = info.insertId;
}
callback(err, data);
});
};
2011-10-23 19:43:53 +00:00
MySQL.prototype.toFields = function (model, data) {
var fields = [];
var props = this._models[model].properties;
Object.keys(data).forEach(function (key) {
if (props[key]) {
2012-01-19 20:16:30 +00:00
fields.push('`' + key.replace(/\./g, '`.`') + '` = ' + this.toDatabase(props[key], data[key]));
2011-10-23 19:43:53 +00:00
}
2011-10-08 17:11:26 +00:00
}.bind(this));
2011-10-23 19:43:53 +00:00
return fields.join(',');
2011-10-08 17:11:26 +00:00
};
function dateToMysql(val) {
return val.getUTCFullYear() + '-' +
fillZeros(val.getUTCMonth() + 1) + '-' +
fillZeros(val.getUTCDate()) + ' ' +
fillZeros(val.getUTCHours()) + ':' +
fillZeros(val.getUTCMinutes()) + ':' +
fillZeros(val.getUTCSeconds());
function fillZeros(v) {
return v < 10 ? '0' + v : v;
}
}
2011-10-23 19:43:53 +00:00
MySQL.prototype.toDatabase = function (prop, val) {
if (val === null) return 'NULL';
2012-02-01 17:33:08 +00:00
if (val.constructor.name === 'Object') {
var operator = Object.keys(val)[0]
val = val[operator];
if (operator === 'between') {
return this.toDatabase(prop, val[0]) +
' AND ' +
this.toDatabase(prop, val[1]);
2012-02-04 11:25:07 +00:00
} else if (operator == 'inq' || operator == 'nin') {
2012-03-10 08:39:39 +00:00
if (!(val.propertyIsEnumerable('length')) && typeof val === 'object' && typeof val.length === 'number') { //if value is array
return val.join(',');
} else {
return val;
}
}
2012-02-01 17:33:08 +00:00
}
2012-04-19 15:20:10 +00:00
if (!prop) return val;
2012-02-01 17:33:08 +00:00
if (prop.type.name === 'Number') return val;
2011-10-23 19:43:53 +00:00
if (prop.type.name === 'Date') {
2011-11-12 12:04:07 +00:00
if (!val) return 'NULL';
2011-10-23 19:43:53 +00:00
if (!val.toUTCString) {
val = new Date(val);
}
return '"' + dateToMysql(val) + '"';
2011-10-23 19:43:53 +00:00
}
if (prop.type.name == "Boolean") return val ? 1 : 0;
2011-10-23 19:43:53 +00:00
return this.client.escape(val.toString());
};
MySQL.prototype.fromDatabase = function (model, data) {
if (!data) return null;
var props = this._models[model].properties;
Object.keys(data).forEach(function (key) {
var val = data[key];
if (props[key]) {
if (props[key].type.name === 'Date' && val !== null) {
val = new Date(val.toString().replace(/GMT.*$/, 'GMT'));
}
2011-10-08 17:11:26 +00:00
}
2011-10-23 19:43:53 +00:00
data[key] = val;
});
return data;
};
MySQL.prototype.escapeName = function (name) {
2012-03-10 08:39:39 +00:00
return '`' + name.replace(/\./g, '`.`') + '`';
2011-10-08 17:11:26 +00:00
};
MySQL.prototype.all = function all(model, filter, callback) {
2012-01-19 20:16:30 +00:00
var sql = 'SELECT * FROM ' + this.tableEscaped(model);
2012-01-19 20:16:30 +00:00
var self = this;
var props = this._models[model].properties;
if (filter) {
if (filter.where) {
sql += ' ' + buildWhere(filter.where);
}
if (filter.order) {
sql += ' ' + buildOrderBy(filter.order);
}
if (filter.limit) {
sql += ' ' + buildLimit(filter.limit, filter.offset || 0);
}
}
this.query(sql, function (err, data) {
2011-10-08 17:11:26 +00:00
if (err) {
return callback(err, []);
}
callback(null, data.map(function (obj) {
return self.fromDatabase(model, obj);
}));
2011-10-08 17:11:26 +00:00
}.bind(this));
2012-01-19 20:16:30 +00:00
return sql;
function buildWhere(conds) {
var cs = [];
Object.keys(conds).forEach(function (key) {
var keyEscaped = '`' + key.replace(/\./g, '`.`') + '`'
2012-02-01 17:33:08 +00:00
var val = self.toDatabase(props[key], conds[key]);
2012-01-19 20:16:30 +00:00
if (conds[key] === null) {
cs.push(keyEscaped + ' IS NULL');
2012-02-01 17:33:08 +00:00
} else if (conds[key].constructor.name === 'Object') {
var condType = Object.keys(conds[key])[0];
var sqlCond = keyEscaped;
switch (condType) {
case 'gt':
2012-03-10 08:39:39 +00:00
sqlCond += ' > ';
break;
2012-02-01 17:33:08 +00:00
case 'gte':
2012-03-10 08:39:39 +00:00
sqlCond += ' >= ';
break;
2012-02-01 17:33:08 +00:00
case 'lt':
2012-03-10 08:39:39 +00:00
sqlCond += ' < ';
break;
2012-02-01 17:33:08 +00:00
case 'lte':
2012-03-10 08:39:39 +00:00
sqlCond += ' <= ';
break;
2012-02-01 17:33:08 +00:00
case 'between':
2012-03-10 08:39:39 +00:00
sqlCond += ' BETWEEN ';
break;
case 'inq':
sqlCond += ' IN ';
break;
case 'nin':
sqlCond += ' NOT IN ';
break;
case 'neq':
2012-05-04 18:19:59 +00:00
sqlCond += ' != ';
2012-03-10 08:39:39 +00:00
break;
2012-02-01 17:33:08 +00:00
}
2012-02-04 11:25:07 +00:00
sqlCond += (condType == 'inq' || condType == 'nin') ? '(' + val + ')' : val;
2012-02-01 17:33:08 +00:00
cs.push(sqlCond);
2012-01-19 20:16:30 +00:00
} else {
2012-02-01 17:33:08 +00:00
cs.push(keyEscaped + ' = ' + val);
2011-10-08 17:11:26 +00:00
}
});
if (cs.length === 0) {
return '';
}
2012-01-19 20:16:30 +00:00
return 'WHERE ' + cs.join(' AND ');
2011-10-08 17:11:26 +00:00
}
2012-01-19 20:16:30 +00:00
function buildOrderBy(order) {
if (typeof order === 'string') order = [order];
return 'ORDER BY ' + order.join(', ');
2011-10-08 17:11:26 +00:00
}
2012-01-19 20:16:30 +00:00
function buildLimit(limit, offset) {
return 'LIMIT ' + (offset ? (offset + ', ' + limit) : limit);
}
};
2011-10-08 17:11:26 +00:00
2011-12-09 15:23:29 +00:00
MySQL.prototype.autoupdate = function (cb) {
var self = this;
var wait = 0;
Object.keys(this._models).forEach(function (model) {
wait += 1;
self.query('SHOW FIELDS FROM ' + self.tableEscaped(model), function (err, fields) {
self.query('SHOW INDEXES FROM ' + self.tableEscaped(model), function (err, indexes) {
if (!err && fields.length) {
self.alterTable(model, fields, indexes, done);
} else {
self.createTable(model, done);
}
});
2011-12-09 15:23:29 +00:00
});
});
function done(err) {
if (err) {
console.log(err);
}
if (--wait === 0 && cb) {
cb();
}
}
};
MySQL.prototype.isActual = function (cb) {
var ok = false;
var self = this;
var wait = 0;
Object.keys(this._models).forEach(function (model) {
wait += 1;
self.query('SHOW FIELDS FROM ' + model, function (err, fields) {
2012-08-19 15:40:21 +00:00
self.query('SHOW INDEXES FROM ' + model, function (err, indexes) {
self.alterTable(model, fields, indexes, done, true);
});
});
});
function done(err, needAlter) {
if (err) {
console.log(err);
}
ok = ok || needAlter;
if (--wait === 0 && cb) {
cb(null, !ok);
}
}
};
MySQL.prototype.alterTable = function (model, actualFields, actualIndexes, done, checkOnly) {
2011-12-09 15:23:29 +00:00
var self = this;
var m = this._models[model];
var propNames = Object.keys(m.properties).filter(function (name) {
return !!m.properties[name];
});
2012-08-19 15:40:21 +00:00
var indexNames = m.settings.indexes ? Object.keys(m.settings.indexes).filter(function (name) {
return !!m.settings.indexes[name];
}) : [];
2011-12-09 15:23:29 +00:00
var sql = [];
2012-08-19 15:40:21 +00:00
var ai = {};
if (actualIndexes) {
actualIndexes.forEach(function (i) {
var name = i.Key_name;
if (!ai[name]) {
ai[name] = {
info: i,
columns: []
};
}
ai[name].columns[i.Seq_in_index - 1] = i.Column_name;
});
}
var aiNames = Object.keys(ai);
2011-12-11 07:51:57 +00:00
// change/add new fields
propNames.forEach(function (propName) {
var found;
actualFields.forEach(function (f) {
if (f.Field === propName) {
found = f;
}
});
if (found) {
actualize(propName, found);
} else {
sql.push('ADD COLUMN `' + propName + '` ' + self.propertySettingsSQL(model, propName));
}
});
// drop columns
2011-12-09 15:23:29 +00:00
actualFields.forEach(function (f) {
2011-12-11 07:51:57 +00:00
var notFound = !~propNames.indexOf(f.Field);
if (f.Field === 'id') return;
if (notFound || !m.properties[f.Field]) {
sql.push('DROP COLUMN `' + f.Field + '`');
2011-12-09 15:23:29 +00:00
}
});
2012-08-19 15:40:21 +00:00
// remove indexes
aiNames.forEach(function (indexName) {
if (indexName === 'id' || indexName === 'PRIMARY') return;
2012-08-19 20:44:15 +00:00
if (indexNames.indexOf(indexName) === -1 && !m.properties[indexName] || m.properties[indexName] && !m.properties[indexName].index) {
2012-08-19 15:40:21 +00:00
sql.push('DROP INDEX `' + indexName + '`');
} else {
// first: check single (only type and kind)
if (m.properties[indexName] && !m.properties[indexName].index) {
// TODO
2012-08-19 20:44:15 +00:00
return;
2012-08-19 15:40:21 +00:00
}
// second: check multiple indexes
var orderMatched = true;
if (indexNames.indexOf(indexName) !== -1) {
m.settings.indexes[indexName].columns.split(/,\s*/).forEach(function (columnName, i) {
if (ai[indexName].columns[i] !== columnName) orderMatched = false;
});
}
if (!orderMatched) {
sql.push('DROP INDEX `' + indexName + '`');
delete ai[indexName];
}
}
});
// add single-column indexes
propNames.forEach(function (propName) {
2012-08-19 15:40:21 +00:00
var i = m.properties[propName].index;
if (!i) {
return;
}
2012-08-19 15:40:21 +00:00
var found = ai[propName] && ai[propName].info;
if (!found) {
2012-08-19 15:40:21 +00:00
var type = '';
var kind = '';
if (i.type) {
type = 'USING ' + i.type;
}
if (i.kind) {
// kind = i.kind;
}
if (kind && type) {
sql.push('ADD ' + kind + ' INDEX `' + propName + '` (`' + propName + '`) ' + type);
} else {
sql.push('ADD ' + kind + ' INDEX `' + propName + '` ' + type + ' (`' + propName + '`) ');
}
}
});
2012-08-19 15:40:21 +00:00
// add multi-column indexes
indexNames.forEach(function (indexName) {
var i = m.settings.indexes[indexName];
var found = ai[indexName] && ai[indexName].info;
if (!found) {
var type = '';
var kind = '';
if (i.type) {
type = 'USING ' + i.kind;
}
2012-08-19 15:40:21 +00:00
if (i.kind) {
kind = i.kind;
}
if (kind && type) {
sql.push('ADD ' + kind + ' INDEX `' + indexName + '` (' + i.columns + ') ' + type);
} else {
sql.push('ADD ' + kind + ' INDEX ' + type + ' `' + indexName + '` (' + i.columns + ')');
}
}
});
2011-12-09 15:23:29 +00:00
if (sql.length) {
var query = 'ALTER TABLE `' + model + '` ' + sql.join(',\n');
if (checkOnly) {
done(null, true, {statements: sql, query: query});
} else {
this.query(query, done);
}
2011-12-09 15:23:29 +00:00
} else {
done();
}
function actualize(propName, oldSettings) {
var newSettings = m.properties[propName];
2011-12-11 07:51:57 +00:00
if (newSettings && changed(newSettings, oldSettings)) {
2011-12-09 15:23:29 +00:00
sql.push('CHANGE COLUMN `' + propName + '` `' + propName + '` ' + self.propertySettingsSQL(model, propName));
}
}
function changed(newSettings, oldSettings) {
if (oldSettings.Null === 'YES' && (newSettings.allowNull === false || newSettings.null === false)) return true;
if (oldSettings.Null === 'NO' && !(newSettings.allowNull === false || newSettings.null === false)) return true;
if (oldSettings.Type.toUpperCase() !== datatype(newSettings)) return true;
return false;
}
};
MySQL.prototype.propertiesSQL = function (model) {
var self = this;
var sql = ['`id` INT(11) NOT NULL AUTO_INCREMENT UNIQUE PRIMARY KEY'];
Object.keys(this._models[model].properties).forEach(function (prop) {
sql.push('`' + prop + '` ' + self.propertySettingsSQL(model, prop));
});
return sql.join(',\n ');
};
MySQL.prototype.propertySettingsSQL = function (model, prop) {
var p = this._models[model].properties[prop];
return datatype(p) + ' ' +
2011-12-11 07:51:57 +00:00
(p.allowNull === false || p['null'] === false ? 'NOT NULL' : 'NULL');
2011-12-09 15:23:29 +00:00
};
function datatype(p) {
var dt = '';
2011-12-09 15:23:29 +00:00
switch (p.type.name) {
2012-09-10 15:57:21 +00:00
default:
2011-12-09 15:23:29 +00:00
case 'String':
2012-06-02 18:33:29 +00:00
case 'JSON':
dt = 'VARCHAR(' + (p.limit || 255) + ')';
break;
2011-12-09 15:23:29 +00:00
case 'Text':
dt = 'TEXT';
break;
2011-12-09 15:23:29 +00:00
case 'Number':
dt = 'INT(' + (p.limit || 11) + ')';
break;
2011-12-09 15:23:29 +00:00
case 'Date':
dt = 'DATETIME';
break;
2011-12-09 15:23:29 +00:00
case 'Boolean':
dt = 'TINYINT(1)';
break;
}
return dt;
2011-12-09 15:23:29 +00:00
}
2012-03-07 07:29:08 +00:00