Startup.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. using System.Net.Http;
  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.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<ISchedulerFactory, StdSchedulerFactory>();
  32. services.AddControllers().AddNewtonsoftJson(options =>
  33. {
  34. options.SerializerSettings.ContractResolver = new DefaultContractResolver();
  35. //options.UseCamelCasing(true);
  36. options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
  37. //// 忽略循环引用
  38. //options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
  39. //// 如字段为null值,该字段不会返回到前端
  40. // options.SerializerSettings.NullValueHandling = NullValueHandling.Include;
  41. }).AddJsonOptions(options =>
  42. {
  43. options.JsonSerializerOptions.PropertyNamingPolicy = null;
  44. }).SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
  45. //文件上传限制60MB
  46. services.Configure<FormOptions>(options =>
  47. {
  48. options.MultipartBodyLengthLimit = 60000000;
  49. });
  50. //数据库
  51. var databaseSection = Configuration.GetSection("Database");
  52. var cacheSection = Configuration.GetSection("Cache:ConnectionString");
  53. var storageOptions = Configuration.GetSection("Storage").Get<StorageOptions>();
  54. services.Configure<DatabaseOptions>(databaseSection);
  55. services.AddDistributedCache(cacheSection.Value);
  56. services.AddStorage(storageOptions);
  57. services.Configure<ApiBehaviorOptions>(o =>
  58. {
  59. o.InvalidModelStateResponseFactory = actionContext =>
  60. new BadRequestObjectResult(JsonConvert.SerializeObject(new
  61. {
  62. Message = "参数错误",
  63. StackTrace = JsonConvert.SerializeObject(actionContext.ModelState)
  64. }));
  65. });
  66. // var client = new CSRedisClient(redisSection.Value);
  67. // //初始化 RedisHelper
  68. // RedisHelper.Initialization(client);
  69. // //注册分布式缓存
  70. // var options = Options.Create(new Microsoft.Extensions.Caching.Redis.RedisCacheOptions
  71. // {
  72. // Configuration = redisSection.Value,
  73. // InstanceName = string.Empty,
  74. // });
  75. // services.AddSingleton<IDistributedCache>(new RedisCache(options));
  76. services.AddRepositories();
  77. services.AddServices();
  78. services.AddMappers();
  79. services.AddJwtAuthentication(Configuration);
  80. services.AddCors(options =>
  81. {
  82. options.AddPolicy(
  83. "AllowAny",
  84. x =>
  85. {
  86. x.AllowAnyHeader()
  87. .AllowAnyMethod()
  88. .SetIsOriginAllowed(_ => true)
  89. .AllowCredentials();
  90. });
  91. });
  92. services.AddSwashbuckle();
  93. }
  94. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
  95. public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
  96. {
  97. var handler = new HttpClientHandler();
  98. if (env.IsDevelopment())
  99. {
  100. handler.ServerCertificateCustomValidationCallback = delegate { return true; };
  101. app.UseDeveloperExceptionPage();
  102. }
  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. }