-
Notifications
You must be signed in to change notification settings - Fork 251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use the server URL to uniquely ID schema models from different clouds during registration #1562
Conversation
…ey when registering schemas in the registry to ID multi-cloud files
|
var refPath = !string.IsNullOrEmpty(serverUrl) ? string.Concat(serverUrl, OpenApiConstants.V3ReferencedSchemaPath) | ||
: OpenApiConstants.V3ReferenceUri; | ||
|
||
var refUri = new Uri(refPath + schema.Key); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set the Uri kind to avoid exceptions
var refPath = serverUrl != null ? string.Concat(serverUrl, OpenApiConstants.V3ReferencedSchemaPath) | ||
: OpenApiConstants.V3ReferenceUri; | ||
|
||
var refUri = new Uri(refPath + jsonSchema.Key); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set the uri kind
private string RemoveTrailingSlash(string url) | ||
{ | ||
if (!string.IsNullOrEmpty(url) && url.EndsWith("/")) | ||
{ | ||
return url.Substring(0, url.Length - 1); | ||
} | ||
return url; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
private string RemoveTrailingSlash(string url) | |
{ | |
if (!string.IsNullOrEmpty(url) && url.EndsWith("/")) | |
{ | |
return url.Substring(0, url.Length - 1); | |
} | |
return url; | |
} |
var servers = _currentDocument.Servers; | ||
var basePath = servers?.FirstOrDefault()?.Url; | ||
|
||
basePath = RemoveTrailingSlash(basePath); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
basePath = RemoveTrailingSlash(basePath); | |
basePath = basePath?.TrimEnd('/'); |
var refPath = !string.IsNullOrEmpty(serverUrl) ? string.Concat(serverUrl, OpenApiConstants.V3ReferencedSchemaPath) | ||
: OpenApiConstants.V3ReferenceUri; | ||
|
||
var refUri = new Uri(refPath + schema.Key); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
set the uri kind
// Remove any trailing slashes from the server URL | ||
if (!string.IsNullOrEmpty(serverUrl) && serverUrl.EndsWith("/")) | ||
{ | ||
serverUrl = serverUrl.Substring(0, serverUrl.Length - 1); | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Remove any trailing slashes from the server URL | |
if (!string.IsNullOrEmpty(serverUrl) && serverUrl.EndsWith("/")) | |
{ | |
serverUrl = serverUrl.Substring(0, serverUrl.Length - 1); | |
} |
@@ -321,7 +324,19 @@ private static void RegisterComponentsSchemasInGlobalRegistry(IDictionary<string | |||
|
|||
foreach (var schema in schemas) | |||
{ | |||
var refUri = new Uri(OpenApiConstants.V2ReferenceUri + schema.Key); | |||
var servers = context.GetFromTempStorage<IList<OpenApiServer>>(TempStorageKeys.Servers); | |||
var serverUrl = servers?.FirstOrDefault()?.Url; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
var serverUrl = servers?.FirstOrDefault()?.Url; | |
var serverUrl = servers?.FirstOrDefault()?.Url?.TrimEnd('/'); |
Fixes #1555