|
- using BPA.SAAS.Manage.Application.System.Dtos;
- using BPA.SAAS.Manage.Core;
- using FluentValidation.AspNetCore;
- using Furion;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Hosting;
- using Newtonsoft.Json;
-
- namespace BPA.SAAS.Manage.Web.Core
- {
- public class Startup : AppStartup
- {
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddConsoleFormatter();
- services.AddJwt<JwtHandler>();
- CosConfig.cosInfoOptions = new CosInfoOptions(App.Configuration["cos_config:AppId"],
- App.Configuration["cos_config:Region"], App.Configuration["cos_config:Bucket"],
- App.Configuration["cos_config:SecretId"], App.Configuration["cos_config:SecretKey"]);
- services.AddControllersWithViews()
- .AddFluentValidation(fv =>
- {
- fv.RegisterValidatorsFromAssemblies(App.Assemblies);
- })
- .AddNewtonsoftJson(options =>
- {
- options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
- options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
- });
- services.AddCorsAccessor();
- services.AddSqlsugarSetup(App.Configuration);
- services.AddControllers()
- .AddInjectWithUnifyResult();
- }
-
- public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
- {
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
-
- app.UseHttpsRedirection();
-
- app.UseRouting();
-
- app.UseCorsAccessor();
-
- app.UseAuthentication();
- app.UseAuthorization();
-
- app.UseInject(string.Empty);
-
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllers();
- });
- }
- }
- }
|