mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 12:44:57 +03:00
bcf5a1bc34
refs #9178 * Add eslint deps, remove old lint deps * Add eslint config, remove old lint configs * Config for server and tests are different * Tweaked rules to suit us * Fix linting in codebase - lots of indent changes. * Fix a real broken test
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
var _ = require('lodash'),
|
|
db = require('../../../data/db'),
|
|
|
|
// private
|
|
doRawAndFlatten,
|
|
|
|
// public
|
|
getTables,
|
|
getIndexes,
|
|
getColumns,
|
|
checkPostTable;
|
|
|
|
doRawAndFlatten = function doRaw(query, transaction, flattenFn) {
|
|
return (transaction || db.knex).raw(query).then(function (response) {
|
|
return _.flatten(flattenFn(response));
|
|
});
|
|
};
|
|
|
|
getTables = function getTables(transaction) {
|
|
return doRawAndFlatten('show tables', transaction, function (response) {
|
|
return _.map(response[0], function (entry) {
|
|
return _.values(entry);
|
|
});
|
|
});
|
|
};
|
|
|
|
getIndexes = function getIndexes(table, transaction) {
|
|
return doRawAndFlatten('SHOW INDEXES from ' + table, transaction, function (response) {
|
|
return _.map(response[0], 'Key_name');
|
|
});
|
|
};
|
|
|
|
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
|
|
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
|
|
};
|