Skip to content
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

Closed
wants to merge 5 commits into from

Conversation

MaggieKimani1
Copy link
Contributor

Fixes #1555

Copy link

Quality Gate Failed Quality Gate failed

Failed conditions
18.8% Duplication on New Code (required ≤ 3%)

See analysis details on SonarCloud

var refPath = !string.IsNullOrEmpty(serverUrl) ? string.Concat(serverUrl, OpenApiConstants.V3ReferencedSchemaPath)
: OpenApiConstants.V3ReferenceUri;

var refUri = new Uri(refPath + schema.Key);
Copy link
Member

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);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

set the uri kind

Comment on lines +453 to +460
private string RemoveTrailingSlash(string url)
{
if (!string.IsNullOrEmpty(url) && url.EndsWith("/"))
{
return url.Substring(0, url.Length - 1);
}
return url;
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
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);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

set the uri kind

Comment on lines +330 to +335
// Remove any trailing slashes from the server URL
if (!string.IsNullOrEmpty(serverUrl) && serverUrl.EndsWith("/"))
{
serverUrl = serverUrl.Substring(0, serverUrl.Length - 1);
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// 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;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
var serverUrl = servers?.FirstOrDefault()?.Url;
var serverUrl = servers?.FirstOrDefault()?.Url?.TrimEnd('/');

@baywet baywet deleted the mk/schema-registry branch November 12, 2024 11:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants