Startup.cs 7.8 KB

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