mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
171 lines
5.3 KiB
171 lines
5.3 KiB
# OpenIddict Angular UI Migration Guide
|
|
|
|
## Angular Project
|
|
|
|
- In `environment.ts` and `environment.prod.ts` **add a trailing slash at the end of the issuer**:
|
|
|
|
```typescript
|
|
oAuthConfig: {
|
|
issuer: 'https://localhost:44377/',
|
|
...
|
|
},
|
|
```
|
|
|
|
## Http.Api.Host (Non-Separated IdentityServer)
|
|
|
|
- In **MyApplication.HttpApi.Host.csproj** replace **project references**:
|
|
|
|
```csharp
|
|
<PackageReference Include="Volo.Abp.AspNetCore.Authentication.JwtBearer" Version="6.0.*" />
|
|
<PackageReference Include="Volo.Abp.Account.Web.IdentityServer" Version="6.0.*" />
|
|
```
|
|
|
|
with
|
|
|
|
```csharp
|
|
<PackageReference Include="Volo.Abp.Account.Web.OpenIddict" Version="6.0.*" />
|
|
```
|
|
|
|
- In the **MyApplicationHttpApiHostModule.cs** replace usings and **module dependencies**:
|
|
|
|
```csharp
|
|
using Volo.Abp.AspNetCore.Authentication.JwtBearer;
|
|
...
|
|
typeof(AbpAspNetCoreAuthenticationJwtBearerModule),
|
|
typeof(AbpAccountWebIdentityServerModule),
|
|
```
|
|
|
|
with
|
|
|
|
```csharp
|
|
using OpenIddict.Validation.AspNetCore;
|
|
...
|
|
typeof(AbpAccountWebOpenIddictModule),
|
|
```
|
|
|
|
- In the **MyApplicationHttpApiHostModule.cs** add `PreConfigureServices` like below with your application name as the audience:
|
|
|
|
```csharp
|
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
PreConfigure<OpenIddictBuilder>(builder =>
|
|
{
|
|
builder.AddValidation(options =>
|
|
{
|
|
options.AddAudiences("MyApplication"); // Replace with your application name
|
|
options.UseLocalServer();
|
|
options.UseAspNetCore();
|
|
});
|
|
});
|
|
}
|
|
```
|
|
|
|
- In the **MyApplicationHttpApiHostModule.cs** `ConfigureServices` method, **replace the method call**:
|
|
|
|
From `ConfigureAuthentication(context, configuration);` to `ConfigureAuthentication(context);` and update the method as:
|
|
|
|
```csharp
|
|
private void ConfigureAuthentication(ServiceConfigurationContext context)
|
|
{
|
|
context.Services.ForwardIdentityAuthenticationForBearer(OpenIddictValidationAspNetCoreDefaults.AuthenticationScheme);
|
|
}
|
|
```
|
|
|
|
- In the **MyApplicationHttpApiHostModule.cs** `OnApplicationInitialization` method, **replace the midware**:
|
|
|
|
```csharp
|
|
app.UseJwtTokenMiddleware();
|
|
app.UseIdentityServer();
|
|
```
|
|
|
|
with
|
|
|
|
```csharp
|
|
app.UseAbpOpenIddictValidation();
|
|
```
|
|
|
|
- In the **MyApplicationHttpApiHostModule.cs** `OnApplicationInitialization` method, delete `c.OAuthClientSecret(configuration["AuthServer:SwaggerClientSecret"]);` in `app.UseAbpSwaggerUI` options configurations which is no longer needed.
|
|
|
|
- In `appsettings.json` delete **SwaggerClientSecret** from the *AuthServer* section like below:
|
|
|
|
```json
|
|
"AuthServer": {
|
|
"Authority": "https://localhost:44345",
|
|
"RequireHttpsMetadata": "false",
|
|
"SwaggerClientId": "MyApplication_Swagger"
|
|
},
|
|
```
|
|
|
|
## Http.Api.Host (Separated IdentityServer)
|
|
|
|
- In the **MyApplicationHttpApiHostModule.cs** `OnApplicationInitialization` method, delete `c.OAuthClientSecret(configuration["AuthServer:SwaggerClientSecret"]);` in `app.UseAbpSwaggerUI` options configurations which is no longer needed.
|
|
|
|
- In `appsettings.json` delete **SwaggerClientSecret** from the *AuthServer* section like below:
|
|
|
|
```json
|
|
"AuthServer": {
|
|
"Authority": "https://localhost:44345",
|
|
"RequireHttpsMetadata": "false",
|
|
"SwaggerClientId": "MyApplication_Swagger"
|
|
},
|
|
```
|
|
|
|
## IdentityServer
|
|
|
|
This project is renamed to **AuthServer** after v6.0.0-rc1. You can also refactor and rename your project to *AuthServer* for easier updates in the future.
|
|
|
|
- In **MyApplication.IdentityServer.csproj** replace **project references**:
|
|
|
|
```csharp
|
|
<PackageReference Include="Volo.Abp.Account.Web.IdentityServer" Version="6.0.*" />
|
|
```
|
|
|
|
with
|
|
|
|
```csharp
|
|
<PackageReference Include="Volo.Abp.Account.Web.OpenIddict" Version="6.0.*" />
|
|
```
|
|
|
|
- In the **MyApplicationIdentityServerModule.cs** replace usings and **module dependencies**:
|
|
|
|
```csharp
|
|
typeof(AbpAccountWebIdentityServerModule),
|
|
```
|
|
|
|
with
|
|
|
|
```csharp
|
|
typeof(AbpAccountWebOpenIddictModule),
|
|
```
|
|
|
|
- In the **MyApplicationIdentityServerModule.cs** add `PreConfigureServices` like below with your application name as the audience:
|
|
|
|
```csharp
|
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
PreConfigure<OpenIddictBuilder>(builder =>
|
|
{
|
|
builder.AddValidation(options =>
|
|
{
|
|
options.AddAudiences("MyApplication"); // Replace with your application name
|
|
options.UseLocalServer();
|
|
options.UseAspNetCore();
|
|
});
|
|
});
|
|
}
|
|
```
|
|
|
|
- In the **MyApplicationIdentityServerModule.cs** `OnApplicationInitialization` method, **remove the midware**:
|
|
|
|
```csharp
|
|
app.UseIdentityServer();
|
|
```
|
|
|
|
- To use the new AuthServer page, replace **Index.cshtml.cs** with [AuthServer Index.cshtml.cs](https://github.com/abpframework/abp-samples/blob/master/Ids2OpenId/src/Ids2OpenId.IdentityServer/Pages/Index.cshtml) and **Index.cshtml** file with [AuthServer Index.cshtml](https://github.com/abpframework/abp-samples/blob/master/Ids2OpenId/src/Ids2OpenId.IdentityServer/Pages/Index.cshtml.cs) and rename **Ids2OpenId** with your application namespace.
|
|
|
|
> Note: It can be found under the *Pages* folder.
|
|
|
|
## See Also
|
|
|
|
* [OpenIddict Step-by-Step Guide](OpenIddict-Step-by-Step.md)
|