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

180 lines
4.8 KiB
JavaScript
Raw Normal View History

2011-10-08 17:11:26 +00:00
/**
* Module dependencies
*/
var mysql = require('mysql');
exports.initialize = function initializeSchema(schema, callback) {
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);
2011-11-05 09:55:11 +00:00
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;
};
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;
this.client.query(sql, function (err) {
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 ()';
}
this.client.query(sql, function (err, info) {
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]) {
fields.push(key + ' = ' + this.toDatabase(props[key], data[key]));
}
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
};
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') {
if (!val.toUTCString) {
val = new Date(val);
}
val = [
val.getFullYear(),
val.getMonth() + 1,
val.getDate(),
val.getHours(),
val.getMinutes(),
val.getSeconds()
].join('-');
return this.client.escape(val);
}
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])
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';
this.client.query(sql, function (err, data) {
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';
this.client.query(sql, function (err, data) {
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';
this.client.query(sql, function (err) {
2011-10-08 17:11:26 +00:00
callback(err);
});
};
// TODO: hook up where, order, limit and offset conditions
2011-10-08 17:11:26 +00:00
MySQL.prototype.all = function all(model, filter, callback) {
2011-10-23 19:43:53 +00:00
this.client.query('SELECT * FROM ' + model, function (err, data) {
2011-10-08 17:11:26 +00:00
if (err) {
return callback(err, []);
}
2011-10-23 19:43:53 +00:00
callback(err, filter ? data.filter(applyFilter(filter)) : data);
2011-10-08 17:11:26 +00:00
}.bind(this));
};
function applyFilter(filter) {
if (typeof filter.where === 'function') {
2011-10-08 17:11:26 +00:00
return filter;
}
var keys = Object.keys(filter.where);
2011-10-08 17:11:26 +00:00
return function (obj) {
var pass = true;
keys.forEach(function (key) {
if (!test(filter.where[key], obj[key])) {
2011-10-08 17:11:26 +00:00
pass = false;
}
});
return pass;
}
function test(example, value) {
if (typeof value === 'string' && example && example.constructor.name === 'RegExp') {
return value.match(example);
}
// not strict equality
return example == value;
}
}
MySQL.prototype.destroyAll = function destroyAll(model, callback) {
2011-10-23 19:43:53 +00:00
this.client.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) {
2011-10-23 19:43:53 +00:00
this.client.query('SELECT count(*) as cnt FROM ' + model, function (err, res) {
callback(err, err ? null : res[0].cnt);
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
};