mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
2887e416da
refs: TryGhost/Toolbox#147 * Replaces all references to isIgnitionError with isGhostError * Switches use of GhostError to InternalServerError - as GhostError is no longer public There are places where InternalServerError is not the valid error, and new errors should be added to the @tryghost/errors package to ensure that we can use semantically correct errors in those cases.
85 lines
2.7 KiB
JavaScript
85 lines
2.7 KiB
JavaScript
const fs = require('fs-extra');
|
|
const debug = require('@tryghost/debug')('frontend:services:settings:settings-loader');
|
|
const tpl = require('@tryghost/tpl');
|
|
const errors = require('@tryghost/errors');
|
|
const validate = require('./validate');
|
|
|
|
const messages = {
|
|
settingsLoaderError: `Error trying to load YAML setting for {setting} from '{path}'.`
|
|
};
|
|
|
|
class SettingsLoader {
|
|
/**
|
|
* @param {Object} options
|
|
* @param {Function} options.parseYaml yaml parser
|
|
* @param {String} options.settingFilePath routes settings file path
|
|
*/
|
|
constructor({parseYaml, settingFilePath}) {
|
|
this.parseYaml = parseYaml;
|
|
|
|
this.settingFilePath = settingFilePath;
|
|
}
|
|
|
|
/**
|
|
* Functionally same as loadSettingsSync with exception of loading
|
|
* settings asynchronously. This method is used at new places to read settings
|
|
* to prevent blocking the eventloop
|
|
* @returns {Promise<Object>} settingsFile
|
|
*/
|
|
async loadSettings() {
|
|
try {
|
|
const file = await fs.readFile(this.settingFilePath, 'utf8');
|
|
debug('routes settings file found for:', this.settingFilePath);
|
|
|
|
const object = this.parseYaml(file);
|
|
debug('YAML settings file parsed:', this.settingFilePath);
|
|
|
|
return validate(object);
|
|
} catch (err) {
|
|
if (errors.utils.isGhostError(err)) {
|
|
throw err;
|
|
}
|
|
|
|
throw new errors.InternalServerError({
|
|
message: tpl(messages.settingsLoaderError, {
|
|
setting: 'routes',
|
|
path: this.settingFilePath
|
|
}),
|
|
err: err
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Reads the routes.yaml settings file and passes the
|
|
* file to the YAML parser which then returns a JSON object.
|
|
*
|
|
* @returns {Object} settingsFile in following format: {routes: {}, collections: {}, resources: {}}
|
|
*/
|
|
loadSettingsSync() {
|
|
try {
|
|
const file = fs.readFileSync(this.settingFilePath, 'utf8');
|
|
debug('routes settings file found for:', this.settingFilePath);
|
|
|
|
const object = this.parseYaml(file);
|
|
debug('YAML settings file parsed:', this.settingFilePath);
|
|
|
|
return validate(object);
|
|
} catch (err) {
|
|
if (errors.utils.isGhostError(err)) {
|
|
throw err;
|
|
}
|
|
|
|
throw new errors.InternalServerError({
|
|
message: tpl(messages.settingsLoaderError, {
|
|
setting: 'routes',
|
|
path: this.settingFilePath
|
|
}),
|
|
err: err
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = SettingsLoader;
|