Ghost/core/server/data/schema/clients/sqlite3.js
naz 38b7f8e311
Fixed "no-shadow" linting error in server/data modules (#12288)
refs 143921948d

- Continuation of changes started in referenced commit
2020-10-20 11:56:46 +13:00

40 lines
1.1 KiB
JavaScript

const _ = require('lodash');
const db = require('../../../data/db');
const doRaw = function doRaw(query, transaction, fn) {
if (!fn) {
fn = transaction;
transaction = null;
}
return (transaction || db.knex).raw(query).then(function (response) {
return fn(response);
});
};
const getTables = function getTables(transaction) {
return doRaw('select * from sqlite_master where type = "table"', transaction, function (response) {
return _.reject(_.map(response, 'tbl_name'), function (name) {
return name === 'sqlite_sequence';
});
});
};
const getIndexes = function getIndexes(table, transaction) {
return doRaw('pragma index_list("' + table + '")', transaction, function (response) {
return _.flatten(_.map(response, 'name'));
});
};
const getColumns = function getColumns(table, transaction) {
return doRaw('pragma table_info("' + table + '")', transaction, function (response) {
return _.flatten(_.map(response, 'name'));
});
};
module.exports = {
getTables: getTables,
getIndexes: getIndexes,
getColumns: getColumns
};