SwaggerUIAuthorization 1.0.4

dotnet add package SwaggerUIAuthorization --version 1.0.4                
NuGet\Install-Package SwaggerUIAuthorization -Version 1.0.4                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SwaggerUIAuthorization" Version="1.0.4" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SwaggerUIAuthorization --version 1.0.4                
#r "nuget: SwaggerUIAuthorization, 1.0.4"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SwaggerUIAuthorization as a Cake Addin
#addin nuget:?package=SwaggerUIAuthorization&version=1.0.4

// Install SwaggerUIAuthorization as a Cake Tool
#tool nuget:?package=SwaggerUIAuthorization&version=1.0.4                

SwaggerUIAuthorization

NuGet Version NuGet Downloads

Usage

Call AddSwaggerUIAuthorization to register depedencies.

builder.Services.AddSwaggerUIAuthorization();

Register SwaggerUI through UseSwaggerUIAuthorization instead of Swashbuckle's UseSwaggerUI extension method. This is a wrapper around UseSwaggerUI that will handle authentication against the specified scheme. The swagger document will be conditionally rendered based on authorization rules defined in an AuthorizeAttribute.

app.UseSwagger(options =>
{
    options.RouteTemplate = "mycoolapi/{documentname}/swagger.json";
});

app.UseSwaggerUIAuthorization("MyAuthenticationScheme", options => 
{
    options.SwaggerEndpoint("/mycoolapi/v1/swagger.json", "My Cool Api V1");
    options.RoutePrefix = "mycoolapi";
});

// ReDoc can be registered as well
app.UseReDoc(options => 
{
    options.SpecUrl = "/mycoolapi/v1/swagger.json";
    options.RoutePrefix = "mycoolapi/docs";
});

Example

The UserController will only be rendered for authenticated users with the role "User" as specified by the AuthorizeAttribute. The "Delete" action will only be rendered for authenticated users who have the "User" role and satisfy all of the requirements for the "CanDeletePolicy".

[ApiController]
[Route("[controller]")]
[Authorize(Roles = "User")]
public class UserController : ControllerBase
{
    [HttpGet]
    [Route("{id}")]
    public IActionResult Get(Guid id) => Ok();

    [HttpPost]
    public IActionResult Post([FromBody] User request) => Ok();

    [HttpPut]
    public IActionResult Put([FromBody] User request) => Ok();

    [HttpDelete]
    [Route("{id}")]
    [Authorize("CanDeletePolicy")]
    public IActionResult Delete(Guid id) => Ok();
}

In the case below, the authenticated user has the "User" role claim only.

image

The same rules that .NET has defined for an AuthorizeAttribute applies

  • Comma separated roles are evaluated on an OR basis
  • Multiple AuthorizeAttribute's are evaluated on an AND basis
  • An AllowAnonymousAttribute bypasses all authorization

However, if an endpoint is protected by an authentication scheme different from the one specified in the UseSwaggerUIAuthorization builder, then a challenge is NOT requested - the endpoint will not be rendered.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.4 34 11/20/2024
1.0.3 72 11/15/2024
1.0.2 106 6/8/2024
1.0.1 136 2/7/2024
1.0.0 89 1/23/2024