Ghost/core/server/data/schema/clients/mysql.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

50 lines
1.8 KiB
JavaScript

const _ = require('lodash');
const db = require('../../../data/db');
const doRawAndFlatten = function doRaw(query, transaction, flattenFn) {
return (transaction || db.knex).raw(query).then(function (response) {
return _.flatten(flattenFn(response));
});
};
const getTables = function getTables(transaction) {
return doRawAndFlatten('show tables', transaction, function (response) {
return _.map(response[0], function (entry) {
return _.values(entry);
});
});
};
const getIndexes = function getIndexes(table, transaction) {
return doRawAndFlatten('SHOW INDEXES from ' + table, transaction, function (response) {
return _.map(response[0], 'Key_name');
});
};
const getColumns = function getColumns(table, transaction) {
return doRawAndFlatten('SHOW COLUMNS FROM ' + table, transaction, function (response) {
return _.map(response[0], 'Field');
});
};
// This function changes the type of posts.html and posts.markdown columns to mediumtext. Due to
// a wrong datatype in schema.js some installations using mysql could have been created using the
// data type text instead of mediumtext.
// For details see: https://github.com/TryGhost/Ghost/issues/1947
const checkPostTable = function checkPostTable(transaction) {
return (transaction || db.knex).raw('SHOW FIELDS FROM posts where Field ="html" OR Field = "markdown"').then(function (response) {
return _.flatten(_.map(response[0], function (entry) {
if (entry.Type.toLowerCase() !== 'mediumtext') {
return (transaction || db.knex).raw('ALTER TABLE posts MODIFY ' + entry.Field + ' MEDIUMTEXT');
}
}));
});
};
module.exports = {
checkPostTable: checkPostTable,
getTables: getTables,
getIndexes: getIndexes,
getColumns: getColumns
};