Startup.cs 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. using System.IO;
  2. using GxPress.Api.ServiceExtensions;
  3. using GxPress.Common.AppOptions;
  4. using GxPress.Common.Tools;
  5. using GxPress.Service.Implement;
  6. using GxPress.Service.Interface;
  7. using Microsoft.AspNetCore.Builder;
  8. using Microsoft.AspNetCore.Hosting;
  9. using Microsoft.AspNetCore.Http;
  10. using Microsoft.AspNetCore.Http.Features;
  11. using Microsoft.AspNetCore.Mvc;
  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. // DbContext.ConnectionString = Configuration.GetConnectionString("DefaultConnection");
  35. // services.AddSingleton(new SqlSugarClient(new ConnectionConfig
  36. // {
  37. // ConnectionString = "server=47.95.221.96;uid=root;pwd=siteservercms88;database=ccpph_tede;MultipleActiveResultSets=true",//必填, 数据库连接字符串
  38. // DbType = DbType.MySql, //必填, 数据库类型
  39. // IsAutoCloseConnection = true, //默认false, 时候知道关闭数据库连接, 设置为true无需使用using或者Close操作
  40. // InitKeyType = InitKeyType.SystemTable //默认SystemTable, 字段信息读取, 如:该属性是不是主键,是不是标识列等等信息
  41. // }));
  42. services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
  43. services.AddSingleton<ISchedulerFactory, StdSchedulerFactory>();
  44. // services.AddSingleton<IUserService, UserService>();
  45. services.AddSingleton<IApiLogService, ApiLogService>();
  46. services.AddControllers().AddNewtonsoftJson(options =>
  47. {
  48. options.SerializerSettings.ContractResolver = new DefaultContractResolver();
  49. //options.UseCamelCasing(true);
  50. options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
  51. //// 忽略循环引用
  52. //options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
  53. //// 如字段为null值,该字段不会返回到前端
  54. // options.SerializerSettings.NullValueHandling = NullValueHandling.Include;
  55. }).AddJsonOptions(options =>
  56. {
  57. options.JsonSerializerOptions.PropertyNamingPolicy = null;
  58. }).SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
  59. //文件上传限制60MB
  60. services.Configure<FormOptions>(options =>
  61. {
  62. options.MultipartBodyLengthLimit = 60000000;
  63. });
  64. //数据库
  65. var databaseSection = Configuration.GetSection("Database");
  66. var cacheSection = Configuration.GetSection("Cache:ConnectionString");
  67. var storageOptions = Configuration.GetSection("Storage").Get<StorageOptions>();
  68. services.Configure<DatabaseOptions>(databaseSection);
  69. services.AddDistributedCache(cacheSection.Value);
  70. services.AddStorage(storageOptions);
  71. services.Configure<ApiBehaviorOptions>(o =>
  72. {
  73. o.InvalidModelStateResponseFactory = actionContext =>
  74. new BadRequestObjectResult(JsonConvert.SerializeObject(new
  75. {
  76. Message = "参数错误",
  77. StackTrace = JsonConvert.SerializeObject(actionContext.ModelState)
  78. }));
  79. });
  80. // var client = new CSRedisClient(redisSection.Value);
  81. // //初始化 RedisHelper
  82. // RedisHelper.Initialization(client);
  83. // //注册分布式缓存
  84. // var options = Options.Create(new Microsoft.Extensions.Caching.Redis.RedisCacheOptions
  85. // {
  86. // Configuration = redisSection.Value,
  87. // InstanceName = string.Empty,
  88. // });
  89. // services.AddSingleton<IDistributedCache>(new RedisCache(options));
  90. services.AddRepositories();
  91. services.AddServices();
  92. services.AddMappers();
  93. services.AddJwtAuthentication(Configuration);
  94. services.AddCors(options =>
  95. {
  96. options.AddPolicy(
  97. "AllowAny",
  98. x =>
  99. {
  100. x.AllowAnyHeader()
  101. .AllowAnyMethod()
  102. .SetIsOriginAllowed(_ => true)
  103. .AllowCredentials();
  104. });
  105. });
  106. services.AddSwashbuckle();
  107. }
  108. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
  109. public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
  110. {
  111. //var provider = new FileExtensionContentTypeProvider();
  112. // // Add new mappings
  113. // provider.Mappings[".epub"] = "application/octet-stream";
  114. if (env.IsDevelopment())
  115. {
  116. app.UseDeveloperExceptionPage();
  117. }
  118. //最上层的自定义异常处理中间件
  119. app.UseMiddleware<ExceptionMiddleware>();
  120. app.UseRouting();
  121. app.UseJwtAuthorization();
  122. var cachePeriod = env.IsDevelopment() ? "600" : "604800";
  123. app.UseStaticFiles(new StaticFileOptions
  124. {
  125. //ContentTypeProvider = provider,
  126. //非标准类型
  127. ServeUnknownFileTypes = true,
  128. //返回类型
  129. DefaultContentType = "application/octet-stream",
  130. OnPrepareResponse = ctx =>
  131. {
  132. // Requires the following import:
  133. // using Microsoft.AspNetCore.Http;
  134. ctx.Context.Response.Headers.Append("Cache-Control", $"public, max-age={cachePeriod}");
  135. ctx.Context.Response.Headers.Append("Access-Control-Allow-Headers", $"X-Requested-With");
  136. ctx.Context.Response.Headers.Append("Access-Control-Allow-Origin", $"*");
  137. ctx.Context.Response.Headers.Append("Access-Control-Allow-Methods", $"GET,POST,OPTIONS");
  138. ctx.Context.Response.Headers.Append("Connection", $"keep-alive");
  139. }
  140. });
  141. // app.UseStaticFiles(new StaticFileOptions
  142. // {
  143. // FileProvider = new PhysicalFileProvider(
  144. // Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")),
  145. // RequestPath = "",
  146. // ContentTypeProvider = provider
  147. // });
  148. app.UseDirectoryBrowser(new DirectoryBrowserOptions
  149. {
  150. FileProvider = new PhysicalFileProvider(
  151. Path.Combine(Directory.GetCurrentDirectory(), "wwwroot")),
  152. RequestPath = "/MyImages"
  153. });
  154. app.UseCors("AllowAny");
  155. app.UseSwashbuckle();
  156. app.UseEndpoints(endpoints =>
  157. {
  158. endpoints.MapControllers();
  159. endpoints.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}");
  160. });
  161. }
  162. }
  163. }