mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix openapi auth
This commit is contained in:
parent
b5d5667965
commit
cba9657aec
@ -18,11 +18,17 @@ namespace Jellyfin.Server.Filters
|
||||
{
|
||||
var requiredScopes = new List<string>();
|
||||
|
||||
var requiresAuth = false;
|
||||
// Add all method scopes.
|
||||
foreach (var attribute in context.MethodInfo.GetCustomAttributes(true))
|
||||
{
|
||||
if (attribute is AuthorizeAttribute authorizeAttribute
|
||||
&& authorizeAttribute.Policy is not null
|
||||
if (attribute is not AuthorizeAttribute authorizeAttribute)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
requiresAuth = true;
|
||||
if (authorizeAttribute.Policy is not null
|
||||
&& !requiredScopes.Contains(authorizeAttribute.Policy, StringComparer.Ordinal))
|
||||
{
|
||||
requiredScopes.Add(authorizeAttribute.Policy);
|
||||
@ -35,8 +41,13 @@ namespace Jellyfin.Server.Filters
|
||||
{
|
||||
foreach (var attribute in controllerAttributes)
|
||||
{
|
||||
if (attribute is AuthorizeAttribute authorizeAttribute
|
||||
&& authorizeAttribute.Policy is not null
|
||||
if (attribute is not AuthorizeAttribute authorizeAttribute)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
requiresAuth = true;
|
||||
if (authorizeAttribute.Policy is not null
|
||||
&& !requiredScopes.Contains(authorizeAttribute.Policy, StringComparer.Ordinal))
|
||||
{
|
||||
requiredScopes.Add(authorizeAttribute.Policy);
|
||||
@ -44,8 +55,11 @@ namespace Jellyfin.Server.Filters
|
||||
}
|
||||
}
|
||||
|
||||
if (requiredScopes.Count != 0)
|
||||
if (!requiresAuth)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (!operation.Responses.ContainsKey("401"))
|
||||
{
|
||||
operation.Responses.Add("401", new OpenApiResponse { Description = "Unauthorized" });
|
||||
@ -75,4 +89,3 @@ namespace Jellyfin.Server.Filters
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user