Startup.cs 5.6 KB

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