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-13 08:05:50 +00:00
|
|
|
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-11-11 13:16:09 +00:00
|
|
|
MySQL.prototype.query = function (sql, callback) {
|
|
|
|
var time = Date.now();
|
|
|
|
var log = this.log;
|
|
|
|
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]) {
|
|
|
|
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') {
|
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);
|
|
|
|
}
|
|
|
|
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';
|
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);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2011-11-04 07:30:25 +00:00
|
|
|
// 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-11-11 13:16:09 +00:00
|
|
|
this.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) {
|
2011-11-04 07:30:25 +00:00
|
|
|
if (typeof filter.where === 'function') {
|
2011-10-08 17:11:26 +00:00
|
|
|
return filter;
|
|
|
|
}
|
2011-11-04 07:30:25 +00:00
|
|
|
var keys = Object.keys(filter.where);
|
2011-10-08 17:11:26 +00:00
|
|
|
return function (obj) {
|
|
|
|
var pass = true;
|
|
|
|
keys.forEach(function (key) {
|
2011-11-04 07:30:25 +00:00
|
|
|
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-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) {
|
2011-11-11 13:16:09 +00:00
|
|
|
this.query('SELECT count(*) as cnt FROM ' + model, 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
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
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();
|
|
|
|
};
|
|
|
|
|