123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843 |
- "use strict";
-
- var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
-
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
- exports.default = void 0;
-
- var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
-
- var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
-
- var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
-
- var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
-
- var _addComment = _interopRequireDefault(require("./addComment"));
-
- var _Anchors = _interopRequireDefault(require("./Anchors"));
-
- var _constants = require("./constants");
-
- var _errors = require("./errors");
-
- var _listTagNames = _interopRequireDefault(require("./listTagNames"));
-
- var _schema = _interopRequireDefault(require("./schema"));
-
- var _Alias = _interopRequireDefault(require("./schema/Alias"));
-
- var _Collection = _interopRequireWildcard(require("./schema/Collection"));
-
- var _Node = _interopRequireDefault(require("./schema/Node"));
-
- var _Scalar = _interopRequireDefault(require("./schema/Scalar"));
-
- var _toJSON2 = _interopRequireDefault(require("./toJSON"));
-
- var isCollectionItem = function isCollectionItem(node) {
- return node && [_constants.Type.MAP_KEY, _constants.Type.MAP_VALUE, _constants.Type.SEQ_ITEM].includes(node.type);
- };
-
- var Document =
- /*#__PURE__*/
- function () {
- function Document(options) {
- (0, _classCallCheck2.default)(this, Document);
- this.anchors = new _Anchors.default(options.anchorPrefix);
- this.commentBefore = null;
- this.comment = null;
- this.contents = null;
- this.directivesEndMarker = null;
- this.errors = [];
- this.options = options;
- this.schema = null;
- this.tagPrefixes = [];
- this.version = null;
- this.warnings = [];
- }
-
- (0, _createClass2.default)(Document, [{
- key: "assertCollectionContents",
- value: function assertCollectionContents() {
- if (this.contents instanceof _Collection.default) return true;
- throw new Error('Expected a YAML collection as document contents');
- }
- }, {
- key: "add",
- value: function add(value) {
- this.assertCollectionContents();
- return this.contents.add(value);
- }
- }, {
- key: "addIn",
- value: function addIn(path, value) {
- this.assertCollectionContents();
- this.contents.addIn(path, value);
- }
- }, {
- key: "delete",
- value: function _delete(key) {
- this.assertCollectionContents();
- return this.contents.delete(key);
- }
- }, {
- key: "deleteIn",
- value: function deleteIn(path) {
- if ((0, _Collection.isEmptyPath)(path)) {
- if (this.contents == null) return false;
- this.contents = null;
- return true;
- }
-
- this.assertCollectionContents();
- return this.contents.deleteIn(path);
- }
- }, {
- key: "getDefaults",
- value: function getDefaults() {
- return Document.defaults[this.version] || Document.defaults[this.options.version] || {};
- }
- }, {
- key: "get",
- value: function get(key, keepScalar) {
- return this.contents instanceof _Collection.default ? this.contents.get(key, keepScalar) : undefined;
- }
- }, {
- key: "getIn",
- value: function getIn(path, keepScalar) {
- if ((0, _Collection.isEmptyPath)(path)) return !keepScalar && this.contents instanceof _Scalar.default ? this.contents.value : this.contents;
- return this.contents instanceof _Collection.default ? this.contents.getIn(path, keepScalar) : undefined;
- }
- }, {
- key: "has",
- value: function has(key) {
- return this.contents instanceof _Collection.default ? this.contents.has(key) : false;
- }
- }, {
- key: "hasIn",
- value: function hasIn(path) {
- if ((0, _Collection.isEmptyPath)(path)) return this.contents !== undefined;
- return this.contents instanceof _Collection.default ? this.contents.hasIn(path) : false;
- }
- }, {
- key: "set",
- value: function set(key, value) {
- this.assertCollectionContents();
- this.contents.set(key, value);
- }
- }, {
- key: "setIn",
- value: function setIn(path, value) {
- if ((0, _Collection.isEmptyPath)(path)) this.contents = value;else {
- this.assertCollectionContents();
- this.contents.setIn(path, value);
- }
- }
- }, {
- key: "setSchema",
- value: function setSchema(id, customTags) {
- if (!id && !customTags && this.schema) return;
- if (typeof id === 'number') id = id.toFixed(1);
-
- if (id === '1.0' || id === '1.1' || id === '1.2') {
- if (this.version) this.version = id;else this.options.version = id;
- delete this.options.schema;
- } else if (id && typeof id === 'string') {
- this.options.schema = id;
- }
-
- if (Array.isArray(customTags)) this.options.customTags = customTags;
- var opt = Object.assign({}, this.getDefaults(), this.options);
- this.schema = new _schema.default(opt);
- }
- }, {
- key: "parse",
- value: function parse(node, prevDoc) {
- if (this.options.keepCstNodes) this.cstNode = node;
- if (this.options.keepNodeTypes) this.type = 'DOCUMENT';
- var _node$directives = node.directives,
- directives = _node$directives === void 0 ? [] : _node$directives,
- _node$contents = node.contents,
- contents = _node$contents === void 0 ? [] : _node$contents,
- directivesEndMarker = node.directivesEndMarker,
- error = node.error,
- valueRange = node.valueRange;
-
- if (error) {
- if (!error.source) error.source = this;
- this.errors.push(error);
- }
-
- this.parseDirectives(directives, prevDoc);
- if (directivesEndMarker) this.directivesEndMarker = true;
- this.range = valueRange ? [valueRange.start, valueRange.end] : null;
- this.setSchema();
- this.anchors._cstAliases = [];
- this.parseContents(contents);
- this.anchors.resolveNodes();
-
- if (this.options.prettyErrors) {
- var _iteratorNormalCompletion = true;
- var _didIteratorError = false;
- var _iteratorError = undefined;
-
- try {
- for (var _iterator = this.errors[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
- var _error = _step.value;
- if (_error instanceof _errors.YAMLError) _error.makePretty();
- }
- } catch (err) {
- _didIteratorError = true;
- _iteratorError = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion && _iterator.return != null) {
- _iterator.return();
- }
- } finally {
- if (_didIteratorError) {
- throw _iteratorError;
- }
- }
- }
-
- var _iteratorNormalCompletion2 = true;
- var _didIteratorError2 = false;
- var _iteratorError2 = undefined;
-
- try {
- for (var _iterator2 = this.warnings[Symbol.iterator](), _step2; !(_iteratorNormalCompletion2 = (_step2 = _iterator2.next()).done); _iteratorNormalCompletion2 = true) {
- var warn = _step2.value;
- if (warn instanceof _errors.YAMLError) warn.makePretty();
- }
- } catch (err) {
- _didIteratorError2 = true;
- _iteratorError2 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion2 && _iterator2.return != null) {
- _iterator2.return();
- }
- } finally {
- if (_didIteratorError2) {
- throw _iteratorError2;
- }
- }
- }
- }
-
- return this;
- }
- }, {
- key: "parseDirectives",
- value: function parseDirectives(directives, prevDoc) {
- var _this = this;
-
- var directiveComments = [];
- var hasDirectives = false;
- directives.forEach(function (directive) {
- var comment = directive.comment,
- name = directive.name;
-
- switch (name) {
- case 'TAG':
- _this.resolveTagDirective(directive);
-
- hasDirectives = true;
- break;
-
- case 'YAML':
- case 'YAML:1.0':
- _this.resolveYamlDirective(directive);
-
- hasDirectives = true;
- break;
-
- default:
- if (name) {
- var msg = "YAML only supports %TAG and %YAML directives, and not %".concat(name);
-
- _this.warnings.push(new _errors.YAMLWarning(directive, msg));
- }
-
- }
-
- if (comment) directiveComments.push(comment);
- });
-
- if (prevDoc && !hasDirectives && '1.1' === (this.version || prevDoc.version || this.options.version)) {
- var copyTagPrefix = function copyTagPrefix(_ref) {
- var handle = _ref.handle,
- prefix = _ref.prefix;
- return {
- handle: handle,
- prefix: prefix
- };
- };
-
- this.tagPrefixes = prevDoc.tagPrefixes.map(copyTagPrefix);
- this.version = prevDoc.version;
- }
-
- this.commentBefore = directiveComments.join('\n') || null;
- }
- }, {
- key: "parseContents",
- value: function parseContents(contents) {
- var _this2 = this;
-
- var comments = {
- before: [],
- after: []
- };
- var contentNodes = [];
- var spaceBefore = false;
- contents.forEach(function (node) {
- if (node.valueRange) {
- if (contentNodes.length === 1) {
- var msg = 'Document is not valid YAML (bad indentation?)';
-
- _this2.errors.push(new _errors.YAMLSyntaxError(node, msg));
- }
-
- var res = _this2.resolveNode(node);
-
- if (spaceBefore) {
- res.spaceBefore = true;
- spaceBefore = false;
- }
-
- contentNodes.push(res);
- } else if (node.comment !== null) {
- var cc = contentNodes.length === 0 ? comments.before : comments.after;
- cc.push(node.comment);
- } else if (node.type === _constants.Type.BLANK_LINE) {
- spaceBefore = true;
-
- if (contentNodes.length === 0 && comments.before.length > 0 && !_this2.commentBefore) {
- // space-separated comments at start are parsed as document comments
- _this2.commentBefore = comments.before.join('\n');
- comments.before = [];
- }
- }
- });
-
- switch (contentNodes.length) {
- case 0:
- this.contents = null;
- comments.after = comments.before;
- break;
-
- case 1:
- this.contents = contentNodes[0];
-
- if (this.contents) {
- var cb = comments.before.join('\n') || null;
-
- if (cb) {
- var cbNode = this.contents instanceof _Collection.default && this.contents.items[0] ? this.contents.items[0] : this.contents;
- cbNode.commentBefore = cbNode.commentBefore ? "".concat(cb, "\n").concat(cbNode.commentBefore) : cb;
- }
- } else {
- comments.after = comments.before.concat(comments.after);
- }
-
- break;
-
- default:
- this.contents = contentNodes;
-
- if (this.contents[0]) {
- this.contents[0].commentBefore = comments.before.join('\n') || null;
- } else {
- comments.after = comments.before.concat(comments.after);
- }
-
- }
-
- this.comment = comments.after.join('\n') || null;
- }
- }, {
- key: "resolveTagDirective",
- value: function resolveTagDirective(directive) {
- var _directive$parameters = (0, _slicedToArray2.default)(directive.parameters, 2),
- handle = _directive$parameters[0],
- prefix = _directive$parameters[1];
-
- if (handle && prefix) {
- if (this.tagPrefixes.every(function (p) {
- return p.handle !== handle;
- })) {
- this.tagPrefixes.push({
- handle: handle,
- prefix: prefix
- });
- } else {
- var msg = 'The %TAG directive must only be given at most once per handle in the same document.';
- this.errors.push(new _errors.YAMLSemanticError(directive, msg));
- }
- } else {
- var _msg = 'Insufficient parameters given for %TAG directive';
- this.errors.push(new _errors.YAMLSemanticError(directive, _msg));
- }
- }
- }, {
- key: "resolveYamlDirective",
- value: function resolveYamlDirective(directive) {
- var _directive$parameters2 = (0, _slicedToArray2.default)(directive.parameters, 1),
- version = _directive$parameters2[0];
-
- if (directive.name === 'YAML:1.0') version = '1.0';
-
- if (this.version) {
- var msg = 'The %YAML directive must only be given at most once per document.';
- this.errors.push(new _errors.YAMLSemanticError(directive, msg));
- }
-
- if (!version) {
- var _msg2 = 'Insufficient parameters given for %YAML directive';
- this.errors.push(new _errors.YAMLSemanticError(directive, _msg2));
- } else {
- if (!Document.defaults[version]) {
- var v0 = this.version || this.options.version;
-
- var _msg3 = "Document will be parsed as YAML ".concat(v0, " rather than YAML ").concat(version);
-
- this.warnings.push(new _errors.YAMLWarning(directive, _msg3));
- }
-
- this.version = version;
- }
- }
- }, {
- key: "resolveTagName",
- value: function resolveTagName(node) {
- var tag = node.tag,
- type = node.type;
- var nonSpecific = false;
-
- if (tag) {
- var handle = tag.handle,
- suffix = tag.suffix,
- verbatim = tag.verbatim;
-
- if (verbatim) {
- if (verbatim !== '!' && verbatim !== '!!') return verbatim;
- var msg = "Verbatim tags aren't resolved, so ".concat(verbatim, " is invalid.");
- this.errors.push(new _errors.YAMLSemanticError(node, msg));
- } else if (handle === '!' && !suffix) {
- nonSpecific = true;
- } else {
- var prefix = this.tagPrefixes.find(function (p) {
- return p.handle === handle;
- });
-
- if (!prefix) {
- var dtp = this.getDefaults().tagPrefixes;
- if (dtp) prefix = dtp.find(function (p) {
- return p.handle === handle;
- });
- }
-
- if (prefix) {
- if (suffix) {
- if (handle === '!' && (this.version || this.options.version) === '1.0') {
- if (suffix[0] === '^') return suffix;
-
- if (/[:/]/.test(suffix)) {
- // word/foo -> tag:word.yaml.org,2002:foo
- var vocab = suffix.match(/^([a-z0-9-]+)\/(.*)/i);
- return vocab ? "tag:".concat(vocab[1], ".yaml.org,2002:").concat(vocab[2]) : "tag:".concat(suffix);
- }
- }
-
- return prefix.prefix + decodeURIComponent(suffix);
- }
-
- this.errors.push(new _errors.YAMLSemanticError(node, "The ".concat(handle, " tag has no suffix.")));
- } else {
- var _msg4 = "The ".concat(handle, " tag handle is non-default and was not declared.");
-
- this.errors.push(new _errors.YAMLSemanticError(node, _msg4));
- }
- }
- }
-
- switch (type) {
- case _constants.Type.BLOCK_FOLDED:
- case _constants.Type.BLOCK_LITERAL:
- case _constants.Type.QUOTE_DOUBLE:
- case _constants.Type.QUOTE_SINGLE:
- return _schema.default.defaultTags.STR;
-
- case _constants.Type.FLOW_MAP:
- case _constants.Type.MAP:
- return _schema.default.defaultTags.MAP;
-
- case _constants.Type.FLOW_SEQ:
- case _constants.Type.SEQ:
- return _schema.default.defaultTags.SEQ;
-
- case _constants.Type.PLAIN:
- return nonSpecific ? _schema.default.defaultTags.STR : null;
-
- default:
- return null;
- }
- }
- }, {
- key: "resolveNode",
- value: function resolveNode(node) {
- if (!node) return null;
- var anchors = this.anchors,
- errors = this.errors,
- schema = this.schema;
- var hasAnchor = false;
- var hasTag = false;
- var comments = {
- before: [],
- after: []
- };
- var props = isCollectionItem(node.context.parent) ? node.context.parent.props.concat(node.props) : node.props;
- var _iteratorNormalCompletion3 = true;
- var _didIteratorError3 = false;
- var _iteratorError3 = undefined;
-
- try {
- for (var _iterator3 = props[Symbol.iterator](), _step3; !(_iteratorNormalCompletion3 = (_step3 = _iterator3.next()).done); _iteratorNormalCompletion3 = true) {
- var _step3$value = _step3.value,
- start = _step3$value.start,
- end = _step3$value.end;
-
- switch (node.context.src[start]) {
- case _constants.Char.COMMENT:
- {
- if (!node.commentHasRequiredWhitespace(start)) {
- var _msg7 = 'Comments must be separated from other tokens by white space characters';
- errors.push(new _errors.YAMLSemanticError(node, _msg7));
- }
-
- var c = node.context.src.slice(start + 1, end);
- var header = node.header,
- valueRange = node.valueRange;
-
- if (valueRange && (start > valueRange.start || header && start > header.start)) {
- comments.after.push(c);
- } else {
- comments.before.push(c);
- }
- }
- break;
-
- case _constants.Char.ANCHOR:
- if (hasAnchor) {
- var _msg8 = 'A node can have at most one anchor';
- errors.push(new _errors.YAMLSemanticError(node, _msg8));
- }
-
- hasAnchor = true;
- break;
-
- case _constants.Char.TAG:
- if (hasTag) {
- var _msg9 = 'A node can have at most one tag';
- errors.push(new _errors.YAMLSemanticError(node, _msg9));
- }
-
- hasTag = true;
- break;
- }
- }
- } catch (err) {
- _didIteratorError3 = true;
- _iteratorError3 = err;
- } finally {
- try {
- if (!_iteratorNormalCompletion3 && _iterator3.return != null) {
- _iterator3.return();
- }
- } finally {
- if (_didIteratorError3) {
- throw _iteratorError3;
- }
- }
- }
-
- if (hasAnchor) {
- var name = node.anchor;
- var prev = anchors.getNode(name); // At this point, aliases for any preceding node with the same anchor
- // name have already been resolved, so it may safely be renamed.
-
- if (prev) anchors.map[anchors.newName(name)] = prev; // During parsing, we need to store the CST node in anchors.map as
- // anchors need to be available during resolution to allow for
- // circular references.
-
- anchors.map[name] = node;
- }
-
- var res;
-
- if (node.type === _constants.Type.ALIAS) {
- if (hasAnchor || hasTag) {
- var msg = 'An alias node must not specify any properties';
- errors.push(new _errors.YAMLSemanticError(node, msg));
- }
-
- var _name = node.rawValue;
- var src = anchors.getNode(_name);
-
- if (!src) {
- var _msg5 = "Aliased anchor not found: ".concat(_name);
-
- errors.push(new _errors.YAMLReferenceError(node, _msg5));
- return null;
- } // Lazy resolution for circular references
-
-
- res = new _Alias.default(src);
-
- anchors._cstAliases.push(res);
- } else {
- var tagName = this.resolveTagName(node);
-
- if (tagName) {
- res = schema.resolveNodeWithFallback(this, node, tagName);
- } else {
- if (node.type !== _constants.Type.PLAIN) {
- var _msg6 = "Failed to resolve ".concat(node.type, " node here");
-
- errors.push(new _errors.YAMLSyntaxError(node, _msg6));
- return null;
- }
-
- try {
- res = schema.resolveScalar(node.strValue || '');
- } catch (error) {
- if (!error.source) error.source = node;
- errors.push(error);
- return null;
- }
- }
- }
-
- if (res) {
- res.range = [node.range.start, node.range.end];
- if (this.options.keepCstNodes) res.cstNode = node;
- if (this.options.keepNodeTypes) res.type = node.type;
- var cb = comments.before.join('\n');
-
- if (cb) {
- res.commentBefore = res.commentBefore ? "".concat(res.commentBefore, "\n").concat(cb) : cb;
- }
-
- var ca = comments.after.join('\n');
- if (ca) res.comment = res.comment ? "".concat(res.comment, "\n").concat(ca) : ca;
- }
-
- return node.resolved = res;
- }
- }, {
- key: "listNonDefaultTags",
- value: function listNonDefaultTags() {
- return (0, _listTagNames.default)(this.contents).filter(function (t) {
- return t.indexOf(_schema.default.defaultPrefix) !== 0;
- });
- }
- }, {
- key: "setTagPrefix",
- value: function setTagPrefix(handle, prefix) {
- if (handle[0] !== '!' || handle[handle.length - 1] !== '!') throw new Error('Handle must start and end with !');
-
- if (prefix) {
- var prev = this.tagPrefixes.find(function (p) {
- return p.handle === handle;
- });
- if (prev) prev.prefix = prefix;else this.tagPrefixes.push({
- handle: handle,
- prefix: prefix
- });
- } else {
- this.tagPrefixes = this.tagPrefixes.filter(function (p) {
- return p.handle !== handle;
- });
- }
- }
- }, {
- key: "stringifyTag",
- value: function stringifyTag(tag) {
- if ((this.version || this.options.version) === '1.0') {
- var priv = tag.match(/^tag:private\.yaml\.org,2002:([^:/]+)$/);
- if (priv) return '!' + priv[1];
- var vocab = tag.match(/^tag:([a-zA-Z0-9-]+)\.yaml\.org,2002:(.*)/);
- return vocab ? "!".concat(vocab[1], "/").concat(vocab[2]) : "!".concat(tag.replace(/^tag:/, ''));
- } else {
- var p = this.tagPrefixes.find(function (p) {
- return tag.indexOf(p.prefix) === 0;
- });
-
- if (!p) {
- var dtp = this.getDefaults().tagPrefixes;
- p = dtp && dtp.find(function (p) {
- return tag.indexOf(p.prefix) === 0;
- });
- }
-
- if (!p) return tag[0] === '!' ? tag : "!<".concat(tag, ">");
- var suffix = tag.substr(p.prefix.length).replace(/[!,[\]{}]/g, function (ch) {
- return {
- '!': '%21',
- ',': '%2C',
- '[': '%5B',
- ']': '%5D',
- '{': '%7B',
- '}': '%7D'
- }[ch];
- });
- return p.handle + suffix;
- }
- }
- }, {
- key: "toJSON",
- value: function toJSON(arg) {
- var _this3 = this;
-
- var _this$options = this.options,
- keepBlobsInJSON = _this$options.keepBlobsInJSON,
- mapAsMap = _this$options.mapAsMap,
- maxAliasCount = _this$options.maxAliasCount;
- var keep = keepBlobsInJSON && (typeof arg !== 'string' || !(this.contents instanceof _Scalar.default));
- var ctx = {
- doc: this,
- keep: keep,
- mapAsMap: keep && !!mapAsMap,
- maxAliasCount: maxAliasCount
- };
- var anchorNames = Object.keys(this.anchors.map);
- if (anchorNames.length > 0) ctx.anchors = anchorNames.map(function (name) {
- return {
- alias: [],
- aliasCount: 0,
- count: 1,
- node: _this3.anchors.map[name]
- };
- });
- return (0, _toJSON2.default)(this.contents, arg, ctx);
- }
- }, {
- key: "toString",
- value: function toString() {
- if (this.errors.length > 0) throw new Error('Document with errors cannot be stringified');
- this.setSchema();
- var lines = [];
- var hasDirectives = false;
-
- if (this.version) {
- var vd = '%YAML 1.2';
-
- if (this.schema.name === 'yaml-1.1') {
- if (this.version === '1.0') vd = '%YAML:1.0';else if (this.version === '1.1') vd = '%YAML 1.1';
- }
-
- lines.push(vd);
- hasDirectives = true;
- }
-
- var tagNames = this.listNonDefaultTags();
- this.tagPrefixes.forEach(function (_ref2) {
- var handle = _ref2.handle,
- prefix = _ref2.prefix;
-
- if (tagNames.some(function (t) {
- return t.indexOf(prefix) === 0;
- })) {
- lines.push("%TAG ".concat(handle, " ").concat(prefix));
- hasDirectives = true;
- }
- });
- if (hasDirectives || this.directivesEndMarker) lines.push('---');
-
- if (this.commentBefore) {
- if (hasDirectives || !this.directivesEndMarker) lines.unshift('');
- lines.unshift(this.commentBefore.replace(/^/gm, '#'));
- }
-
- var ctx = {
- anchors: {},
- doc: this,
- indent: ''
- };
- var chompKeep = false;
- var contentComment = null;
-
- if (this.contents) {
- if (this.contents instanceof _Node.default) {
- if (this.contents.spaceBefore && (hasDirectives || this.directivesEndMarker)) lines.push('');
- if (this.contents.commentBefore) lines.push(this.contents.commentBefore.replace(/^/gm, '#')); // top-level block scalars need to be indented if followed by a comment
-
- ctx.forceBlockIndent = !!this.comment;
- contentComment = this.contents.comment;
- }
-
- var onChompKeep = contentComment ? null : function () {
- return chompKeep = true;
- };
- var body = this.schema.stringify(this.contents, ctx, function () {
- return contentComment = null;
- }, onChompKeep);
- lines.push((0, _addComment.default)(body, '', contentComment));
- } else if (this.contents !== undefined) {
- lines.push(this.schema.stringify(this.contents, ctx));
- }
-
- if (this.comment) {
- if ((!chompKeep || contentComment) && lines[lines.length - 1] !== '') lines.push('');
- lines.push(this.comment.replace(/^/gm, '#'));
- }
-
- return lines.join('\n') + '\n';
- }
- }]);
- return Document;
- }();
-
- exports.default = Document;
- (0, _defineProperty2.default)(Document, "defaults", {
- '1.0': {
- schema: 'yaml-1.1',
- merge: true,
- tagPrefixes: [{
- handle: '!',
- prefix: _schema.default.defaultPrefix
- }, {
- handle: '!!',
- prefix: 'tag:private.yaml.org,2002:'
- }]
- },
- '1.1': {
- schema: 'yaml-1.1',
- merge: true,
- tagPrefixes: [{
- handle: '!',
- prefix: '!'
- }, {
- handle: '!!',
- prefix: _schema.default.defaultPrefix
- }]
- },
- '1.2': {
- schema: 'core',
- merge: false,
- tagPrefixes: [{
- handle: '!',
- prefix: '!'
- }, {
- handle: '!!',
- prefix: _schema.default.defaultPrefix
- }]
- }
- });
|