@typespec/http
Advanced tools
Comparing version
@@ -7,3 +7,3 @@ import { createDiagnosticCollector, validateDecoratorTarget, } from "@typespec/compiler"; | ||
const AllowedSegmentSeparators = ["/", ":"]; | ||
function normalizeFragment(fragment) { | ||
function normalizeFragment(fragment, trimLast = false) { | ||
if (fragment.length > 0 && AllowedSegmentSeparators.indexOf(fragment[0]) < 0) { | ||
@@ -13,15 +13,19 @@ // Insert the default separator | ||
} | ||
// Trim any trailing slash | ||
return fragment.replace(/\/$/g, ""); | ||
if (trimLast && fragment[fragment.length - 1] === "/") { | ||
return fragment.slice(0, -1); | ||
} | ||
return fragment; | ||
} | ||
function joinPathSegments(rest) { | ||
let current = ""; | ||
for (const [index, segment] of rest.entries()) { | ||
current += normalizeFragment(segment, index < rest.length - 1); | ||
} | ||
return current; | ||
} | ||
function buildPath(pathFragments) { | ||
// Join all fragments with leading and trailing slashes trimmed | ||
const path = pathFragments.length === 0 | ||
? "/" | ||
: pathFragments | ||
.map(normalizeFragment) | ||
.filter((x) => x !== "") | ||
.join(""); | ||
const path = pathFragments.length === 0 ? "/" : joinPathSegments(pathFragments); | ||
// The final path must start with a '/' | ||
return path.length > 0 && path[0] === "/" ? path : `/${path}`; | ||
return path[0] === "/" ? path : `/${path}`; | ||
} | ||
@@ -28,0 +32,0 @@ export function resolvePathAndParameters(program, operation, overloadBase, options) { |
{ | ||
"name": "@typespec/http", | ||
"version": "0.58.0-dev.5", | ||
"version": "0.58.0-dev.6", | ||
"author": "Microsoft Corporation", | ||
@@ -5,0 +5,0 @@ "description": "TypeSpec HTTP protocol binding", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
321313
0.13%4131
0.1%