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.
236 lines
9.1 KiB
236 lines
9.1 KiB
2 years ago
|
using System;
|
||
|
using System.Linq;
|
||
|
using Microsoft.AspNetCore.Builder;
|
||
|
using Microsoft.AspNetCore.Cors;
|
||
|
using Microsoft.AspNetCore.DataProtection;
|
||
|
using Microsoft.AspNetCore.Hosting;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Microsoft.Extensions.Hosting;
|
||
|
using WmsWebApi.MultiTenancy;
|
||
|
using StackExchange.Redis;
|
||
|
using Microsoft.OpenApi.Models;
|
||
|
using Swashbuckle.AspNetCore.Swagger;
|
||
|
using Volo.Abp;
|
||
|
using Volo.Abp.Account;
|
||
|
using Volo.Abp.Account.Web;
|
||
|
using Volo.Abp.AspNetCore.Authentication.JwtBearer;
|
||
|
using Volo.Abp.AspNetCore.Mvc;
|
||
|
using Volo.Abp.AspNetCore.Mvc.UI.MultiTenancy;
|
||
|
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic;
|
||
|
using Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared;
|
||
|
using Volo.Abp.AspNetCore.Serilog;
|
||
|
using Volo.Abp.Auditing;
|
||
|
using Volo.Abp.AuditLogging.EntityFrameworkCore;
|
||
|
using Volo.Abp.Autofac;
|
||
|
using Volo.Abp.Caching;
|
||
|
using Volo.Abp.Caching.StackExchangeRedis;
|
||
|
using Volo.Abp.Data;
|
||
|
using Volo.Abp.EntityFrameworkCore;
|
||
|
using Volo.Abp.EntityFrameworkCore.SqlServer;
|
||
|
using Volo.Abp.FeatureManagement;
|
||
|
using Volo.Abp.FeatureManagement.EntityFrameworkCore;
|
||
|
using Volo.Abp.Identity;
|
||
|
using Volo.Abp.Identity.EntityFrameworkCore;
|
||
|
using Volo.Abp.IdentityServer.EntityFrameworkCore;
|
||
|
using Volo.Abp.Localization;
|
||
|
using Volo.Abp.Modularity;
|
||
|
using Volo.Abp.MultiTenancy;
|
||
|
using Volo.Abp.PermissionManagement;
|
||
|
using Volo.Abp.PermissionManagement.EntityFrameworkCore;
|
||
|
using Volo.Abp.PermissionManagement.HttpApi;
|
||
|
using Volo.Abp.PermissionManagement.Identity;
|
||
|
using Volo.Abp.SettingManagement;
|
||
|
using Volo.Abp.SettingManagement.EntityFrameworkCore;
|
||
|
using Volo.Abp.Swashbuckle;
|
||
|
using Volo.Abp.TenantManagement;
|
||
|
using Volo.Abp.TenantManagement.EntityFrameworkCore;
|
||
|
using Volo.Abp.Threading;
|
||
|
using Volo.Abp.UI.Navigation.Urls;
|
||
|
|
||
|
namespace WmsWebApi
|
||
|
{
|
||
|
[DependsOn(
|
||
|
typeof(AbpAccountWebIdentityServerModule),
|
||
|
typeof(AbpAccountApplicationModule),
|
||
|
typeof(AbpAspNetCoreMvcUiMultiTenancyModule),
|
||
|
typeof(AbpAspNetCoreMvcModule),
|
||
|
typeof(AbpAspNetCoreMvcUiBasicThemeModule),
|
||
|
typeof(AbpAuditLoggingEntityFrameworkCoreModule),
|
||
|
typeof(AbpAutofacModule),
|
||
|
typeof(AbpCachingStackExchangeRedisModule),
|
||
|
typeof(AbpEntityFrameworkCoreSqlServerModule),
|
||
|
typeof(AbpIdentityEntityFrameworkCoreModule),
|
||
|
typeof(AbpIdentityApplicationModule),
|
||
|
typeof(AbpIdentityHttpApiModule),
|
||
|
typeof(AbpIdentityServerEntityFrameworkCoreModule),
|
||
|
typeof(AbpPermissionManagementDomainIdentityModule),
|
||
|
typeof(AbpPermissionManagementEntityFrameworkCoreModule),
|
||
|
typeof(AbpPermissionManagementApplicationModule),
|
||
|
typeof(AbpPermissionManagementHttpApiModule),
|
||
|
typeof(AbpSettingManagementEntityFrameworkCoreModule),
|
||
|
typeof(AbpSettingManagementApplicationModule),
|
||
|
typeof(AbpSettingManagementHttpApiModule),
|
||
|
typeof(AbpFeatureManagementEntityFrameworkCoreModule),
|
||
|
typeof(AbpFeatureManagementApplicationModule),
|
||
|
typeof(AbpFeatureManagementHttpApiModule),
|
||
|
typeof(AbpTenantManagementEntityFrameworkCoreModule),
|
||
|
typeof(AbpTenantManagementApplicationModule),
|
||
|
typeof(AbpTenantManagementHttpApiModule),
|
||
|
typeof(AbpAspNetCoreAuthenticationJwtBearerModule),
|
||
|
typeof(WmsWebApiApplicationContractsModule),
|
||
|
typeof(AbpAspNetCoreSerilogModule),
|
||
|
typeof(AbpSwashbuckleModule)
|
||
|
)]
|
||
|
public class WmsWebApiIdentityServerModule : AbpModule
|
||
|
{
|
||
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
||
|
{
|
||
|
var hostingEnvironment = context.Services.GetHostingEnvironment();
|
||
|
var configuration = context.Services.GetConfiguration();
|
||
|
|
||
|
Configure<AbpDbContextOptions>(options =>
|
||
|
{
|
||
|
options.UseSqlServer();
|
||
|
});
|
||
|
|
||
|
context.Services.AddAbpSwaggerGen(
|
||
|
options =>
|
||
|
{
|
||
|
options.SwaggerDoc("v1", new OpenApiInfo { Title = "WmsWebApi API", Version = "v1" });
|
||
|
options.DocInclusionPredicate((docName, description) => true);
|
||
|
options.CustomSchemaIds(type => type.FullName);
|
||
|
});
|
||
|
|
||
|
Configure<AbpLocalizationOptions>(options =>
|
||
|
{
|
||
|
options.Languages.Add(new LanguageInfo("cs", "cs", "Čeština"));
|
||
|
options.Languages.Add(new LanguageInfo("en", "en", "English"));
|
||
|
options.Languages.Add(new LanguageInfo("en-GB", "en-GB", "English (UK)"));
|
||
|
options.Languages.Add(new LanguageInfo("fi", "fi", "Finnish"));
|
||
|
options.Languages.Add(new LanguageInfo("fr", "fr", "Français"));
|
||
|
options.Languages.Add(new LanguageInfo("hi", "hi", "Hindi", "in"));
|
||
|
options.Languages.Add(new LanguageInfo("it", "it", "Italian", "it"));
|
||
|
options.Languages.Add(new LanguageInfo("hu", "hu", "Magyar"));
|
||
|
options.Languages.Add(new LanguageInfo("pt-BR", "pt-BR", "Português"));
|
||
|
options.Languages.Add(new LanguageInfo("ru", "ru", "Русский"));
|
||
|
options.Languages.Add(new LanguageInfo("sk", "sk", "Slovak"));
|
||
|
options.Languages.Add(new LanguageInfo("tr", "tr", "Türkçe"));
|
||
|
options.Languages.Add(new LanguageInfo("zh-Hans", "zh-Hans", "简体中文"));
|
||
|
options.Languages.Add(new LanguageInfo("zh-Hant", "zh-Hant", "繁體中文"));
|
||
|
});
|
||
|
|
||
|
Configure<AbpAuditingOptions>(options =>
|
||
|
{
|
||
|
//options.IsEnabledForGetRequests = true;
|
||
|
options.ApplicationName = "AuthServer";
|
||
|
});
|
||
|
|
||
|
Configure<AppUrlOptions>(options =>
|
||
|
{
|
||
|
options.Applications["MVC"].RootUrl = configuration["App:SelfUrl"];
|
||
|
});
|
||
|
|
||
|
context.Services.AddAuthentication()
|
||
|
.AddJwtBearer(options =>
|
||
|
{
|
||
|
options.Authority = configuration["AuthServer:Authority"];
|
||
|
options.RequireHttpsMetadata = Convert.ToBoolean(configuration["AuthServer:RequireHttpsMetadata"]);
|
||
|
options.Audience = configuration["AuthServer:ApiName"];
|
||
|
});
|
||
|
|
||
|
Configure<AbpDistributedCacheOptions>(options =>
|
||
|
{
|
||
|
options.KeyPrefix = "WmsWebApi:";
|
||
|
});
|
||
|
|
||
|
Configure<AbpMultiTenancyOptions>(options =>
|
||
|
{
|
||
|
options.IsEnabled = MultiTenancyConsts.IsEnabled;
|
||
|
});
|
||
|
|
||
|
if (!hostingEnvironment.IsDevelopment())
|
||
|
{
|
||
|
var redis = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]);
|
||
|
context.Services
|
||
|
.AddDataProtection()
|
||
|
.PersistKeysToStackExchangeRedis(redis, "WmsWebApi-Protection-Keys");
|
||
|
}
|
||
|
|
||
|
context.Services.AddCors(options =>
|
||
|
{
|
||
|
options.AddDefaultPolicy(builder =>
|
||
|
{
|
||
|
builder
|
||
|
.WithOrigins(
|
||
|
configuration["App:CorsOrigins"]
|
||
|
.Split(",", StringSplitOptions.RemoveEmptyEntries)
|
||
|
.Select(o => o.RemovePostFix("/"))
|
||
|
.ToArray()
|
||
|
)
|
||
|
.WithAbpExposedHeaders()
|
||
|
.SetIsOriginAllowedToAllowWildcardSubdomains()
|
||
|
.AllowAnyHeader()
|
||
|
.AllowAnyMethod()
|
||
|
.AllowCredentials();
|
||
|
});
|
||
|
});
|
||
|
}
|
||
|
|
||
|
public override void OnApplicationInitialization(ApplicationInitializationContext context)
|
||
|
{
|
||
|
var app = context.GetApplicationBuilder();
|
||
|
var env = context.GetEnvironment();
|
||
|
|
||
|
if (env.IsDevelopment())
|
||
|
{
|
||
|
app.UseDeveloperExceptionPage();
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
app.UseErrorPage();
|
||
|
app.UseHsts();
|
||
|
}
|
||
|
|
||
|
app.UseHttpsRedirection();
|
||
|
app.UseCorrelationId();
|
||
|
app.UseStaticFiles();
|
||
|
app.UseRouting();
|
||
|
app.UseCors();
|
||
|
app.UseAuthentication();
|
||
|
app.UseJwtTokenMiddleware();
|
||
|
|
||
|
if (MultiTenancyConsts.IsEnabled)
|
||
|
{
|
||
|
app.UseMultiTenancy();
|
||
|
}
|
||
|
|
||
|
app.UseAbpRequestLocalization();
|
||
|
app.UseIdentityServer();
|
||
|
app.UseAuthorization();
|
||
|
app.UseSwagger();
|
||
|
app.UseAbpSwaggerUI(options =>
|
||
|
{
|
||
|
options.SwaggerEndpoint("/swagger/v1/swagger.json", "Support APP API");
|
||
|
});
|
||
|
app.UseAuditing();
|
||
|
app.UseAbpSerilogEnrichers();
|
||
|
app.UseConfiguredEndpoints();
|
||
|
|
||
|
SeedData(context);
|
||
|
}
|
||
|
|
||
|
private void SeedData(ApplicationInitializationContext context)
|
||
|
{
|
||
|
AsyncHelper.RunSync(async () =>
|
||
|
{
|
||
|
using (var scope = context.ServiceProvider.CreateScope())
|
||
|
{
|
||
|
await scope.ServiceProvider
|
||
|
.GetRequiredService<IDataSeeder>()
|
||
|
.SeedAsync();
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|