0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-27 22:49:56 -05:00
ghost/core/server/data/schema/clients/pg.js
Hannah Wolfe 1c85650108 Move db connection out of config
refs #5047

- database connections are not configuration
2016-02-12 13:56:23 +00:00

43 lines
1.3 KiB
JavaScript

var _ = require('lodash'),
db = require('../../../data/db'),
// private
doRawFlattenAndPluck,
// public
getTables,
getIndexes,
getColumns;
doRawFlattenAndPluck = function doRaw(query, name) {
return db.knex.raw(query).then(function (response) {
return _.flatten(_.pluck(response.rows, name));
});
};
getTables = function getTables() {
return doRawFlattenAndPluck(
'SELECT table_name FROM information_schema.tables WHERE table_schema = CURRENT_SCHEMA()', 'table_name'
);
};
getIndexes = function getIndexes(table) {
var selectIndexes = 'SELECT t.relname as table_name, i.relname as index_name, a.attname as column_name' +
' FROM pg_class t, pg_class i, pg_index ix, pg_attribute a' +
' WHERE t.oid = ix.indrelid and i.oid = ix.indexrelid and' +
' a.attrelid = t.oid and a.attnum = ANY(ix.indkey) and t.relname = \'' + table + '\'';
return doRawFlattenAndPluck(selectIndexes, 'index_name');
};
getColumns = function getColumns(table) {
var selectIndexes = 'SELECT column_name FROM information_schema.columns WHERE table_name = \'' + table + '\'';
return doRawFlattenAndPluck(selectIndexes, 'column_name');
};
module.exports = {
getTables: getTables,
getIndexes: getIndexes,
getColumns: getColumns
};