Sotsera.Blazor.Oidc
1.0.0-alpha-5
See the version list below for details.
dotnet add package Sotsera.Blazor.Oidc --version 1.0.0-alpha-5
NuGet\Install-Package Sotsera.Blazor.Oidc -Version 1.0.0-alpha-5
<PackageReference Include="Sotsera.Blazor.Oidc" Version="1.0.0-alpha-5" />
paket add Sotsera.Blazor.Oidc --version 1.0.0-alpha-5
#r "nuget: Sotsera.Blazor.Oidc, 1.0.0-alpha-5"
// Install Sotsera.Blazor.Oidc as a Cake Addin #addin nuget:?package=Sotsera.Blazor.Oidc&version=1.0.0-alpha-5&prerelease // Install Sotsera.Blazor.Oidc as a Cake Tool #tool nuget:?package=Sotsera.Blazor.Oidc&version=1.0.0-alpha-5&prerelease
Sotsera.Blazor.Oidc
OpenID Connect client for Blazor client-side or hosted projects.
Server side projects, and probably hosted projects too, having a server side environment should relay on cookies which are currently considered more secure: Using OAuth and OIDC with Blazor.
This is just a learning exercise built with three constraints:
- Minimal amount of javascript possible
- Use the Blazor shipped Json framework
- Integrate with Blazor authentication and authorization framework
These constraints basically mean that everything must be written from scratch (JWT validation included).
A demo project has been published here.
Installation
Add a reference to the library from
Dependency injection configuration
The library with its configuration settings must be added to the Startup.cs
class.
The minimal configuration for connecting to an Authorization server using the default callback URIs requires:
- The issuer (Authorization server) URI
- The application base URI used to construct the default html callback URIs
- The client ID
- The response Type for implicit flow or code+pkce
- The scopes for the access token
The current application base URI is passed along to the settings object for configuring the default callback URIs but can also be used for setting other environment sensitive values.
As an example, the configuration for the code+pkce flow to the Identity server demo instance is:
public void ConfigureServices(IServiceCollection services)
{
services.AddOidc(new Uri("https://demo.identityserver.io"), (settings, siteUri) =>
{
settings.UseDefaultCallbackUris(siteUri);
settings.ClientId = "spa";
settings.ResponseType = "code";
settings.Scope = "openid profile email api";
});
}
Javascript inclusion
Add the following reference to the oidc javascript in the index.html file paying attention to match the library version:
<script src="_content/Sotsera.Blazor.Oidc/sotsera.blazor.oidc-1.0.0-alpha-5.js"></script>
Blazor Authorization
The default router in the App.razor has to be updated:
@using Sotsera.Blazor.Oidc
@inject IUserManager UserManager
<Router AppAssembly="@typeof(Program).Assembly" AdditionalAssemblies="new[] { typeof(IUserManager).Assembly }">
<Found Context="routeData">
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)">
<NotAuthorized>
<p>You're not authorized to reach this page.</p>
</NotAuthorized>
<Authorizing>
<h3>Authentication in progress</h3>
</Authorizing>
</AuthorizeRouteView>
</Found>
<NotFound>
<CascadingAuthenticationState>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</CascadingAuthenticationState>
</NotFound>
</Router>
Authorization server callbacks
The interaction with the authorization server can be made through a popup window or performing a redirect.
The library already contains the default html pages used by the popup window callbacks and the callback page components for the redirect interaction type and their default URIs are automatically configured by the UseDefaultCallbackUris
.
Usage
The IUserManager
interface provides the access the the OidcUser
class and its profile claims and exposes the methods BeginAuthenticationAsync
and BeginLogoutAsync
for initiating a flow to the server using the interaction type specified during the initial configuration. Both methods configuration parameters can be overridden during the call.
This is an example Login/Logout component:
@inject Sotsera.Blazor.Oidc.IUserManager UserManager
<AuthorizeView>
<Authorized>
<span class="mr-3">
Hello, @context.User.Identity.Name!
</span>
<button type="button" class="btn btn-primary mr-1" @onclick="LogoutPopup">
Log out (popup)
</button>
<button type="button" class="btn btn-primary" @onclick="LogoutRedirect">
Log out (redirect)
</button>
</Authorized>
<NotAuthorized>
<button type="button" class="btn btn-primary mr-1" @onclick="LoginPopup">
Log in (popup)
</button>
<button type="button" class="btn btn-primary" @onclick="LoginRedirect">
Log in (redirect)
</button>
</NotAuthorized>
</AuthorizeView>
@code
{
public async void LoginPopup() => await UserManager.BeginAuthenticationAsync();
public async void LoginRedirect() => await UserManager.BeginAuthenticationAsync(p => p.WithRedirect());
public async void LogoutPopup() => await UserManager.BeginLogoutAsync();
public async void LogoutRedirect() => await UserManager.BeginLogoutAsync(p => p.WithRedirect());
}
Consuming an api
Inject in a component an instance of OidcHttpClient
that has a Bearer authorization header already configured and use it for connecting to the APIs requiring the access token.
Configuration
The list of the configuration options will be documented here soon.
Credits
This library is based on oidc-client-js by Brock Allen & Dominick Baier licensed under the Apache License, Version 2.0.
License
Sotsera.Blazor.Oidc is licensed under Apache License, Version 2.0.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.AspNetCore.Blazor.HttpClient (>= 3.1.0-preview4.19579.2)
- Microsoft.AspNetCore.Components (>= 3.1.0)
- Microsoft.AspNetCore.Components.Authorization (>= 3.1.0)
- Microsoft.AspNetCore.Components.Web (>= 3.1.0)
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.0-alpha-8 | 3,691 | 2/27/2020 |
1.0.0-alpha-7 | 300 | 2/20/2020 |
1.0.0-alpha-6 | 545 | 1/8/2020 |
1.0.0-alpha-5 | 289 | 12/29/2019 |
1.0.0-alpha-4 | 272 | 12/5/2019 |
1.0.0-alpha-3 | 315 | 9/5/2019 |
1.0.0-alpha-2 | 291 | 8/28/2019 |
1.0.0-alpha-1 | 286 | 8/25/2019 |