mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-05 01:40:21 +03:00
29 lines
1.0 KiB
JavaScript
29 lines
1.0 KiB
JavaScript
|
const yaml = require('js-yaml'),
|
||
|
debug = require('ghost-ignition').debug('services:settings:yaml-parser'),
|
||
|
common = require('../../lib/common');
|
||
|
|
||
|
/**
|
||
|
* 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.
|
||
|
throw new common.errors.GhostError({
|
||
|
message: common.i18n.t('errors.services.settings.yaml.error', {file: fileName, context: error.reason}),
|
||
|
context: error.message,
|
||
|
err: error,
|
||
|
help: common.i18n.t('errors.services.settings.yaml.help', {file: fileName})
|
||
|
});
|
||
|
}
|
||
|
};
|