Startup.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. using GxPress.Api.ServiceExtensions;
  2. using GxPress.Common.AppOptions;
  3. using GxPress.Common.Middleware;
  4. using GxPress.Common.Tools;
  5. using Microsoft.AspNetCore.Builder;
  6. using Microsoft.AspNetCore.Hosting;
  7. using Microsoft.AspNetCore.Http;
  8. using Microsoft.AspNetCore.Http.Features;
  9. using Microsoft.AspNetCore.Mvc;
  10. using Microsoft.Extensions.Configuration;
  11. using Microsoft.Extensions.DependencyInjection;
  12. using Microsoft.Extensions.Hosting;
  13. using Newtonsoft.Json;
  14. using Newtonsoft.Json.Serialization;
  15. using Quartz;
  16. using Quartz.Impl;
  17. namespace GxPress.Api
  18. {
  19. public class Startup
  20. {
  21. public IConfiguration Configuration { get; }
  22. public Startup(IConfiguration configuration)
  23. {
  24. Configuration = configuration;
  25. ConfigHelper.Configs = Configuration;
  26. }
  27. // This method gets called by the runtime. Use this method to add services to the container.
  28. // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
  29. public void ConfigureServices(IServiceCollection services)
  30. {
  31. services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
  32. services.AddSingleton<ISchedulerFactory, StdSchedulerFactory>();
  33. services.AddControllers().AddNewtonsoftJson(options =>
  34. {
  35. options.SerializerSettings.ContractResolver = new DefaultContractResolver();
  36. //options.UseCamelCasing(true);
  37. options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
  38. //// 忽略循环引用
  39. //options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
  40. //// 如字段为null值,该字段不会返回到前端
  41. // options.SerializerSettings.NullValueHandling = NullValueHandling.Include;
  42. }).AddJsonOptions(options =>
  43. {
  44. options.JsonSerializerOptions.PropertyNamingPolicy = null;
  45. }).SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
  46. //文件上传限制60MB
  47. services.Configure<FormOptions>(options =>
  48. {
  49. options.MultipartBodyLengthLimit = 60000000;
  50. });
  51. //数据库
  52. var databaseSection = Configuration.GetSection("Database");
  53. var cacheSection = Configuration.GetSection("Cache:ConnectionString");
  54. var storageOptions = Configuration.GetSection("Storage").Get<StorageOptions>();
  55. services.Configure<DatabaseOptions>(databaseSection);
  56. services.AddDistributedCache(cacheSection.Value);
  57. services.AddStorage(storageOptions);
  58. services.Configure<ApiBehaviorOptions>(o =>
  59. {
  60. o.InvalidModelStateResponseFactory = actionContext =>
  61. new BadRequestObjectResult(JsonConvert.SerializeObject(new
  62. {
  63. Message = "参数错误",
  64. StackTrace = JsonConvert.SerializeObject(actionContext.ModelState)
  65. }));
  66. });
  67. // var client = new CSRedisClient(redisSection.Value);
  68. // //初始化 RedisHelper
  69. // RedisHelper.Initialization(client);
  70. // //注册分布式缓存
  71. // var options = Options.Create(new Microsoft.Extensions.Caching.Redis.RedisCacheOptions
  72. // {
  73. // Configuration = redisSection.Value,
  74. // InstanceName = string.Empty,
  75. // });
  76. // services.AddSingleton<IDistributedCache>(new RedisCache(options));
  77. services.AddRepositories();
  78. services.AddServices();
  79. services.AddMappers();
  80. services.AddJwtAuthentication(Configuration);
  81. services.AddCors(options =>
  82. {
  83. options.AddPolicy(
  84. "AllowAny",
  85. x =>
  86. {
  87. x.AllowAnyHeader()
  88. .AllowAnyMethod()
  89. .SetIsOriginAllowed(_ => true)
  90. .AllowCredentials();
  91. });
  92. });
  93. services.AddSwashbuckle();
  94. }
  95. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
  96. public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
  97. {
  98. if (env.IsDevelopment())
  99. {
  100. app.UseDeveloperExceptionPage();
  101. }
  102. app.UseMvc();
  103. //最上层的自定义异常处理中间件
  104. app.UseMiddleware<ExceptionMiddleware>();
  105. app.UseRouting();
  106. app.UseJwtAuthorization();
  107. app.UseStaticFiles();
  108. app.UseCors("AllowAny");
  109. app.UseSwashbuckle();
  110. app.UseEndpoints(endpoints =>
  111. {
  112. endpoints.MapControllers();
  113. endpoints.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}");
  114. });
  115. }
  116. }
  117. }