shell bypass 403
"use strict";
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _slicedToArray(r, e) { return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t["return"] && (u = t["return"](), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(r) { if (Array.isArray(r)) return r; }
function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
var _require = require("./doc-utils.js"),
wordToUtf8 = _require.wordToUtf8;
var _require2 = require("./prefix-matcher.js"),
match = _require2.match,
getValue = _require2.getValue,
getValues = _require2.getValues;
function getMatchers(modules, options) {
var matchers = [];
for (var i = 0, l = modules.length; i < l; i++) {
var _module = modules[i];
if (_module.matchers) {
var mmm = _module.matchers(options);
if (!(mmm instanceof Array)) {
throw new Error("module matcher returns a non array");
}
matchers.push.apply(matchers, _toConsumableArray(mmm));
}
}
return matchers;
}
function getMatches(matchers, placeHolderContent, options) {
var matches = [];
for (var i = 0, len = matchers.length; i < len; i++) {
var matcher = matchers[i];
var _matcher = _slicedToArray(matcher, 2),
prefix = _matcher[0],
_module2 = _matcher[1];
var properties = matcher[2] || {};
if (options.match(prefix, placeHolderContent)) {
var values = options.getValues(prefix, placeHolderContent);
if (typeof properties === "function") {
properties = properties(values);
}
if (!properties.value) {
var _values = _slicedToArray(values, 2);
properties.value = _values[1];
}
matches.push(_objectSpread({
type: "placeholder",
prefix: prefix,
module: _module2,
onMatch: properties.onMatch,
priority: properties.priority
}, properties));
}
}
return matches;
}
function moduleParse(placeHolderContent, options) {
var modules = options.modules;
var startOffset = options.startOffset;
var endLindex = options.lIndex;
var moduleParsed;
options.offset = startOffset;
options.match = match;
options.getValue = getValue;
options.getValues = getValues;
var matchers = getMatchers(modules, options);
var matches = getMatches(matchers, placeHolderContent, options);
if (matches.length > 0) {
var bestMatch = null;
for (var _i2 = 0; _i2 < matches.length; _i2++) {
var _match = matches[_i2];
_match.priority || (_match.priority = -_match.value.length);
if (!bestMatch || _match.priority > bestMatch.priority) {
bestMatch = _match;
}
}
bestMatch.offset = startOffset;
delete bestMatch.priority;
bestMatch.endLindex = endLindex;
bestMatch.lIndex = endLindex;
bestMatch.raw = placeHolderContent;
if (bestMatch.onMatch) {
bestMatch.onMatch(bestMatch);
}
delete bestMatch.onMatch;
delete bestMatch.prefix;
return bestMatch;
}
for (var i = 0, l = modules.length; i < l; i++) {
var _module3 = modules[i];
moduleParsed = _module3.parse(placeHolderContent, options);
if (moduleParsed) {
moduleParsed.offset = startOffset;
moduleParsed.endLindex = endLindex;
moduleParsed.lIndex = endLindex;
moduleParsed.raw = placeHolderContent;
return moduleParsed;
}
}
return {
type: "placeholder",
value: placeHolderContent,
offset: startOffset,
endLindex: endLindex,
lIndex: endLindex
};
}
var parser = {
preparse: function preparse(parsed, modules, options) {
function preparse(parsed, options) {
for (var _i4 = 0; _i4 < modules.length; _i4++) {
var _module4 = modules[_i4];
_module4.preparse(parsed, options);
}
}
return {
preparsed: preparse(parsed, options)
};
},
parse: function parse(lexed, modules, options) {
var inPlaceHolder = false;
var placeHolderContent = "";
var startOffset;
var tailParts = [];
var droppedTags = options.fileTypeConfig.droppedTagsInsidePlaceholder || [];
return lexed.reduce(function (parsed, token) {
if (token.type === "delimiter") {
inPlaceHolder = token.position === "start";
if (token.position === "end") {
options.parse = function (placeHolderContent) {
return moduleParse(placeHolderContent, _objectSpread(_objectSpread(_objectSpread({}, options), token), {}, {
startOffset: startOffset,
modules: modules
}));
};
parsed.push(options.parse(wordToUtf8(placeHolderContent)));
Array.prototype.push.apply(parsed, tailParts);
tailParts = [];
}
if (token.position === "start") {
tailParts = [];
startOffset = token.offset;
}
placeHolderContent = "";
return parsed;
}
if (!inPlaceHolder) {
parsed.push(token);
return parsed;
}
if (token.type !== "content" || token.position !== "insidetag") {
if (droppedTags.indexOf(token.tag) !== -1) {
return parsed;
}
tailParts.push(token);
return parsed;
}
placeHolderContent += token.value;
return parsed;
}, []);
},
postparse: function postparse(postparsed, modules, options) {
function getTraits(traitName, postparsed) {
return modules.map(function (module) {
return module.getTraits(traitName, postparsed);
});
}
var errors = [];
function _postparse(postparsed, options) {
return modules.reduce(function (postparsed, module) {
var r = module.postparse(postparsed, _objectSpread(_objectSpread({}, options), {}, {
postparse: function postparse(parsed, opts) {
return _postparse(parsed, _objectSpread(_objectSpread({}, options), opts));
},
getTraits: getTraits
}));
if (r == null) {
return postparsed;
}
if (r.errors) {
Array.prototype.push.apply(errors, r.errors);
return r.postparsed;
}
return r;
}, postparsed);
}
return {
postparsed: _postparse(postparsed, options),
errors: errors
};
}
};
module.exports = parser;