Startup.cs 5.8 KB

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