mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 03:12:54 +03:00
1ad7a91f4d
refs #6301 - In the migration folder, commands.js changed to builder.js to resolve conflict with the 'commands' inside data/utils/clients/. - a new data/schema/ folder has been added to hold all the code related to the database schema - data/utils/clients have been moved to data/schema/clients - data/utils/index.js has become data/schema/commands.js - data/schema.js has been split, the definition of the DB schema stays put, the additional checks have moved to data/schema/checks.js - data/validation/index.js has become data/schema/versioning.js - data/fixtures has moved to data/migration/fixtures - data/default-settings.json has moved to data/schema/default-settings.json
67 lines
2.5 KiB
JavaScript
67 lines
2.5 KiB
JavaScript
var _ = require('lodash'),
|
|
errors = require('../../errors'),
|
|
config = require('../../config'),
|
|
i18n = require('../../i18n'),
|
|
defaultSettings = require('./default-settings'),
|
|
|
|
initialVersion = '000',
|
|
defaultDatabaseVersion;
|
|
|
|
// Default Database Version
|
|
// The migration version number according to the hardcoded default settings
|
|
// This is the version the database should be at or migrated to
|
|
function getDefaultDatabaseVersion() {
|
|
if (!defaultDatabaseVersion) {
|
|
// This be the current version according to the software
|
|
defaultDatabaseVersion = defaultSettings.core.databaseVersion.defaultValue;
|
|
}
|
|
|
|
return defaultDatabaseVersion;
|
|
}
|
|
|
|
// Database Current Version
|
|
// The migration version number according to the database
|
|
// This is what the database is currently at and may need to be updated
|
|
function getDatabaseVersion() {
|
|
var knex = config.database.knex;
|
|
|
|
return knex.schema.hasTable('settings').then(function (exists) {
|
|
// Check for the current version from the settings table
|
|
if (exists) {
|
|
// Temporary code to deal with old databases with currentVersion settings
|
|
return knex('settings')
|
|
.where('key', 'databaseVersion')
|
|
.orWhere('key', 'currentVersion')
|
|
.select('value')
|
|
.then(function (versions) {
|
|
var databaseVersion = _.reduce(versions, function (memo, version) {
|
|
if (isNaN(version.value)) {
|
|
errors.throwError(i18n.t('errors.data.versioning.index.dbVersionNotRecognized'));
|
|
}
|
|
return parseInt(version.value, 10) > parseInt(memo, 10) ? version.value : memo;
|
|
}, initialVersion);
|
|
|
|
if (!databaseVersion || databaseVersion.length === 0) {
|
|
// we didn't get a response we understood, assume initialVersion
|
|
databaseVersion = initialVersion;
|
|
}
|
|
|
|
return databaseVersion;
|
|
});
|
|
}
|
|
throw new Error(i18n.t('errors.data.versioning.index.settingsTableDoesNotExist'));
|
|
});
|
|
}
|
|
|
|
function setDatabaseVersion() {
|
|
return config.database.knex('settings')
|
|
.where('key', 'databaseVersion')
|
|
.update({value: defaultDatabaseVersion});
|
|
}
|
|
|
|
module.exports = {
|
|
getDefaultDatabaseVersion: getDefaultDatabaseVersion,
|
|
getDatabaseVersion: getDatabaseVersion,
|
|
setDatabaseVersion: setDatabaseVersion
|
|
};
|