2011-02-05 10:06:52 +08:00
|
|
|
var url = require('url');
|
2011-03-02 04:35:14 +08:00
|
|
|
var defaults = require(__dirname + "/defaults");
|
2010-10-24 01:45:37 +08:00
|
|
|
var events = require('events');
|
|
|
|
|
2011-08-12 10:30:10 +08:00
|
|
|
//compatibility for old nodes
|
2010-10-24 01:45:37 +08:00
|
|
|
if(typeof events.EventEmitter.prototype.once !== 'function') {
|
|
|
|
events.EventEmitter.prototype.once = function (type, listener) {
|
|
|
|
var self = this;
|
|
|
|
self.on(type, function g () {
|
|
|
|
self.removeListener(type, g);
|
|
|
|
listener.apply(this, arguments);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
2011-02-24 09:40:52 +08:00
|
|
|
|
2012-07-06 11:08:18 +08:00
|
|
|
//converts values from javascript types
|
|
|
|
//to their 'raw' counterparts for use as a postgres parameter
|
|
|
|
//note: you can override this function to provide your own conversion mechanism
|
|
|
|
//for complex types, etc...
|
|
|
|
var prepareValue = function(val) {
|
|
|
|
if(val instanceof Date) {
|
|
|
|
return JSON.stringify(val);
|
|
|
|
}
|
|
|
|
if(typeof val === 'undefined') {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return val === null ? null : val.toString();
|
|
|
|
}
|
|
|
|
|
2012-12-11 14:30:16 +08:00
|
|
|
function normalizeQueryConfig (config, values, callback) {
|
|
|
|
//can take in strings or config objects
|
|
|
|
config = (typeof(config) == 'string') ? { text: config } : config;
|
|
|
|
if(values) {
|
|
|
|
if(typeof values === 'function') {
|
|
|
|
config.callback = values;
|
|
|
|
} else {
|
|
|
|
config.values = values;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (callback) {
|
|
|
|
config.callback = callback;
|
|
|
|
}
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2010-12-10 08:10:42 +08:00
|
|
|
module.exports = {
|
2012-12-11 14:30:16 +08:00
|
|
|
prepareValue: prepareValue,
|
|
|
|
normalizeQueryConfig: normalizeQueryConfig
|
2010-12-10 08:10:42 +08:00
|
|
|
}
|