Startup.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  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 System.Text;
  15. using Microsoft.IdentityModel.Tokens;
  16. using System.Linq;
  17. using Microsoft.AspNetCore.Mvc.Razor;
  18. using Microsoft.AspNetCore.Server.Kestrel.Core;
  19. namespace MySystem
  20. {
  21. public class Startup
  22. {
  23. public Startup(IConfiguration configuration)
  24. {
  25. Configuration = configuration;
  26. }
  27. public IConfiguration Configuration { get; }
  28. // This method gets called by the runtime. Use this method to add services to the container.
  29. public void ConfigureServices(IServiceCollection services)
  30. {
  31. services.AddControllersWithViews();
  32. services.AddRouting(options =>
  33. {
  34. options.LowercaseUrls = true;
  35. });
  36. services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
  37. // services.AddCors(option => option.AddPolicy("cors", policy => policy.AllowAnyHeader().AllowAnyMethod().AllowCredentials().SetIsOriginAllowed(_ => true)));
  38. services.Configure<KestrelServerOptions>(x => x.AllowSynchronousIO = true).Configure<IISServerOptions>(x => x.AllowSynchronousIO = true);
  39. services.AddMvc(options =>
  40. {
  41. options.EnableEndpointRouting = false;
  42. options.Filters.Add(typeof(GlobalExceptionsFilter));
  43. });
  44. //配置模版视图路径
  45. services.Configure<RazorViewEngineOptions>(options =>
  46. {
  47. options.ViewLocationExpanders.Add(new TemplateViewLocationExpander());
  48. });
  49. services.AddSession(options =>
  50. {
  51. // 设置 Session 过期时间
  52. options.IdleTimeout = TimeSpan.FromHours(1);
  53. options.Cookie.HttpOnly = true;
  54. });
  55. services.Configure<FormOptions>(x =>
  56. {
  57. x.MultipartBodyLengthLimit = 50 * 1024 * 1024;//不到300M
  58. });
  59. //生成密钥
  60. var symmetricKeyAsBase64 = Configuration["Setting:JwtSecret"];
  61. var keyByteArray = Encoding.ASCII.GetBytes(symmetricKeyAsBase64);
  62. var signingKey = new SymmetricSecurityKey(keyByteArray);
  63. //认证参数
  64. services.AddAuthentication("Bearer").AddJwtBearer(o =>
  65. {
  66. o.TokenValidationParameters = new TokenValidationParameters
  67. {
  68. ValidateIssuerSigningKey = true,//是否验证签名,不验证的画可以篡改数据,不安全
  69. IssuerSigningKey = signingKey,//解密的密钥
  70. ValidateIssuer = true,//是否验证发行人,就是验证载荷中的Iss是否对应ValidIssuer参数
  71. // ValidIssuer = Configuration["Setting:JwtIss"],//发行人
  72. IssuerValidator = (m, n, z) =>
  73. {
  74. return n.Issuer;
  75. },
  76. ValidateAudience = true,//是否验证订阅人,就是验证载荷中的Aud是否对应ValidAudience参数
  77. // ValidAudience = Configuration["Setting:JwtAud"],//订阅人
  78. AudienceValidator = (m, n, z) =>
  79. {
  80. string check = RedisDbconn.Instance.Get<string>("utoken:" + n.Issuer);
  81. return m != null && m.FirstOrDefault().Equals(check);
  82. },
  83. ValidateLifetime = true,//是否验证过期时间,过期了就拒绝访问
  84. ClockSkew = TimeSpan.Zero,//这个是缓冲过期时间,也就是说,即使我们配置了过期时间,这里也要考虑进去,过期时间+缓冲,默认好像是7分钟,你可以直接设置为0
  85. RequireExpirationTime = true,
  86. };
  87. });
  88. MySystemLib.SystemPublicFuction.appcheck = "success";
  89. }
  90. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
  91. public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
  92. {
  93. if (env.IsDevelopment())
  94. {
  95. app.UseDeveloperExceptionPage();
  96. Library.ConfigurationManager.EnvironmentFlag = 1;
  97. }
  98. else
  99. {
  100. app.UseExceptionHandler("/Home/Error");
  101. app.UseHsts();
  102. Library.ConfigurationManager.EnvironmentFlag = 2;
  103. }
  104. Library.function.WritePage("/", "WebRootPath.txt", env.WebRootPath);
  105. app.UseStaticFiles();
  106. app.UseStaticFiles(new StaticFileOptions
  107. {
  108. ContentTypeProvider = new FileExtensionContentTypeProvider(new Dictionary<string, string>
  109. {
  110. { ".apk", "application/vnd.android.package-archive" }
  111. })
  112. });
  113. app.UseCors("cors");
  114. app.UseAuthentication();
  115. app.UseRouting();
  116. app.UseAuthorization();
  117. app.UseSession();
  118. app.UseEndpoints(endpoints =>
  119. {
  120. endpoints.MapControllerRoute(
  121. name: "default",
  122. pattern: "{controller=Home}/{action=Index}/{Id?}");
  123. });
  124. initMainServer();
  125. initMain1Server();
  126. InitStat();
  127. InitBs();
  128. }
  129. //初始化数据结构
  130. private void initMainServer()
  131. {
  132. Dictionary<string, Dictionary<string, string>> tables = new Dictionary<string, Dictionary<string, string>>();
  133. string connstr = Configuration["Setting:SqlConnStr"];
  134. System.Data.DataTable tablecollection = Library.CustomerSqlConn.dtable("select DISTINCT TABLE_NAME from information_schema.columns where table_schema = 'QrCodePlateMainServer2'", connstr);
  135. foreach (System.Data.DataRow subtable in tablecollection.Rows)
  136. {
  137. Dictionary<string, string> Columns = new Dictionary<string, string>();
  138. System.Data.DataTable columncollection = Library.CustomerSqlConn.dtable("select COLUMN_NAME,DATA_TYPE from information_schema.columns where table_schema = 'QrCodePlateMainServer2' and TABLE_NAME='" + subtable["TABLE_NAME"].ToString() + "'", connstr);
  139. foreach (System.Data.DataRow column in columncollection.Rows)
  140. {
  141. string datatype = column["DATA_TYPE"].ToString();
  142. if (datatype == "decimal")
  143. {
  144. datatype = "numeric";
  145. }
  146. Columns.Add(column["COLUMN_NAME"].ToString(), datatype);
  147. }
  148. tables.Add(subtable["TABLE_NAME"].ToString(), Columns);
  149. }
  150. AppConfig.Base.mainTables = tables;
  151. }
  152. private void initMain1Server()
  153. {
  154. Dictionary<string, Dictionary<string, string>> tables = new Dictionary<string, Dictionary<string, string>>();
  155. string connstr = Configuration["Setting:ZsSqlConnStr"];
  156. System.Data.DataTable tablecollection = Library.CustomerSqlConn.dtable("select DISTINCT TABLE_NAME from information_schema.columns where table_schema = 'QrCodePlateMainServer'", connstr);
  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 = 'QrCodePlateMainServer' and TABLE_NAME='" + subtable["TABLE_NAME"].ToString() + "'", connstr);
  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. AppConfig.Base.main1Tables = tables;
  173. }
  174. private void InitStat()
  175. {
  176. Dictionary<string, Dictionary<string, string>> tables = new Dictionary<string, Dictionary<string, string>>();
  177. string connstr = Configuration["Setting:StatSqlConnStr"];
  178. System.Data.DataTable tablecollection = Library.CustomerSqlConn.dtable("select DISTINCT TABLE_NAME from information_schema.columns where table_schema = 'QrCodePlateStatServer2'", connstr);
  179. foreach (System.Data.DataRow subtable in tablecollection.Rows)
  180. {
  181. Dictionary<string, string> Columns = new Dictionary<string, string>();
  182. System.Data.DataTable columncollection = Library.CustomerSqlConn.dtable("select COLUMN_NAME,DATA_TYPE from information_schema.columns where table_schema = 'QrCodePlateStatServer2' and TABLE_NAME='" + subtable["TABLE_NAME"].ToString() + "'", connstr);
  183. foreach (System.Data.DataRow column in columncollection.Rows)
  184. {
  185. string datatype = column["DATA_TYPE"].ToString();
  186. if (datatype == "decimal")
  187. {
  188. datatype = "numeric";
  189. }
  190. Columns.Add(column["COLUMN_NAME"].ToString(), datatype);
  191. }
  192. tables.Add(subtable["TABLE_NAME"].ToString(), Columns);
  193. }
  194. AppConfig.Base.statTables = tables;
  195. }
  196. private void InitBs()
  197. {
  198. Dictionary<string, Dictionary<string, string>> tables = new Dictionary<string, Dictionary<string, string>>();
  199. string connstr = Configuration["Setting:BsSqlConnStr"];
  200. System.Data.DataTable tablecollection = Library.CustomerSqlConn.dtable("select DISTINCT TABLE_NAME from information_schema.columns where table_schema = 'QrCodePlateBsServer'", connstr);
  201. foreach (System.Data.DataRow subtable in tablecollection.Rows)
  202. {
  203. Dictionary<string, string> Columns = new Dictionary<string, string>();
  204. System.Data.DataTable columncollection = Library.CustomerSqlConn.dtable("select COLUMN_NAME,DATA_TYPE from information_schema.columns where table_schema = 'QrCodePlateBsServer' and TABLE_NAME='" + subtable["TABLE_NAME"].ToString() + "'", connstr);
  205. foreach (System.Data.DataRow column in columncollection.Rows)
  206. {
  207. string datatype = column["DATA_TYPE"].ToString();
  208. if (datatype == "decimal")
  209. {
  210. datatype = "numeric";
  211. }
  212. Columns.Add(column["COLUMN_NAME"].ToString(), datatype);
  213. }
  214. tables.Add(subtable["TABLE_NAME"].ToString(), Columns);
  215. }
  216. AppConfig.Base.bsTables = tables;
  217. }
  218. }
  219. }