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

383 lines
10 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');
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;
schema.client = mysql.createClient({
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,
database: s.database,
debug: s.debug
});
schema.adapter = new MySQL(schema.client);
2012-01-30 15:43:45 +00:00
// schema.client.query('SET TIME_ZONE = "+04:00"', callback);
process.nextTick(callback);
2011-10-08 17:11:26 +00:00
};
function MySQL(client) {
this._models = {};
this.client = client;
}
MySQL.prototype.define = function (descr) {
this._models[descr.model.modelName] = descr;
};
2011-12-09 15:23:29 +00:00
MySQL.prototype.defineProperty = function (model, prop, params) {
this._models[model].properties[prop] = params;
};
2011-11-11 13:16:09 +00:00
MySQL.prototype.query = function (sql, callback) {
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) {
log(sql, time);
callback(err, data);
});
};
2011-10-08 17:11:26 +00:00
MySQL.prototype.save = function (model, data, callback) {
2011-10-23 19:43:53 +00:00
var sql = 'UPDATE ' + model + ' SET ' + this.toFields(model, data) +
' WHERE id = ' + data.id;
2011-11-11 13:16:09 +00:00
this.query(sql, function (err) {
2011-10-23 19:43:53 +00:00
callback(err);
});
2011-10-08 17:11:26 +00:00
};
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);
var sql = 'INSERT ' + model;
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);
});
};
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 (prop.type.name === 'Number') return val;
if (val === null) return 'NULL';
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 = 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.exists = function (model, id, callback) {
var sql = 'SELECT 1 FROM ' + model + ' WHERE id = ' + id + ' LIMIT 1';
2011-11-11 13:16:09 +00:00
this.query(sql, function (err, data) {
2011-10-23 19:43:53 +00:00
if (err) return callback(err);
callback(null, data.length === 1);
2011-10-08 17:11:26 +00:00
});
};
MySQL.prototype.find = function find(model, id, callback) {
2011-10-23 19:43:53 +00:00
var sql = 'SELECT * FROM ' + model + ' WHERE id = ' + id + ' LIMIT 1';
2011-11-11 13:16:09 +00:00
this.query(sql, function (err, data) {
2011-10-23 19:43:53 +00:00
if (data && data.length === 1) {
data[0].id = id;
2011-10-08 17:11:26 +00:00
} else {
2011-10-23 19:43:53 +00:00
data = [null];
2011-10-08 17:11:26 +00:00
}
2011-10-23 19:43:53 +00:00
callback(err, this.fromDatabase(model, data[0]));
}.bind(this));
2011-10-08 17:11:26 +00:00
};
MySQL.prototype.destroy = function destroy(model, id, callback) {
2011-10-23 19:43:53 +00:00
var sql = 'DELETE FROM ' + model + ' WHERE id = ' + id + ' LIMIT 1';
2011-11-11 13:16:09 +00:00
this.query(sql, function (err) {
2011-10-08 17:11:26 +00:00
callback(err);
});
};
MySQL.prototype.all = function all(model, filter, callback) {
2012-01-19 20:16:30 +00:00
var sql = 'SELECT * FROM ' + model;
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, '`.`') + '`'
if (conds[key] === null) {
cs.push(keyEscaped + ' IS NULL');
} else {
cs.push(keyEscaped + ' = ' + self.toDatabase(props[key], conds[key]));
2011-10-08 17:11:26 +00:00
}
});
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
MySQL.prototype.destroyAll = function destroyAll(model, callback) {
2011-11-11 13:16:09 +00:00
this.query('DELETE FROM ' + model, function (err) {
2011-10-08 17:11:26 +00:00
if (err) {
return callback(err, []);
}
2011-10-23 19:43:53 +00:00
callback(err);
2011-10-08 17:11:26 +00:00
}.bind(this));
};
MySQL.prototype.count = function count(model, callback, where) {
var self = this;
var props = this._models[model].properties;
this.query('SELECT count(*) as cnt FROM ' + model + buildWhere(where), function (err, res) {
2011-10-23 19:43:53 +00:00
callback(err, err ? null : res[0].cnt);
2011-10-08 17:11:26 +00:00
});
function buildWhere(conds) {
var cs = [];
Object.keys(conds || {}).forEach(function (key) {
var keyEscaped = '`' + key.replace(/\./g, '`.`') + '`'
if (conds[key] === null) {
cs.push(keyEscaped + ' IS NULL');
} else {
cs.push(keyEscaped + ' = ' + self.toDatabase(props[key], conds[key]));
}
});
return cs.length ? ' WHERE ' + cs.join(' AND ') : '';
}
2011-10-08 17:11:26 +00:00
};
MySQL.prototype.updateAttributes = function updateAttrs(model, id, data, cb) {
2011-10-23 19:43:53 +00:00
data.id = id;
this.save(model, data, cb);
2011-10-08 17:11:26 +00:00
};
2011-11-11 13:16:09 +00:00
MySQL.prototype.disconnect = function disconnect() {
this.client.end();
};
2011-12-09 15:23:29 +00:00
MySQL.prototype.automigrate = function (cb) {
var self = this;
var wait = 0;
Object.keys(this._models).forEach(function (model) {
wait += 1;
self.dropTable(model, function () {
self.createTable(model, function (err) {
if (err) console.log(err);
done();
});
});
});
function done() {
if (--wait === 0 && cb) {
cb();
}
}
};
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 ' + model, function (err, fields) {
self.alterTable(model, fields, done);
});
});
function done(err) {
if (err) {
console.log(err);
}
if (--wait === 0 && cb) {
cb();
}
}
};
MySQL.prototype.alterTable = function (model, actualFields, done) {
var self = this;
var m = this._models[model];
var propNames = Object.keys(m.properties);
var sql = [];
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
}
});
if (sql.length) {
this.query('ALTER TABLE `' + model + '` ' + sql.join(',\n'), done);
} 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.dropTable = function (model, cb) {
this.query('DROP TABLE IF EXISTS ' + model, cb);
};
MySQL.prototype.createTable = function (model, cb) {
this.query('CREATE TABLE ' + model +
' (\n ' + this.propertiesSQL(model) + '\n)', cb);
};
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) {
switch (p.type.name) {
case 'String':
return 'VARCHAR(' + (p.limit || 255) + ')';
case 'Text':
return 'TEXT';
case 'Number':
return 'INT(11)';
case 'Date':
return 'DATETIME';
case 'Boolean':
return 'TINYINT(1)';
}
}