123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418 |
- type X2jOptions = {
- /**
- * Preserve the order of tags in resulting JS object
- *
- * Defaults to `false`
- */
- preserveOrder?: boolean;
- /**
- * Give a prefix to the attribute name in the resulting JS object
- *
- * Defaults to '@_'
- */
- attributeNamePrefix?: string;
- /**
- * A name to group all attributes of a tag under, or `false` to disable
- *
- * Defaults to `false`
- */
- attributesGroupName?: false | string;
- /**
- * The name of the next node in the resulting JS
- *
- * Defaults to `#text`
- */
- textNodeName?: string;
- /**
- * Whether to ignore attributes when parsing
- *
- * When `true` - ignores all the attributes
- *
- * When `false` - parses all the attributes
- *
- * When `Array<string | RegExp>` - filters out attributes that match provided patterns
- *
- * When `Function` - calls the function for each attribute and filters out those for which the function returned `true`
- *
- * Defaults to `true`
- */
- ignoreAttributes?: boolean | (string | RegExp)[] | ((attrName: string, jPath: string) => boolean);
- /**
- * Whether to remove namespace string from tag and attribute names
- *
- * Defaults to `false`
- */
- removeNSPrefix?: boolean;
- /**
- * Whether to allow attributes without value
- *
- * Defaults to `false`
- */
- allowBooleanAttributes?: boolean;
- /**
- * Whether to parse tag value with `strnum` package
- *
- * Defaults to `true`
- */
- parseTagValue?: boolean;
- /**
- * Whether to parse tag value with `strnum` package
- *
- * Defaults to `false`
- */
- parseAttributeValue?: boolean;
- /**
- * Whether to remove surrounding whitespace from tag or attribute value
- *
- * Defaults to `true`
- */
- trimValues?: boolean;
- /**
- * Give a property name to set CDATA values to instead of merging to tag's text value
- *
- * Defaults to `false`
- */
- cdataPropName?: false | string;
- /**
- * If set, parse comments and set as this property
- *
- * Defaults to `false`
- */
- commentPropName?: false | string;
- /**
- * Control how tag value should be parsed. Called only if tag value is not empty
- *
- * @returns {undefined|null} `undefined` or `null` to set original value.
- * @returns {unknown}
- *
- * 1. Different value or value with different data type to set new value.
- * 2. Same value to set parsed value if `parseTagValue: true`.
- *
- * Defaults to `(tagName, val, jPath, hasAttributes, isLeafNode) => val`
- */
- tagValueProcessor?: (tagName: string, tagValue: string, jPath: string, hasAttributes: boolean, isLeafNode: boolean) => unknown;
- /**
- * Control how attribute value should be parsed
- *
- * @param attrName
- * @param attrValue
- * @param jPath
- * @returns {undefined|null} `undefined` or `null` to set original value
- * @returns {unknown}
- *
- * Defaults to `(attrName, val, jPath) => val`
- */
- attributeValueProcessor?: (attrName: string, attrValue: string, jPath: string) => unknown;
- /**
- * Options to pass to `strnum` for parsing numbers
- *
- * Defaults to `{ hex: true, leadingZeros: true, eNotation: true }`
- */
- numberParseOptions?: strnumOptions;
- /**
- * Nodes to stop parsing at
- *
- * Defaults to `[]`
- */
- stopNodes?: string[];
- /**
- * List of tags without closing tags
- *
- * Defaults to `[]`
- */
- unpairedTags?: string[];
- /**
- * Whether to always create a text node
- *
- * Defaults to `false`
- */
- alwaysCreateTextNode?: boolean;
- /**
- * Determine whether a tag should be parsed as an array
- *
- * @param tagName
- * @param jPath
- * @param isLeafNode
- * @param isAttribute
- * @returns {boolean}
- *
- * Defaults to `() => false`
- */
- isArray?: (tagName: string, jPath: string, isLeafNode: boolean, isAttribute: boolean) => boolean;
- /**
- * Whether to process default and DOCTYPE entities
- *
- * Defaults to `true`
- */
- processEntities?: boolean;
- /**
- * Whether to process HTML entities
- *
- * Defaults to `false`
- */
- htmlEntities?: boolean;
- /**
- * Whether to ignore the declaration tag from output
- *
- * Defaults to `false`
- */
- ignoreDeclaration?: boolean;
- /**
- * Whether to ignore Pi tags
- *
- * Defaults to `false`
- */
- ignorePiTags?: boolean;
- /**
- * Transform tag names
- *
- * Defaults to `false`
- */
- transformTagName?: ((tagName: string) => string) | false;
- /**
- * Transform attribute names
- *
- * Defaults to `false`
- */
- transformAttributeName?: ((attributeName: string) => string) | false;
- /**
- * Change the tag name when a different name is returned. Skip the tag from parsed result when false is returned.
- * Modify `attrs` object to control attributes for the given tag.
- *
- * @returns {string} new tag name.
- * @returns false to skip the tag
- *
- * Defaults to `(tagName, jPath, attrs) => tagName`
- */
- updateTag?: (tagName: string, jPath: string, attrs: {[k: string]: string}) => string | boolean;
- };
- type strnumOptions = {
- hex: boolean;
- leadingZeros: boolean,
- skipLike?: RegExp,
- eNotation?: boolean
- }
- type validationOptions = {
- /**
- * Whether to allow attributes without value
- *
- * Defaults to `false`
- */
- allowBooleanAttributes?: boolean;
-
- /**
- * List of tags without closing tags
- *
- * Defaults to `[]`
- */
- unpairedTags?: string[];
- };
- type XmlBuilderOptions = {
- /**
- * Give a prefix to the attribute name in the resulting JS object
- *
- * Defaults to '@_'
- */
- attributeNamePrefix?: string;
- /**
- * A name to group all attributes of a tag under, or `false` to disable
- *
- * Defaults to `false`
- */
- attributesGroupName?: false | string;
- /**
- * The name of the next node in the resulting JS
- *
- * Defaults to `#text`
- */
- textNodeName?: string;
- /**
- * Whether to ignore attributes when building
- *
- * When `true` - ignores all the attributes
- *
- * When `false` - builds all the attributes
- *
- * When `Array<string | RegExp>` - filters out attributes that match provided patterns
- *
- * When `Function` - calls the function for each attribute and filters out those for which the function returned `true`
- *
- * Defaults to `true`
- */
- ignoreAttributes?: boolean | (string | RegExp)[] | ((attrName: string, jPath: string) => boolean);
- /**
- * Give a property name to set CDATA values to instead of merging to tag's text value
- *
- * Defaults to `false`
- */
- cdataPropName?: false | string;
- /**
- * If set, parse comments and set as this property
- *
- * Defaults to `false`
- */
- commentPropName?: false | string;
- /**
- * Whether to make output pretty instead of single line
- *
- * Defaults to `false`
- */
- format?: boolean;
- /**
- * If `format` is set to `true`, sets the indent string
- *
- * Defaults to ` `
- */
- indentBy?: string;
- /**
- * Give a name to a top-level array
- *
- * Defaults to `undefined`
- */
- arrayNodeName?: string;
- /**
- * Create empty tags for tags with no text value
- *
- * Defaults to `false`
- */
- suppressEmptyNode?: boolean;
- /**
- * Suppress an unpaired tag
- *
- * Defaults to `true`
- */
- suppressUnpairedNode?: boolean;
- /**
- * Don't put a value for boolean attributes
- *
- * Defaults to `true`
- */
- suppressBooleanAttributes?: boolean;
- /**
- * Preserve the order of tags in resulting JS object
- *
- * Defaults to `false`
- */
- preserveOrder?: boolean;
- /**
- * List of tags without closing tags
- *
- * Defaults to `[]`
- */
- unpairedTags?: string[];
- /**
- * Nodes to stop parsing at
- *
- * Defaults to `[]`
- */
- stopNodes?: string[];
- /**
- * Control how tag value should be parsed. Called only if tag value is not empty
- *
- * @returns {undefined|null} `undefined` or `null` to set original value.
- * @returns {unknown}
- *
- * 1. Different value or value with different data type to set new value.
- * 2. Same value to set parsed value if `parseTagValue: true`.
- *
- * Defaults to `(tagName, val, jPath, hasAttributes, isLeafNode) => val`
- */
- tagValueProcessor?: (name: string, value: unknown) => unknown;
- /**
- * Control how attribute value should be parsed
- *
- * @param attrName
- * @param attrValue
- * @param jPath
- * @returns {undefined|null} `undefined` or `null` to set original value
- * @returns {unknown}
- *
- * Defaults to `(attrName, val, jPath) => val`
- */
- attributeValueProcessor?: (name: string, value: unknown) => unknown;
- /**
- * Whether to process default and DOCTYPE entities
- *
- * Defaults to `true`
- */
- processEntities?: boolean;
- oneListGroup?: boolean;
- };
- type ESchema = string | object | Array<string|object>;
- type ValidationError = {
- err: {
- code: string;
- msg: string,
- line: number,
- col: number
- };
- };
- export class XMLParser {
- constructor(options?: X2jOptions);
- parse(xmlData: string | Buffer ,validationOptions?: validationOptions | boolean): any;
- /**
- * Add Entity which is not by default supported by this library
- * @param entityIdentifier {string} Eg: 'ent' for &ent;
- * @param entityValue {string} Eg: '\r'
- */
- addEntity(entityIdentifier: string, entityValue: string): void;
- }
- export class XMLValidator{
- static validate( xmlData: string, options?: validationOptions): true | ValidationError;
- }
- export class XMLBuilder {
- constructor(options?: XmlBuilderOptions);
- build(jObj: any): any;
- }
|