mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
22e13acd65
- All var declarations are now const or let as per ES6 - All comma-separated lists / chained declarations are now one declaration per line - This is for clarity/readability but also made running the var-to-const/let switch smoother - ESLint rules updated to match How this was done: - npm install -g jscodeshift - git clone https://github.com/cpojer/js-codemod.git - git clone git@github.com:TryGhost/Ghost.git shallow-ghost - cd shallow-ghost - jscodeshift -t ../js-codemod/transforms/unchain-variables.js . -v=2 - jscodeshift -t ../js-codemod/transforms/no-vars.js . -v=2 - yarn - yarn test - yarn lint / fix various lint errors (almost all indent) by opening files and saving in vscode - grunt test-regression - sorted!
60 lines
1.9 KiB
JavaScript
60 lines
1.9 KiB
JavaScript
const _ = require('lodash');
|
|
const db = require('../../../data/db');
|
|
|
|
// private
|
|
let doRawAndFlatten;
|
|
|
|
// public
|
|
let getTables;
|
|
|
|
let getIndexes;
|
|
let getColumns;
|
|
let 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
|
|
};
|