|
|
|
|
using System;
|
|
|
|
|
using Microsoft.AspNetCore.Authentication.OAuth.Claims;
|
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
|
|
|
using Microsoft.AspNetCore.DataProtection;
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
|
using Microsoft.IdentityModel.Protocols.OpenIdConnect;
|
|
|
|
|
using ProductManagement;
|
|
|
|
|
using StackExchange.Redis;
|
|
|
|
|
using Swashbuckle.AspNetCore.Swagger;
|
|
|
|
|
using Volo.Abp;
|
|
|
|
|
using Volo.Abp.AspNetCore.Authentication.OAuth;
|
|
|
|
|
using Volo.Abp.AspNetCore.Mvc.Client;
|
|
|
|
|
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic;
|
|
|
|
|
using Volo.Abp.Autofac;
|
|
|
|
|
using Volo.Abp.Http.Client.IdentityModel;
|
|
|
|
|
using Volo.Abp.Identity;
|
|
|
|
|
using Volo.Abp.Identity.Web;
|
|
|
|
|
using Volo.Abp.Localization;
|
|
|
|
|
using Volo.Abp.Modularity;
|
|
|
|
|
using Volo.Abp.PermissionManagement;
|
|
|
|
|
using Volo.Blogging;
|
|
|
|
|
|
|
|
|
|
namespace BackendAdminApp.Host
|
|
|
|
|
{
|
|
|
|
|
[DependsOn(
|
|
|
|
|
typeof(AbpAutofacModule),
|
|
|
|
|
typeof(AbpAspNetCoreMvcClientModule),
|
|
|
|
|
typeof(AbpAspNetCoreAuthenticationOAuthModule),
|
|
|
|
|
typeof(AbpHttpClientIdentityModelModule),
|
|
|
|
|
typeof(AbpIdentityHttpApiClientModule),
|
|
|
|
|
typeof(AbpIdentityWebModule),
|
|
|
|
|
typeof(BloggingApplicationContractsModule),
|
|
|
|
|
typeof(AbpPermissionManagementHttpApiClientModule),
|
|
|
|
|
typeof(ProductManagementHttpApiClientModule),
|
|
|
|
|
typeof(ProductManagementWebModule),
|
|
|
|
|
typeof(AbpAspNetCoreMvcUiBasicThemeModule)
|
|
|
|
|
)]
|
|
|
|
|
public class BackendAdminAppHostModule : AbpModule
|
|
|
|
|
{
|
|
|
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
|
|
|
{
|
|
|
|
|
var configuration = context.Services.GetConfiguration();
|
|
|
|
|
|
|
|
|
|
Configure<AbpLocalizationOptions>(options =>
|
|
|
|
|
{
|
|
|
|
|
options.Languages.Add(new LanguageInfo("en", "en", "English"));
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
context.Services.AddAuthentication(options =>
|
|
|
|
|
{
|
|
|
|
|
options.DefaultScheme = "Cookies";
|
|
|
|
|
options.DefaultChallengeScheme = "oidc";
|
|
|
|
|
})
|
|
|
|
|
.AddCookie("Cookies", options =>
|
|
|
|
|
{
|
|
|
|
|
options.Cookie.Expiration = TimeSpan.FromDays(365);
|
|
|
|
|
options.ExpireTimeSpan = TimeSpan.FromDays(365);
|
|
|
|
|
})
|
|
|
|
|
.AddOpenIdConnect("oidc", options =>
|
|
|
|
|
{
|
|
|
|
|
options.Authority = configuration["AuthServer:Authority"];
|
|
|
|
|
options.ClientId = configuration["AuthServer:ClientId"];
|
|
|
|
|
options.ClientSecret = configuration["AuthServer:ClientSecret"];
|
|
|
|
|
options.RequireHttpsMetadata = false;
|
|
|
|
|
options.ResponseType = OpenIdConnectResponseType.CodeIdToken;
|
|
|
|
|
options.SaveTokens = true;
|
|
|
|
|
options.GetClaimsFromUserInfoEndpoint = true;
|
|
|
|
|
options.Scope.Add("role");
|
|
|
|
|
options.Scope.Add("email");
|
|
|
|
|
options.Scope.Add("phone");
|
|
|
|
|
options.Scope.Add("BackendAdminAppGateway");
|
|
|
|
|
options.Scope.Add("IdentityService");
|
|
|
|
|
options.Scope.Add("ProductService");
|
|
|
|
|
options.ClaimActions.MapAbpClaimTypes();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
context.Services.AddSwaggerGen(
|
|
|
|
|
options =>
|
|
|
|
|
{
|
|
|
|
|
options.SwaggerDoc("v1", new Info { Title = "Backend Admin Application API", Version = "v1" });
|
|
|
|
|
options.DocInclusionPredicate((docName, description) => true);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
context.Services.AddDistributedRedisCache(options =>
|
|
|
|
|
{
|
|
|
|
|
options.Configuration = configuration["Redis:Configuration"];
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
var redis = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]);
|
|
|
|
|
context.Services.AddDataProtection()
|
|
|
|
|
.PersistKeysToStackExchangeRedis(redis, "MsDemo-DataProtection-Keys");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
|
|
|
|
{
|
|
|
|
|
var app = context.GetApplicationBuilder();
|
|
|
|
|
|
|
|
|
|
app.UseCorrelationId();
|
|
|
|
|
app.UseVirtualFiles();
|
|
|
|
|
app.UseAuthentication();
|
|
|
|
|
app.UseAbpRequestLocalization();
|
|
|
|
|
app.UseSwagger();
|
|
|
|
|
app.UseSwaggerUI(options =>
|
|
|
|
|
{
|
|
|
|
|
options.SwaggerEndpoint("/swagger/v1/swagger.json", "Backend Admin Application API");
|
|
|
|
|
});
|
|
|
|
|
app.UseMvcWithDefaultRouteAndArea();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|