mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
|
var _ = require('lodash'),
|
||
|
config = require('../../../config/index'),
|
||
|
|
||
|
//private
|
||
|
doRaw,
|
||
|
|
||
|
// public
|
||
|
getTables,
|
||
|
getIndexes,
|
||
|
getColumns;
|
||
|
|
||
|
|
||
|
doRaw = function doRaw(query, fn) {
|
||
|
return config().database.knex.raw(query).then(function (response) {
|
||
|
return fn(response);
|
||
|
});
|
||
|
};
|
||
|
|
||
|
getTables = function getTables() {
|
||
|
return doRaw('select * from sqlite_master where type = "table"', function (response) {
|
||
|
return _.reject(_.pluck(response, 'tbl_name'), function (name) {
|
||
|
return name === 'sqlite_sequence';
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
getIndexes = function getIndexes(table) {
|
||
|
return doRaw('pragma index_list("' + table + '")', function (response) {
|
||
|
return _.flatten(_.pluck(response, 'name'));
|
||
|
});
|
||
|
};
|
||
|
|
||
|
getColumns = function getColumns(table) {
|
||
|
return doRaw('pragma table_info("' + table + '")', function (response) {
|
||
|
return _.flatten(_.pluck(response, 'name'));
|
||
|
});
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
getTables: getTables,
|
||
|
getIndexes: getIndexes,
|
||
|
getColumns: getColumns
|
||
|
};
|