Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
openapi-path-templating
Advanced tools
Path Templating allow defining values based on information that will only be available within the HTTP message in an actual API call. This mechanism is used by Paths Object of OpenAPI specification.
openapi-path-templating
is a parser, validator and resolver for OpenAPI Path Templating. It supports
Path Templating defined in following OpenAPI specification versions:
You can install openapi-path-templating
using npm
:
$ npm install openapi-path-templating
Given that openapi-path-templating
is a pure ESM package
you can also install it directly from GitHub.
$ npm install github:char0n/openapi-path-templating
openapi-path-templating
currently supports parsing, validation and resolution.
Both parser and validator are based on a superset of ABNF (SABNF)
and use apg-js parser generator.
Parsing a Path template expression is as simple as importing the parse function and calling it.
import { parse } from 'openapi-path-templating';
const parseResult = parse('/pets/{petId}');
parseResult.result.success; // => true
parseResult variable has the following shape:
{
result: {
success: true,
state: 101,
length: 13,
matched: 13,
maxMatched: 13,
maxTreeDepth: 15,
nodeHits: 279,
inputLength: 13,
subBegin: 0,
subEnd: 13,
subLength: 13
},
ast: exportsAst {
callbacks: [
'path-template': [Function: pathTemplate],
slash: [Function: slash],
'path-literal': [Function: pathLiteral],
'template-expression': [Function: templateExpression]
],
astObject: 'astObject',
init: [Function: init],
ruleDefined: [Function: ruleDefined],
udtDefined: [Function: udtDefined],
down: [Function: down],
up: [Function: up],
translate: [Function: translate],
setLength: [Function: setLength],
getLength: [Function: getLength],
toXml: [Function: toSml],
phrases: [Function: phrases]
}
}
import { parse } from 'openapi-path-templating';
const parseResult = parse('/pets/{petId}');
const parts = [];
parseResult.ast.translate(parts);
After running the above code, parts variable has the following shape:
[
[ 'path-template', '/pets/{petId}' ],
[ 'slash', '/' ],
[ 'path-literal', 'pets' ],
[ 'slash', '/' ],
[ 'template-expression', '{petId}' ]
]
import { parse } from 'openapi-path-templating';
const parseResult = parse('/pets/{petId}');
const xml = parseResult.ast.toXml();
After running the above code, xml variable has the following content:
<?xml version="1.0" encoding="utf-8"?>
<root nodes="5" characters="13">
<!-- input string, decimal integer character codes -->
47,112,101,116,115,47,123,112,101,116,73,100,125
<node name="path-template" index="0" length="13">
47,112,101,116,115,47,123,112,101,116,73,100,125
<node name="slash" index="0" length="1">
47
</node><!-- name="slash" -->
<node name="path-literal" index="1" length="4">
112,101,116,115
</node><!-- name="path-literal" -->
<node name="slash" index="5" length="1">
47
</node><!-- name="slash" -->
<node name="template-expression" index="6" length="7">
123,112,101,116,73,100,125
</node><!-- name="template-expression" -->
</node><!-- name="path-template" -->
</root>
NOTE: AST can also be traversed in classical way using depth first traversal. For more information about this option please refer to apg-js and apg-js-examples.
Validating a Path Templating is as simple as importing the test function and calling it.
import { test } from 'openapi-path-templating';
test('/pets/{petId}'); // => true
test('/pets'); // => false
[!IMPORTANT] Note that Relative URIs without path template expressions (like "/pets") always returns
false
.
Resolving a Path Templating is as simple as importing the resolve function and calling it.
import { resolve } from 'openapi-path-templating';
resolve('/pets/{petId}', { petId: 3 }); // => "/pets/3"
New grammar instance can be created in following way:
import { Grammar } from 'openapi-path-templating';
const grammar = new Grammar();
To obtain original ABNF (SABNF) grammar as a string:
import { Grammar } from 'openapi-path-templating';
const grammar = new Grammar();
grammar.toString();
// or
String(grammar);
The Path Templating is defined by the following ABNF syntax
; OpenAPI Path Templating ABNF syntax
path-template = slash *( ( path-literal / template-expression ) slash ) [ path-literal / template-expression ]
slash = "/"
path-literal = 1*( unreserved / pct-encoded / sub-delims-no-slash / ":" / "@" )
template-expression = "{" param-name "}"
param-name = 1*( unreserved / pct-encoded / sub-delims-no-slash / ":" / "@" )
; Characters definitions (from RFC 3986)
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
pct-encoded = "%" HEXDIG HEXDIG
sub-delims-no-slash = "!" / "$" / "&" / "'" / "(" / ")"
/ "*" / "+" / "," / ";"
ALPHA = %x41-5A / %x61-7A ; A-Z / a-z
DIGIT = %x30-39 ; 0-9
HEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"
openapi-path-templating
is licensed under Apache 2.0 license.
openapi-path-templating
comes with an explicit NOTICE file
containing additional legal notices and information.
FAQs
OpenAPI Path Templating parser, validator, resolver and matcher.
The npm package openapi-path-templating receives a total of 182,426 weekly downloads. As such, openapi-path-templating popularity was classified as popular.
We found that openapi-path-templating demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.