BizDoc.Authentication.Okta
8.4.8
See the version list below for details.
dotnet add package BizDoc.Authentication.Okta --version 8.4.8
NuGet\Install-Package BizDoc.Authentication.Okta -Version 8.4.8
<PackageReference Include="BizDoc.Authentication.Okta" Version="8.4.8" />
paket add BizDoc.Authentication.Okta --version 8.4.8
#r "nuget: BizDoc.Authentication.Okta, 8.4.8"
// Install BizDoc.Authentication.Okta as a Cake Addin #addin nuget:?package=BizDoc.Authentication.Okta&version=8.4.8 // Install BizDoc.Authentication.Okta as a Cake Tool #tool nuget:?package=BizDoc.Authentication.Okta&version=8.4.8
Okta for BizDoc
BizDoc supports Okta for both authentication and authorization, in one of two configurations: server flow or client flow.
Server flow redirects unauthorized users to Okta sign-in page on Okta domain, and handles the redirect. Client flow prompts unauthorized users for credentials in an hosted widget, and negotiate with Okta on the background.
- For both modes, install BizDoc Nuget package:
dotnet add package BizDoc.Core.Okta
- Add Okta application. If using server mode, choose Web Application. If using client mode, choose ODIC - OpenID Connect, and select SPA.
Okta sign-in redirect url should match "/authorization-code/callback" on server mode, and no path for client mode.
Create an API Token to allow BizDoc to retrieve users information.
- In startup.cs, add Okta service.
For server flow, use AddOktaRedirect:
AddBizDoc(o=> {
o.ApplicationUri = "https://app-domain";
})
.AddOktaServer(o=> {
o.ApiToken = "api-token";
o.Domain = "domain-name";
o.ClientId = "client-id";
o.ClientSecret = "client-secret";
});
...
UseBizDoc().
.UseOktaServer();
For client mode, use AddOkta:
AddBizDoc(...)
.AddOkta(o=> {
o.ApiToken = "api-token";
o.Domain = "domain-name";
}).
UseIdentityProvider();
The UseIdentityProvider() method registers an identity provider which retrieve user information from Okta. To use a different provider, while still authenticating via Okta, see Implementing Identity Provider.
- Client mode only, install Angular package:
npm i @bizdoc/okta
Add Okta configuration in Angular app.module:
OktaModule.forRoot({
domain: 'domain-name',
clientId: 'client-id'
})
Roles
In order to map user groups to BizDoc roles for authorization purposes, add a new claim to Okta Authorization Server with the following specifications.
Property | Value |
---|---|
Name | bizdoc.roles |
Include in token type | ID Token |
Value type | Groups |
Filter | Matches regex, .* |
Include in | Any scope |
System
Add an attribute to either application profile or all profiles and set its type to boolean. Add a claim in API server that map to the profile attribute you created.
Property | Value |
---|---|
Name | bizdoc.admin |
Include in token type | ID Token |
Value type | Expression |
Value | user.{attr-name-here} |
Types
Groups.
Roles.
Widgets
Staff Performance, current user is manager or sibling uner same manager.
Staff Pending, current user is manager.
Groups Performance, selected groups, or current user groups.
Departments Performance. User profile Department.
Divisions Performance. User profile Division.
Cost Centers Performance. User profile CostCenter.
Organizations Performance. User profile Organization.
Attributes
Implicit user attributes for analysis axes.
Name | Usage |
---|---|
CostCenter | |
Department | |
Division | |
Organization | |
EmployeeNumber | |
Owner Additional Property | PropertyName required. |
A type must be set for attributes in Architecture tool to enable the analysis to map to an axis.
Rules
User attribues available within rule expression.
Name | Usage |
---|---|
CostCenter | |
Department | |
Division | |
Organization | |
User Additional Property | PropertyName required. |
Owner Additional Property | PropertyName required. |
Workflow
Manager.
GroupRule.
API
Product | Versions 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. |
-
net8.0
- BizDoc.Core (>= 8.12.13)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 8.0.1)
- Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 8.0.1)
- Okta.Sdk (>= 7.0.3)
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 |
---|---|---|
8.9.3 | 77 | 10/13/2024 |
8.9.2 | 72 | 10/8/2024 |
8.8.1 | 116 | 9/17/2024 |
8.8.0 | 93 | 8/28/2024 |
8.7.0 | 63 | 7/29/2024 |
8.6.0 | 96 | 7/10/2024 |
8.5.15 | 109 | 5/28/2024 |
8.5.14 | 85 | 5/14/2024 |
8.5.13 | 110 | 4/23/2024 |
8.4.13 | 116 | 2/22/2024 |
8.4.12 | 108 | 2/20/2024 |
8.4.11 | 123 | 2/7/2024 |
8.4.10 | 110 | 2/2/2024 |
8.4.9 | 121 | 1/18/2024 |
8.4.8 | 118 | 1/12/2024 |
7.4.8 | 136 | 1/1/2024 |
7.4.7 | 130 | 1/1/2024 |
7.4.6 | 127 | 1/1/2024 |
7.4.5 | 167 | 12/31/2023 |
7.4.4 | 174 | 11/26/2023 |
7.4.3 | 140 | 11/22/2023 |
7.4.2 | 130 | 11/22/2023 |
7.3.2 | 145 | 8/14/2023 |
7.2.2 | 180 | 6/24/2023 |
7.1.2 | 162 | 6/2/2023 |
7.1.1 | 153 | 5/11/2023 |
7.1.0 | 154 | 5/4/2023 |
7.0.2 | 197 | 4/11/2023 |
7.0.1 | 224 | 3/30/2023 |
7.0.0 | 312 | 11/28/2022 |
6.8.11 | 332 | 11/8/2022 |
6.8.10 | 344 | 11/6/2022 |
6.8.8 | 356 | 10/31/2022 |
6.8.7 | 355 | 10/28/2022 |
6.8.6 | 367 | 10/27/2022 |
6.8.5 | 364 | 10/27/2022 |
6.8.4 | 396 | 10/24/2022 |
6.8.3 | 429 | 10/20/2022 |
6.8.2 | 412 | 10/20/2022 |