Startup.cs 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. using System;
  2. using System.Collections.Generic;
  3. using Microsoft.AspNetCore.Builder;
  4. using Microsoft.AspNetCore.Hosting;
  5. using Microsoft.AspNetCore.Http;
  6. using Microsoft.AspNetCore.Http.Features;
  7. using Microsoft.AspNetCore.StaticFiles;
  8. using Microsoft.Extensions.Configuration;
  9. using Microsoft.Extensions.DependencyInjection;
  10. using Microsoft.Extensions.Hosting;
  11. namespace MySystem
  12. {
  13. public class Startup
  14. {
  15. public Startup(IConfiguration configuration)
  16. {
  17. Configuration = configuration;
  18. }
  19. public IConfiguration Configuration { get; }
  20. // This method gets called by the runtime. Use this method to add services to the container.
  21. public void ConfigureServices(IServiceCollection services)
  22. {
  23. services.AddControllersWithViews();
  24. services.AddRouting(options =>
  25. {
  26. options.LowercaseUrls = true;
  27. });
  28. services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
  29. services.AddCors(option => option.AddPolicy("cors", policy => policy.AllowAnyHeader().AllowAnyMethod().AllowCredentials().SetIsOriginAllowed(_ => true)));
  30. services.AddMvc(options =>
  31. {
  32. options.EnableEndpointRouting = false;
  33. options.Filters.Add(typeof(GlobalExceptions));
  34. });
  35. services.AddSession(options =>
  36. {
  37. // 设置 Session 过期时间
  38. options.IdleTimeout = TimeSpan.FromHours(1);
  39. options.Cookie.HttpOnly = true;
  40. });
  41. services.Configure<FormOptions>(x =>
  42. {
  43. x.MultipartBodyLengthLimit = 50 * 1024 * 1024;//不到300M
  44. });
  45. string appkey = Configuration["Setting:AppKey"];
  46. string appid = Configuration["Setting:AppId"];
  47. string checkurl = Configuration["Setting:CheckUrl"];
  48. string serviceurl = Configuration["Setting:WebServiceUrl"];
  49. string schemeurl = Configuration["Setting:DbSchemeUrl"];
  50. MySystemLib.SystemPublicFuction.appkey = appkey;
  51. MySystemLib.SystemPublicFuction.appid = appid;
  52. MySystemLib.SystemPublicFuction.checkurl = checkurl;
  53. MySystemLib.SystemPublicFuction.appcheck = "success";
  54. Dictionary<string, Dictionary<string, string>> tables = new Dictionary<string, Dictionary<string, string>>();
  55. System.Data.DataTable tablecollection = Library.dbconn.dtable("select DISTINCT TABLE_NAME from information_schema.columns where table_schema = 'KxsMainServer'");
  56. foreach (System.Data.DataRow subtable in tablecollection.Rows)
  57. {
  58. Dictionary<string, string> Columns = new Dictionary<string, string>();
  59. System.Data.DataTable columncollection = Library.dbconn.dtable("select COLUMN_NAME,DATA_TYPE from information_schema.columns where table_schema = 'KxsMainServer' and TABLE_NAME='" + subtable["TABLE_NAME"].ToString() + "'");
  60. foreach (System.Data.DataRow column in columncollection.Rows)
  61. {
  62. string datatype = column["DATA_TYPE"].ToString();
  63. if (datatype == "decimal")
  64. {
  65. datatype = "numeric";
  66. }
  67. Columns.Add(column["COLUMN_NAME"].ToString(), datatype);
  68. }
  69. tables.Add(subtable["TABLE_NAME"].ToString(), Columns);
  70. }
  71. MySystemLib.SystemPublicFuction.dbtables = tables;
  72. }
  73. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
  74. public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
  75. {
  76. if (env.IsDevelopment())
  77. {
  78. app.UseDeveloperExceptionPage();
  79. // app.UseExceptionHandler("/Home/Error");
  80. }
  81. else
  82. {
  83. app.UseExceptionHandler("/Home/Error");
  84. app.UseHsts();
  85. }
  86. Library.function.WritePage("/", "WebRootPath.txt", env.WebRootPath);
  87. app.UseStaticFiles();
  88. app.UseStaticFiles(new StaticFileOptions
  89. {
  90. ContentTypeProvider = new FileExtensionContentTypeProvider(new Dictionary<string, string>
  91. {
  92. { ".apk", "application/vnd.android.package-archive" }
  93. })
  94. });
  95. app.UseCors("cors");
  96. app.UseAuthentication();
  97. app.UseRouting();
  98. app.UseAuthorization();
  99. app.UseSession();
  100. app.UseEndpoints(endpoints =>
  101. {
  102. endpoints.MapControllerRoute(
  103. name: "default",
  104. pattern: "{controller=Home}/{action=Index}/{Id?}");
  105. });
  106. //必须打开的
  107. StatService.Instance.StartEverDayV2(); //实时统计交易额
  108. StatService.Instance.StartPosActNum(); //实时统计激活数
  109. StatService.Instance.StartNewUserNum(); //实时统计新增创客数
  110. StatService.Instance.StatProfit(); //实时统计创客收益
  111. StatHelpProfitService.Instance.StartUserTrade();
  112. StatHelpProfitService.Instance.ResetMaxTradeAmount(); //每月重置助利宝最大交易总额
  113. OperateService.Instance.Start(); //统计运营中心发货量
  114. OperateService.Instance.StartPosActNum(); //统计运营中心激活量
  115. OperateService.Instance.StartPosCouponSaleNum(); //统计运营中心机具券销售量
  116. //必须打开的
  117. }
  118. }
  119. }