mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
4ac88dce10
* refactored `core/frontend/apps` to destructure common imports * refactored `core/frontend/services/{apps, redirects, routing}` to destructure common imports * refactored `core/frontend/services/settings` to destructure common imports * refactored remaining `core/frontend/services` to destructure common imports * refactored `core/server/adapters` to destructure common imports * refactored `core/server/data/{db, exporter, schema, validation}` to destructure common imports * refactored `core/server/data/importer` to destructure common imports * refactored `core/server/models/{base, plugins, relations}` to destructure common imports * refactored remaining `core/server/models` to destructure common imports * refactored `core/server/api/canary/utils/serializers/output` to destructure common imports * refactored remaining `core/server/api/canary/utils` to destructure common imports * refactored remaining `core/server/api/canary` to destructure common imports * refactored `core/server/api/shared` to destructure common imports * refactored `core/server/api/v2/utils` to destructure common imports * refactored remaining `core/server/api/v2` to destructure common imports * refactored `core/frontend/meta` to destructure common imports * fixed some tests referencing `common.errors` instead of `@tryghost/errors` - Not all of them need to be updated; only updating the ones that are causing failures * fixed errors import being shadowed by local scope
32 lines
1.2 KiB
JavaScript
32 lines
1.2 KiB
JavaScript
const yaml = require('js-yaml');
|
|
const debug = require('ghost-ignition').debug('frontend:services:settings:yaml-parser');
|
|
const {i18n} = require('../../../server/lib/common');
|
|
const errors = require('@tryghost/errors');
|
|
|
|
/**
|
|
* Takes a YAML file, parses it and returns a JSON Object
|
|
* @param {YAML} file the YAML file utf8 encoded
|
|
* @param {String} fileName the name of the file incl. extension
|
|
* @returns {Object} parsed
|
|
*/
|
|
module.exports = function parseYaml(file, fileName) {
|
|
try {
|
|
const parsed = yaml.safeLoad(file);
|
|
|
|
debug('YAML settings file parsed:', fileName);
|
|
|
|
return parsed;
|
|
} catch (error) {
|
|
// CASE: parsing failed, `js-yaml` tells us exactly what and where in the
|
|
// `reason` property as well as in the message.
|
|
// As the file uploaded is invalid, the person uploading must fix this - it's a 4xx error
|
|
throw new errors.IncorrectUsageError({
|
|
message: i18n.t('errors.services.settings.yaml.error', {file: fileName, context: error.reason}),
|
|
code: 'YAML_PARSER_ERROR',
|
|
context: error.message,
|
|
err: error,
|
|
help: i18n.t('errors.services.settings.yaml.help', {file: fileName})
|
|
});
|
|
}
|
|
};
|