mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 00:11:49 +03:00
be37070fb6
migration from usage of config() to just an object of config. no relevant issue - Change 'loadConfig' task to 'ensureConfig' to more accurately reflect what it is actually doing. Its sole purpose is to make sure a `config.js` file exists, and as such the name now reflects that purpose. - Update config/index.js to export the ghostConfig object directly so that it can be accessed from other modules - Update all references of config(). to config. This was a blind global find all and replace, treat it as such. - Fixes to tests to support new config access method - Allow each test to still work when invoked invidually
59 lines
1.9 KiB
JavaScript
59 lines
1.9 KiB
JavaScript
var _ = require('lodash'),
|
|
when = require('when'),
|
|
config = require('../../../config/index'),
|
|
|
|
//private
|
|
doRawAndFlatten,
|
|
|
|
// public
|
|
getTables,
|
|
getIndexes,
|
|
getColumns,
|
|
checkPostTable;
|
|
|
|
doRawAndFlatten = function doRaw(query, flattenFn) {
|
|
return config.database.knex.raw(query).then(function (response) {
|
|
return _.flatten(flattenFn(response));
|
|
});
|
|
};
|
|
|
|
getTables = function getTables() {
|
|
return doRawAndFlatten('show tables', function (response) {
|
|
return _.map(response[0], function (entry) { return _.values(entry); });
|
|
});
|
|
};
|
|
|
|
getIndexes = function getIndexes(table) {
|
|
return doRawAndFlatten('SHOW INDEXES from ' + table, function (response) {
|
|
return _.pluck(response[0], 'Key_name');
|
|
});
|
|
};
|
|
|
|
getColumns = function getColumns(table) {
|
|
return doRawAndFlatten('SHOW COLUMNS FROM ' + table, function (response) {
|
|
return _.pluck(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() {
|
|
return config.database.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 config.database.knex.raw('ALTER TABLE posts MODIFY ' + entry.Field + ' MEDIUMTEXT').then(function () {
|
|
return when.resolve();
|
|
});
|
|
}
|
|
}));
|
|
});
|
|
};
|
|
|
|
module.exports = {
|
|
checkPostTable: checkPostTable,
|
|
getTables: getTables,
|
|
getIndexes: getIndexes,
|
|
getColumns: getColumns
|
|
}; |