Startup.cs 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ServiceModel;
  4. using Microsoft.AspNetCore.Builder;
  5. using Microsoft.AspNetCore.Hosting;
  6. using Microsoft.AspNetCore.Http;
  7. using Microsoft.AspNetCore.Http.Features;
  8. using Microsoft.AspNetCore.Rewrite;
  9. using Microsoft.AspNetCore.StaticFiles;
  10. using Microsoft.Extensions.Configuration;
  11. using Microsoft.Extensions.DependencyInjection;
  12. using Microsoft.Extensions.FileProviders;
  13. using Microsoft.Extensions.Hosting;
  14. using MySystem.PublicClass.GraphQL;
  15. using System.Text;
  16. using Microsoft.IdentityModel.Tokens;
  17. using System.Linq;
  18. namespace MySystem
  19. {
  20. public class Startup
  21. {
  22. public Startup(IConfiguration configuration)
  23. {
  24. Configuration = configuration;
  25. }
  26. public IConfiguration Configuration { get; }
  27. // This method gets called by the runtime. Use this method to add services to the container.
  28. public void ConfigureServices(IServiceCollection services)
  29. {
  30. services.AddControllersWithViews();
  31. services.AddRouting(options =>
  32. {
  33. options.LowercaseUrls = true;
  34. });
  35. services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
  36. services.Configure<Setting>(Configuration.GetSection("Setting"));
  37. services.AddCors(option => option.AddPolicy("cors", policy => policy.AllowAnyHeader().AllowAnyMethod().AllowCredentials().SetIsOriginAllowed(_ => true)));
  38. services.AddMvc(options =>
  39. {
  40. options.EnableEndpointRouting = false;
  41. options.Filters.Add(typeof(GlobalExceptions));
  42. });
  43. services.AddSession(options =>
  44. {
  45. // 设置 Session 过期时间
  46. options.IdleTimeout = TimeSpan.FromHours(1);
  47. options.Cookie.HttpOnly = true;
  48. });
  49. services.AddSingleton<IRepository, Repository>();
  50. services.Configure<FormOptions>(x =>
  51. {
  52. x.MultipartBodyLengthLimit = 50 * 1024 * 1024;//不到300M
  53. });
  54. //生成密钥
  55. var symmetricKeyAsBase64 = Configuration["Setting:JwtSecret"];
  56. var keyByteArray = Encoding.ASCII.GetBytes(symmetricKeyAsBase64);
  57. var signingKey = new SymmetricSecurityKey(keyByteArray);
  58. //认证参数
  59. services.AddAuthentication("Bearer").AddJwtBearer(o =>
  60. {
  61. o.TokenValidationParameters = new TokenValidationParameters
  62. {
  63. ValidateIssuerSigningKey = true,//是否验证签名,不验证的画可以篡改数据,不安全
  64. IssuerSigningKey = signingKey,//解密的密钥
  65. ValidateIssuer = true,//是否验证发行人,就是验证载荷中的Iss是否对应ValidIssuer参数
  66. // ValidIssuer = Configuration["Setting:JwtIss"],//发行人
  67. IssuerValidator = (m, n, z) =>
  68. {
  69. return n.Issuer;
  70. },
  71. ValidateAudience = true,//是否验证订阅人,就是验证载荷中的Aud是否对应ValidAudience参数
  72. // ValidAudience = Configuration["Setting:JwtAud"],//订阅人
  73. AudienceValidator = (m, n, z) =>
  74. {
  75. string check = RedisDbconn.Instance.Get<string>("utoken:" + n.Issuer);
  76. return m != null && m.FirstOrDefault().Equals(check);
  77. },
  78. ValidateLifetime = true,//是否验证过期时间,过期了就拒绝访问
  79. ClockSkew = TimeSpan.Zero,//这个是缓冲过期时间,也就是说,即使我们配置了过期时间,这里也要考虑进去,过期时间+缓冲,默认好像是7分钟,你可以直接设置为0
  80. RequireExpirationTime = true,
  81. };
  82. });
  83. string appkey = Configuration["Setting:AppKey"];
  84. string appid = Configuration["Setting:AppId"];
  85. string checkurl = Configuration["Setting:CheckUrl"];
  86. string serviceurl = Configuration["Setting:WebServiceUrl"];
  87. string schemeurl = Configuration["Setting:DbSchemeUrl"];
  88. MySystemLib.SystemPublicFuction.appkey = appkey;
  89. MySystemLib.SystemPublicFuction.appid = appid;
  90. MySystemLib.SystemPublicFuction.checkurl = checkurl;
  91. MySystemLib.SystemPublicFuction.appcheck = "success";
  92. RedisDbconn.csredis = new CSRedis.CSRedisClient(Configuration["Setting:RedisConnStr"]);
  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. if (env.IsDevelopment())
  98. {
  99. app.UseDeveloperExceptionPage();
  100. // app.UseExceptionHandler("/Home/Error");
  101. Library.ConfigurationManager.EnvironmentFlag = 1;
  102. }
  103. else
  104. {
  105. app.UseExceptionHandler("/Home/Error");
  106. app.UseHsts();
  107. Library.ConfigurationManager.EnvironmentFlag = 2;
  108. }
  109. // Library.ConfigurationManager.EnvironmentFlag = 1;
  110. Library.function.WritePage("/", "WebRootPath.txt", env.WebRootPath);
  111. // app.UseStatusCodePagesWithReExecute("/public/errpage/pc/{0}.html");
  112. app.UseStaticFiles();
  113. app.UseStaticFiles(new StaticFileOptions
  114. {
  115. ContentTypeProvider = new FileExtensionContentTypeProvider(new Dictionary<string, string>
  116. {
  117. { ".apk", "application/vnd.android.package-archive" }
  118. })
  119. });
  120. app.UseCors("cors");
  121. app.UseAuthentication();
  122. app.UseRouting();
  123. app.UseAuthorization();
  124. app.UseSession();
  125. app.UseEndpoints(endpoints =>
  126. {
  127. endpoints.MapControllerRoute(
  128. name: "default",
  129. pattern: "{controller=Home}/{action=Index}/{Id?}");
  130. });
  131. // InitMain();
  132. //必须打开的
  133. if(Library.ConfigurationManager.EnvironmentFlag == 1)
  134. {
  135. }
  136. if(Library.ConfigurationManager.EnvironmentFlag == 2)
  137. {
  138. SetFeeFlagService.Instance.Start(); //85天提前通知创客费率调升消息
  139. SetDepositService.Instance.Start(); //调整费率(通知、标记)
  140. SetDepositPostService.Instance.Start(); //提交支付公司设置费率接口
  141. SetDepositPostService.Instance.StartKdb(); //监控开店宝费率设置结果
  142. ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
  143. SetSftFeeService.Instance.Start(); //盛付通420天费率加万2
  144. TmpService.Instance.Start();
  145. }
  146. }
  147. private void InitMain()
  148. {
  149. string conn = Configuration["Setting:SqlConnStr"];
  150. string dbName = "KxsMainServer";
  151. if(Library.ConfigurationManager.EnvironmentFlag == 2)
  152. {
  153. dbName = "KxsProfitServer";
  154. }
  155. Dictionary<string, Dictionary<string, string>> tables = new Dictionary<string, Dictionary<string, string>>();
  156. System.Data.DataTable tablecollection = Library.CustomerSqlConn.dtable("select DISTINCT TABLE_NAME from information_schema.columns where table_schema = '" + dbName + "'", conn);
  157. foreach (System.Data.DataRow subtable in tablecollection.Rows)
  158. {
  159. Dictionary<string, string> Columns = new Dictionary<string, string>();
  160. System.Data.DataTable columncollection = Library.CustomerSqlConn.dtable("select COLUMN_NAME,DATA_TYPE from information_schema.columns where table_schema = '" + dbName + "' and TABLE_NAME='" + subtable["TABLE_NAME"].ToString() + "'", conn);
  161. foreach (System.Data.DataRow column in columncollection.Rows)
  162. {
  163. string datatype = column["DATA_TYPE"].ToString();
  164. if (datatype == "decimal")
  165. {
  166. datatype = "numeric";
  167. }
  168. Columns.Add(column["COLUMN_NAME"].ToString(), datatype);
  169. }
  170. tables.Add(subtable["TABLE_NAME"].ToString(), Columns);
  171. }
  172. MySystemLib.SystemPublicFuction.dbtables = tables;
  173. }
  174. }
  175. }