A Waterline adapter for PostgreSQL. May be used in a Sails app or anything using Waterline for the ORM. This is a modified branch of the sails-postgresql v0.11.4
Install is through NPM.
$ npm install sails-postgresql-ppThe following config options are available along with their default values:
config: {
database: 'databaseName',
host: 'localhost',
user: 'root',
password: '',
port: 5432,
poolSize: 10,
ssl: false
};Alternatively, you can supply the connection information in URL format:
config: {
url: 'postgres://username:password@hostname:port/database',
ssl: false
};We are also testing features for future versions of waterline in postgresql. One of these is case sensitive string searching. In order to enable this feature today you can add the following config flag:
postgresql: {
url: 'postgres://username:password@hostname:port/database',
wlNext: {
caseSensitive: true
}
}You can use model level config options to specify a schema to use. This is done by adding the meta key schemaName.
module.exports = Waterline.Collection.extend({
tableName: 'user',
meta: {
schemaName: 'foo'
},
identity: 'user',
connection: 'myAwesomeConnection',
attributes: {
name: 'string'
}
});You can change schema name with a similar code:
Model.metas({schemaName: 'bar'}).find().exec(function (err, records) {
if (err) return console.error(err);
console.log('Change Schema :: ', records);
});You can change Schema with Sails Blueprints with a override parseModel like this in the 'config/bootstrap.js'
if (!actionUtil || !actionUtil.parseModel) {
throw new Error('Blueprints :: ActionUtil :: ParseModel', 'Not Found');
}
actionUtil.parseModel = function parseModelService(req) {
// Ensure a model can be deduced from the request options.
var model = req.options.model || req.options.controller;
if (!model) throw new Error(util.format('No "model" specified in route options.'));
var Model = req._sails.models[model];
if (!Model) throw new Error(util.format('Invalid route option, "model".\nI don\'t know about any models named: `%s`', model));
if (!Model.metas) {
throw new Error(util.format('Model named: `%s` metas function not exists', model));
}
return Model.metas({
schemaName: function schemaChange(req) {
// Check logged user
if (!req.user) {
return 'foo'; // Default schema
}
// Callback the user company schema name
return req.user.company.schemaName;
}
});
};You can clone a specific model like this:
Model.cloneToSchema({newSchema: 'bar'}).exec(function (err, records) {
if (err) return console.error(err);
console.log('Clone Schema Success :: ', records);
});Or yout clone all tables in the schema like this:
var sailsPostgreSqlPpAdapter = sails.adapters['sails-postgresql-pp'];
var sailsConfigModelsConnection = sails.config.models.connection;
sailsPostgreSqlPpAdapter.cloneToSchema(sailsConfigModelsConnection, null, {
oldSchema: 'foo',
newSchema: 'bar'
}, function (err, resolve) {
if (err) return console.error(err);
console.log('Clone Schema Success :: ', { oldSchema: 'foo', newSchema: 'bar'});
});Test are written with mocha. Integration tests are handled by the waterline-adapter-tests project, which tests adapter methods against the latest Waterline API.
To run tests:
$ npm testWaterline is a new kind of storage and retrieval engine. It provides a uniform API for accessing stuff from different kinds of databases, protocols, and 3rd party APIs. That means you write the same code to get users, whether they live in mySQL, LDAP, MongoDB, or Facebook.
To learn more visit the project on GitHub at Waterline.

