Startup.cs 4.9 KB

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