Program.cs 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763
  1. using Microsoft.AspNetCore.DataProtection;
  2. using Microsoft.AspNetCore.Http.Connections;
  3. using Microsoft.AspNetCore.Http.Features;
  4. using Microsoft.AspNetCore.ResponseCompression;
  5. using Microsoft.AspNetCore.Server.Kestrel.Core;
  6. using Microsoft.Extensions.DependencyInjection.Extensions;
  7. using NPOI.POIFS.Crypt;
  8. using OASystem.API.Middlewares;
  9. using OASystem.API.OAMethodLib;
  10. using OASystem.API.OAMethodLib.AMapApi;
  11. using OASystem.API.OAMethodLib.APNs;
  12. using OASystem.API.OAMethodLib.DeepSeekAPI;
  13. using OASystem.API.OAMethodLib.GenericSearch;
  14. using OASystem.API.OAMethodLib.HotmailEmail;
  15. using OASystem.API.OAMethodLib.Hub.Hubs;
  16. using OASystem.API.OAMethodLib.HunYuanAPI;
  17. using OASystem.API.OAMethodLib.JuHeAPI;
  18. using OASystem.API.OAMethodLib.QiYeWeChatAPI;
  19. using OASystem.API.OAMethodLib.Quartz.Jobs;
  20. using OASystem.API.OAMethodLib.SignalR.HubService;
  21. using OASystem.Infrastructure.Logging;
  22. using Quartz;
  23. using Quartz.Impl;
  24. using Quartz.Spi;
  25. using QuzrtzJob.Factory;
  26. using Serilog.Events;
  27. using System.IO.Compression;
  28. using TencentCloud.Common;
  29. using TencentCloud.Common.Profile;
  30. using TencentCloud.Hunyuan.V20230901;
  31. using static OASystem.API.Middlewares.RateLimitMiddleware;
  32. using OASystem.API.OAMethodLib.MicrosoftGraphMailbox;
  33. using OASystem.API.OAMethodLib.HotmailEmail;
  34. Console.Title = $"FMGJ OASystem Server";
  35. var builder = WebApplication.CreateBuilder(args);
  36. var basePath = AppContext.BaseDirectory;
  37. //寮曞叆閰嶇疆鏂囦欢
  38. var _config = new ConfigurationBuilder()
  39. .SetBasePath(basePath)
  40. .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
  41. .AddJsonFile("appsettings.Development.json", optional: true, reloadOnChange: true)
  42. .AddEnvironmentVariables()
  43. .Build();
  44. builder.Services.AddSingleton(new AppSettingsHelper(_config));
  45. //璁剧疆璇锋眰鍙傛暟鍙�涓嶅~
  46. builder.Services.AddControllers(options => options.SuppressImplicitRequiredAttributeForNonNullableReferenceTypes = true);
  47. //璁剧疆璇锋眰鍙傛暟閿欒��榛樿�よ繑鍥炴牸寮�
  48. builder.Services.AddControllers()
  49. .ConfigureApiBehaviorOptions(options =>
  50. {
  51. options.InvalidModelStateResponseFactory = context =>
  52. {
  53. var errors = context.ModelState
  54. .Where(e => e.Value.Errors.Count > 0)
  55. .ToDictionary(
  56. kvp => kvp.Key,
  57. kvp => kvp.Value.Errors.Select(e => e.ErrorMessage).ToArray()
  58. );
  59. var result = new JsonView
  60. {
  61. Code = 400,
  62. Msg = errors.FirstOrDefault().Value.FirstOrDefault() ?? "",
  63. Data = errors
  64. };
  65. return new BadRequestObjectResult(result);
  66. };
  67. });
  68. // Add services to the container.
  69. builder.Services.AddControllersWithViews();
  70. builder.Services.AddControllers()
  71. .AddJsonOptions(options =>
  72. {
  73. //绌哄瓧娈典笉鍝嶅簲Response
  74. //options.JsonSerializerOptions.DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull;
  75. options.JsonSerializerOptions.Converters.Add(new NullJsonConverter());
  76. //鏃堕棿鏍煎紡鍖栧搷搴�
  77. options.JsonSerializerOptions.Converters.Add(new DateTimeJsonConverter("yyyy-MM-dd HH:mm:ss"));
  78. //decimal 鍥涗綅灏忔暟
  79. //options.JsonSerializerOptions.Converters.Add(new DecimalConverter(_decimalPlaces)); // 灏嗕繚鐣欏皬鏁颁綅鏁板弬鏁颁紶閫掔粰鑷�瀹氫箟搴忓垪鍖栧櫒
  80. });
  81. builder.Services.TryAddSingleton<IHttpContextAccessor, HttpContextAccessor>();
  82. #region 娣诲姞闄愭祦涓�闂翠欢鏈嶅姟娉ㄥ唽
  83. // 娣诲姞鍐呭瓨缂撳瓨锛堥檺娴侀渶瑕侊級
  84. builder.Services.AddMemoryCache();
  85. // 閰嶇疆闄愭祦璁剧疆
  86. builder.Services.Configure<RateLimitConfig>(
  87. builder.Configuration.GetSection("RateLimiting"));
  88. #endregion
  89. #region Gzip
  90. builder.Services.AddResponseCompression(options =>
  91. {
  92. options.EnableForHttps = true;
  93. options.Providers.Add<GzipCompressionProvider>();
  94. });
  95. builder.Services.Configure<GzipCompressionProviderOptions>(options =>
  96. {
  97. options.Level = CompressionLevel.Optimal;
  98. });
  99. #endregion
  100. #region Cors
  101. builder.Services.AddCors(options =>
  102. {
  103. //policy.AddPolicy("Cors", opt => opt
  104. // //.SetIsOriginAllowed(origin =>
  105. // //{
  106. // // // 瀹氫箟鍏佽�哥殑鏉ユ簮鍒楄〃
  107. // // var allowedOrigins = new List<string>
  108. // // {
  109. // // "http://132.232.92.186:9002",
  110. // // "http://oa.pan-american-intl.com:4399"
  111. // // };
  112. // // // 妫€鏌ヨ�锋眰鐨勬潵婧愭槸鍚﹀湪鍏佽�哥殑鍒楄〃涓�
  113. // // return allowedOrigins.Contains(origin);
  114. // //})
  115. // //.AllowAnyOrigin()
  116. // //.AllowAnyHeader()
  117. // //.WithMethods("GET", "POST", "HEAD", "PUT", "DELETE", "OPTIONS")
  118. // //.AllowCredentials());
  119. // .AllowAnyHeader()
  120. // .AllowAnyMethod()
  121. // .AllowCredentials());
  122. options.AddPolicy("Cors", policy =>
  123. {
  124. policy.AllowAnyOrigin()
  125. .AllowAnyHeader()
  126. .AllowAnyMethod();
  127. });
  128. });
  129. #endregion
  130. #region 涓婁紶鏂囦欢
  131. builder.Services.AddCors(policy =>
  132. {
  133. policy.AddPolicy("Cors", opt => opt
  134. .AllowAnyOrigin()
  135. .AllowAnyHeader()
  136. .AllowAnyMethod()
  137. .WithExposedHeaders("X-Pagination"));
  138. });
  139. builder.Services.Configure<FormOptions>(options =>
  140. {
  141. options.KeyLengthLimit = int.MaxValue;
  142. options.ValueLengthLimit = int.MaxValue;
  143. options.MultipartBodyLengthLimit = int.MaxValue;
  144. options.MultipartHeadersLengthLimit = int.MaxValue;
  145. });
  146. builder.Services.Configure<KestrelServerOptions>(options =>
  147. {
  148. options.Limits.MaxRequestBodySize = int.MaxValue;
  149. options.Limits.MaxRequestBufferSize = int.MaxValue;
  150. });
  151. #endregion
  152. #region 鎺ュ彛鍒嗙粍
  153. var groups = new List<Tuple<string, string>>
  154. {
  155. //new Tuple<string, string>("Group1","鍒嗙粍涓€"),
  156. //new Tuple<string, string>("Group2","鍒嗙粍浜�")
  157. };
  158. #endregion
  159. #region 娉ㄥ叆鏁版嵁搴�
  160. #region old
  161. builder.Services.AddScoped(options =>
  162. {
  163. return new SqlSugarClient(new List<ConnectionConfig>()
  164. {
  165. new() {
  166. ConfigId = DBEnum.OA2023DB,
  167. ConnectionString = _config.GetConnectionString("OA2023DB"),
  168. DbType = DbType.SqlServer,
  169. IsAutoCloseConnection = true,
  170. },
  171. new()
  172. {
  173. ConfigId = DBEnum.OA2014DB,
  174. ConnectionString = _config.GetConnectionString("OA2014DB"),
  175. DbType = DbType.SqlServer,
  176. IsAutoCloseConnection = true },
  177. }
  178. , db =>
  179. {
  180. // SQL鎵ц�屽畬
  181. db.Aop.OnLogExecuted = (sql, pars) =>
  182. {
  183. // 瓒呰繃1绉�
  184. if (db.Ado.SqlExecutionTime.TotalSeconds > 1)
  185. {
  186. var FirstMethodName = db.Ado.SqlStackTrace.FirstMethodName;
  187. //鎵ц�屽畬浜嗗彲浠ヨ緭鍑篠QL鎵ц�屾椂闂� (OnLogExecutedDelegate)
  188. Console.WriteLine("NowTime:" + DateTime.UtcNow.ToString("yyyy-MM-dd HH:mm:ss"));
  189. Console.WriteLine("MethodName:" + FirstMethodName);
  190. Console.WriteLine("ElapsedTime:" + db.Ado.SqlExecutionTime.ToString());
  191. Console.WriteLine("ExecuteSQL:" + sql);
  192. }
  193. };
  194. //SQL鎵ц�屽墠
  195. db.Aop.OnLogExecuting = (sql, pars) =>
  196. {
  197. };
  198. //SQL鎶ラ敊
  199. db.Aop.OnError = (exp) =>
  200. {
  201. //鑾峰彇鍘熺敓SQL鎺ㄨ崘 5.1.4.63 鎬ц兘OK
  202. //UtilMethods.GetNativeSql(exp.Sql, exp.Parametres);
  203. //鑾峰彇鏃犲弬鏁癝QL瀵规€ц兘鏈夊奖鍝嶏紝鐗瑰埆澶х殑SQL鍙傛暟澶氱殑锛岃皟璇曚娇鐢�
  204. //UtilMethods.GetSqlString(DbType.SqlServer, exp.sql, exp.parameters);
  205. };
  206. //淇�鏀筍QL鍜屽弬鏁扮殑鍊�
  207. db.Aop.OnExecutingChangeSql = (sql, pars) =>
  208. {
  209. //sql=newsql
  210. //foreach(var p in pars) //淇�鏀�
  211. return new KeyValuePair<string, SugarParameter[]>(sql, pars);
  212. };
  213. }
  214. );
  215. });
  216. #endregion
  217. #endregion
  218. //#region Identity 閰嶇疆
  219. //builder.Services.AddDataProtection();
  220. ////涓嶈�佺敤 AddIdentity 锛� AddIdentity 鏄�浜嶮VC妗嗘灦涓�鐨�
  221. //builder.Services.AddIdentityCore<User>(opt =>
  222. //{
  223. // opt.Password.RequireDigit = false; //鏁板瓧
  224. // opt.Password.RequireLowercase = false;//灏忓啓瀛楁瘝
  225. // opt.Password.RequireNonAlphanumeric = false;//鐗规畩绗﹀彿 渚嬪�� 锟�#@锛�
  226. // opt.Password.RequireUppercase = false; //澶у啓瀛楁瘝
  227. // opt.Password.RequiredLength = 6;//瀵嗙爜闀垮害 6
  228. // opt.Password.RequiredUniqueChars = 1;//鐩稿悓瀛楃�﹀彲浠ュ嚭鐜板嚑娆�
  229. // opt.Lockout.MaxFailedAccessAttempts = 5; //鍏佽�告渶澶氳緭鍏ヤ簲娆$敤鎴峰悕/瀵嗙爜閿欒��
  230. // opt.Lockout.DefaultLockoutTimeSpan = new TimeSpan(0, 5, 0);//閿佸畾浜斿垎閽�
  231. // opt.Tokens.PasswordResetTokenProvider = TokenOptions.DefaultEmailProvider; // 淇�鏀瑰瘑鐮佷娇鐢ㄩ偖浠躲€愰獙璇佺爜妯″紡銆�
  232. // opt.Tokens.EmailConfirmationTokenProvider = TokenOptions.DefaultEmailProvider; ////
  233. //});
  234. //var idBuilder = new IdentityBuilder(typeof(User), typeof(UserRole), services);
  235. //idBuilder.AddEntityFrameworkStores<swapDbContext>().AddDefaultTokenProviders().AddRoleManager<RoleManager<UserRole>>().AddUserManager<UserManager<User>>();
  236. //#endregion
  237. #region 娉ㄥ叆Swagger娉ㄩ噴(鍚�鐢�)
  238. if (AppSettingsHelper.Get("UseSwagger").ToBool())
  239. {
  240. builder.Services.AddSwaggerGen(a =>
  241. {
  242. a.SwaggerDoc("v1", new OpenApiInfo
  243. {
  244. Version = "v1",
  245. Title = "Api",
  246. Description = "Api鎺ュ彛鏂囨。"
  247. });
  248. foreach (var item in groups)
  249. {
  250. a.SwaggerDoc(item.Item1, new OpenApiInfo { Version = item.Item1, Title = item.Item2, Description = $"{item.Item2}鎺ュ彛鏂囨。" });
  251. }
  252. a.DocumentFilter<SwaggerApi>();
  253. a.IncludeXmlComments(Path.Combine(basePath, "OASystem.Api.xml"), true);
  254. a.IncludeXmlComments(Path.Combine(basePath, "OASystem.Domain.xml"), true);
  255. a.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme
  256. {
  257. Description = "Value: Bearer {token}",
  258. Name = "Authorization",
  259. In = ParameterLocation.Header,
  260. Type = SecuritySchemeType.ApiKey,
  261. Scheme = "Bearer"
  262. });
  263. a.AddSecurityRequirement(new OpenApiSecurityRequirement()
  264. {{
  265. new OpenApiSecurityScheme
  266. {
  267. Reference = new OpenApiReference
  268. {
  269. Type = ReferenceType.SecurityScheme,
  270. Id = "Bearer"
  271. }, Scheme = "oauth2", Name = "Bearer", In = ParameterLocation.Header }, new List<string>()
  272. }
  273. });
  274. });
  275. }
  276. #endregion
  277. #region 娣诲姞鏍¢獙
  278. builder.Services.AddTransient<OASystemAuthentication>();
  279. builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme)
  280. .AddJwtBearer(options =>
  281. {
  282. options.TokenValidationParameters = new TokenValidationParameters
  283. {
  284. ValidateIssuer = true,
  285. ValidateAudience = true,
  286. ValidateLifetime = true,
  287. ValidateIssuerSigningKey = true,
  288. ValidAudience = "OASystem.com",
  289. ValidIssuer = "OASystem.com",
  290. IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(_config["JwtSecurityKey"])),
  291. ClockSkew = TimeSpan.FromSeconds(30), //杩囨湡鏃堕棿瀹归敊鍊硷紝瑙e喅鏈嶅姟鍣ㄧ��鏃堕棿涓嶅悓姝ラ棶棰橈紙绉掞級
  292. RequireExpirationTime = true,
  293. };
  294. options.Events = new JwtBearerEvents
  295. {
  296. OnMessageReceived = context =>
  297. {
  298. var path = context.HttpContext.Request.Path;
  299. //濡傛灉鏄痵ignalr璇锋眰锛岄渶瑕佸皢token杞�瀛橈紝鍚﹀垯JWT鑾峰彇涓嶅埌token銆侽PTIONS璇锋眰闇€瑕佽繃婊ゅ埌锛屽洜涓篛PTIONS璇锋眰鑾峰彇涓嶅埌Token锛岀敤NGINX杩囨护鎺塐PTION璇锋眰.
  300. if (path.StartsWithSegments("/ChatHub"))
  301. {
  302. string accessToken = context.Request.Query["access_token"].ToString();
  303. if (string.IsNullOrWhiteSpace(accessToken))
  304. {
  305. accessToken = context.Request.Headers["Authorization"].ToString();
  306. }
  307. context.Token = accessToken.Replace("Bearer ", "").Trim();
  308. }
  309. return Task.CompletedTask;
  310. }
  311. };
  312. });
  313. #endregion
  314. #region 鍒濆�嬪寲鏃ュ織
  315. var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT");
  316. Log.Logger = new LoggerConfiguration()
  317. //涓嶈�板綍瀹氭椂璁块棶API
  318. .Filter.ByIncludingOnly(logEvent =>
  319. {
  320. if (logEvent.Properties.TryGetValue("RequestPath", out var pathValue))
  321. {
  322. var path = pathValue.ToString().Trim('"');
  323. return !path.StartsWith("/api/System/PotsMessageUnreadTotalCount");
  324. }
  325. return true;
  326. })
  327. .MinimumLevel.Information()
  328. .MinimumLevel.Override("Microsoft", LogEventLevel.Warning)
  329. .MinimumLevel.Override("System", LogEventLevel.Warning)
  330. .Enrich.FromLogContext()
  331. .WriteTo.Console()
  332. .WriteTo.File(Path.Combine("Logs", @"Log.txt"), rollingInterval: RollingInterval.Day)
  333. .CreateLogger();
  334. //
  335. #region 鍑哄叆澧冭垂鐢ㄦ槑缁� 涓撶敤璁板綍鍣�
  336. // 鎸囧畾纾佺洏缁濆�硅矾寰勶紙绀轰緥锛欴鐩樼殑AppLogs鏂囦欢澶癸級
  337. var logDirectory = @"D:\OASystem\Logs\EnterExitCost";
  338. // 鑷�鍔ㄥ垱寤虹洰褰曪紙濡傛灉涓嶅瓨鍦�锛�
  339. try
  340. {
  341. Directory.CreateDirectory(logDirectory);
  342. Log.Information($"鏃ュ織鐩�褰曞凡鍒涘缓/纭�璁ゅ瓨鍦�: {logDirectory}");
  343. }
  344. catch (Exception ex)
  345. {
  346. Log.Fatal($"鏃犳硶鍒涘缓鏃ュ織鐩�褰� {logDirectory}: {ex.Message}");
  347. throw;
  348. }
  349. var eec_TextLogger = new LoggerConfiguration()
  350. .MinimumLevel.Information()
  351. .WriteTo.File(Path.Combine(logDirectory, "text-records-.txt"), rollingInterval: RollingInterval.Month)
  352. .CreateLogger();
  353. #endregion
  354. #region 鍥㈢粍姝ラ�ゆ搷浣� 涓撶敤璁板綍鍣�
  355. // 鎸囧畾纾佺洏缁濆�硅矾寰勶紙绀轰緥锛欴鐩樼殑AppLogs鏂囦欢澶癸級
  356. var groupLogDir = @"D:\OASystem\Logs\GroupStepOP";
  357. // 鑷�鍔ㄥ垱寤虹洰褰曪紙濡傛灉涓嶅瓨鍦�锛�
  358. try
  359. {
  360. Directory.CreateDirectory(groupLogDir);
  361. Log.Information($"鏃ュ織鐩�褰曞凡鍒涘缓/纭�璁ゅ瓨鍦�: {groupLogDir}");
  362. }
  363. catch (Exception ex)
  364. {
  365. Log.Fatal($"鏃犳硶鍒涘缓鏃ュ織鐩�褰� {groupLogDir}: {ex.Message}");
  366. throw;
  367. }
  368. var groupStepOP_TextLogger = new LoggerConfiguration()
  369. .MinimumLevel.Information()
  370. .WriteTo.File(Path.Combine(groupLogDir, "text-records-.txt"), rollingInterval: RollingInterval.Month)
  371. .CreateLogger();
  372. #endregion
  373. #region 浠诲姟鍒嗛厤鎿嶄綔 涓撶敤璁板綍鍣�
  374. // 鎸囧畾纾佺洏缁濆�硅矾寰勶紙绀轰緥锛欴鐩樼殑AppLogs鏂囦欢澶癸級
  375. var taskLogDir = @"D:\OASystem\Logs\TaskAllocation";
  376. // 鑷�鍔ㄥ垱寤虹洰褰曪紙濡傛灉涓嶅瓨鍦�锛�
  377. try
  378. {
  379. Directory.CreateDirectory(taskLogDir);
  380. Log.Information($"鏃ュ織鐩�褰曞凡鍒涘缓/纭�璁ゅ瓨鍦�: {taskLogDir}");
  381. }
  382. catch (Exception ex)
  383. {
  384. Log.Fatal($"鏃犳硶鍒涘缓鏃ュ織鐩�褰� {taskLogDir}: {ex.Message}");
  385. throw;
  386. }
  387. var task_TextLogger = new LoggerConfiguration()
  388. .MinimumLevel.Information()
  389. .WriteTo.File(Path.Combine(taskLogDir, "text-records-.txt"), rollingInterval: RollingInterval.Month)
  390. .CreateLogger();
  391. #endregion
  392. // 閰嶇疆Serilog涓篖og;
  393. builder.Host.UseSerilog();
  394. builder.Services.AddSingleton<ITextFileLogger>(new TextFileLogger(eec_TextLogger));
  395. builder.Services.AddSingleton<IGroupTextFileLogger>(new GroupTextFileLogger(groupStepOP_TextLogger));
  396. builder.Services.AddSingleton<ITaskTextFileLogger>(new TaskTextFileLogger(task_TextLogger));
  397. #endregion
  398. #region 寮曞叆娉ㄥ唽Autofac Module
  399. builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory());
  400. var hostBuilder = builder.Host.ConfigureContainer<ContainerBuilder>(builder =>
  401. {
  402. try
  403. {
  404. builder.RegisterModule(new AutofacRegister());
  405. }
  406. catch (Exception ex)
  407. {
  408. throw new Exception(ex.Message + "\n" + ex.InnerException);
  409. }
  410. });
  411. #endregion
  412. #region AutoMapper
  413. AutoMapper.IConfigurationProvider config = new MapperConfiguration(cfg =>
  414. {
  415. cfg.AddProfile<_baseMappingProfile>();
  416. });
  417. builder.Services.AddSingleton(config);
  418. builder.Services.AddScoped<IMapper, Mapper>();
  419. #endregion
  420. #region DeepSeek AI 鏈嶅姟
  421. // 閰嶇疆HTTP瀹㈡埛绔�锛圖eepSeek 闀胯€楁椂璋冪敤锛岄粯璁� 10 鍒嗛挓锛�
  422. builder.Services.AddHttpClient<IDeepSeekService, DeepSeekService>(client =>
  423. client.Timeout = TimeSpan.FromMinutes(10));
  424. #endregion
  425. #region Doubao API 鏈嶅姟
  426. var doubaoSetting = builder.Configuration.GetSection("DouBao").Get<OASystem.API.OAMethodLib.DoubaoAPI.DoubaoSetting>();
  427. builder.Services.AddSingleton(doubaoSetting);
  428. builder.Services.AddHttpClient("Doubao", c => c.BaseAddress = new Uri(doubaoSetting.BaseAddress));
  429. builder.Services.AddScoped<OASystem.API.OAMethodLib.DoubaoAPI.IDoubaoService, OASystem.API.OAMethodLib.DoubaoAPI.DoubaoService>();
  430. #endregion
  431. #region 鑱氬悎API 鏈嶅姟
  432. builder.Services.AddControllersWithViews();
  433. builder.Services.AddSingleton<IJuHeApiService, JuHeApiService>();
  434. builder.Services.AddHttpClient("PublicJuHeApi", c => c.BaseAddress = new Uri("http://web.juhe.cn"));
  435. builder.Services.AddHttpClient("PublicJuHeTranslateApi", c => c.BaseAddress = new Uri("http://apis.juhe.cn"));
  436. #endregion
  437. #region 浼佷笟寰�淇�API 鏈嶅姟
  438. builder.Services.AddControllersWithViews();
  439. builder.Services.AddSingleton<IQiYeWeChatApiService, QiYeWeChatApiService>();
  440. builder.Services.AddHttpClient("PublicQiYeWeChatApi", c => c.BaseAddress = new Uri("https://qyapi.weixin.qq.com"));
  441. #endregion
  442. #region 娣峰厓API
  443. // 浠庨厤缃�涓�璇诲彇鑵捐��浜戝瘑閽ヤ俊鎭�锛堣�风‘淇漚ppsettings.json涓�鏈夊�瑰簲閰嶇疆锛�
  444. var secretId = builder.Configuration["TencentCloud:SecretId"];
  445. var secretKey = builder.Configuration["TencentCloud:SecretKey"];
  446. var region = builder.Configuration["TencentCloud:Region"] ?? "ap-guangzhou";
  447. // 閰嶇疆HttpClientFactory锛圫DK鍐呴儴浼氱敤鍒帮級
  448. builder.Services.AddHttpClient();
  449. // 娉ㄥ唽鑵捐��浜慔unyuan Client涓篠ingleton锛堟帹鑽愶級
  450. builder.Services.AddSingleton(provider =>
  451. {
  452. Credential cred = new Credential
  453. {
  454. SecretId = secretId,
  455. SecretKey = secretKey
  456. };
  457. ClientProfile clientProfile = new ClientProfile();
  458. HttpProfile httpProfile = new HttpProfile
  459. {
  460. Endpoint = "hunyuan.tencentcloudapi.com",
  461. Timeout = 60 * 10, // 鍗曚綅绉�
  462. };
  463. clientProfile.HttpProfile = httpProfile;
  464. return new HunyuanClient(cred, region, clientProfile);
  465. });
  466. // 娉ㄥ唽鑷�瀹氫箟鏈嶅姟鎺ュ彛鍙婂叾瀹炵幇涓篠coped鐢熷懡鍛ㄦ湡
  467. builder.Services.AddScoped<IHunyuanService, HunyuanService>();
  468. // 娉ㄥ唽娣峰厓鏈嶅姟
  469. //builder.Services.AddHttpClient<IHunyuanService, HunyuanService>(client =>
  470. //{
  471. // client.BaseAddress = new Uri("https://hunyuan.ap-chengdu.tencentcloudapi.com/");
  472. // client.Timeout = TimeSpan.FromSeconds(60);
  473. //});
  474. //builder.Services.Configure<HunyuanApiSettings>(builder.Configuration.GetSection("HunyuanApiSettings"));
  475. #endregion
  476. #region 鏈夐亾API 鏈嶅姟
  477. //builder.Services.AddControllersWithViews();
  478. //builder.Services.AddSingleton<IYouDaoApiService, YouDaoApiService>();
  479. //builder.Services.AddHttpClient("PublicYouDaoApi", c => c.BaseAddress = new Uri("https://openapi.youdao.com"));
  480. #endregion
  481. #region 楂樺痉鍦板浘API 鏈嶅姟
  482. builder.Services.AddHttpClient<GeocodeService>();
  483. #endregion
  484. #region 閫氱敤鎼滅储鏈嶅姟
  485. builder.Services.AddScoped(typeof(DynamicSearchService<>));
  486. #endregion
  487. #region Quartz
  488. builder.Services.AddSingleton<ISchedulerFactory, StdSchedulerFactory>();
  489. builder.Services.AddSingleton<QuartzFactory>();
  490. builder.Services.AddSingleton<ALiYunPostMessageJob>();
  491. builder.Services.AddSingleton<TaskJob>();
  492. builder.Services.AddSingleton<TaskNewsFeedJob>();
  493. builder.Services.AddSingleton<PerformanceJob>();
  494. builder.Services.AddSingleton<GroupProcessNodeJob>();
  495. builder.Services.AddSingleton<WeeklyFridayJob>();
  496. //# new business
  497. builder.Services.AddControllersWithViews();
  498. builder.Services.AddSingleton<IAPNsService, APNsService>();
  499. builder.Services.AddSingleton<IJobFactory, IOCJobFactory>();
  500. #endregion
  501. #region SignalR
  502. builder.Services.AddSignalR()
  503. .AddJsonProtocol(options =>
  504. {
  505. options.PayloadSerializerOptions.PropertyNamingPolicy = null;
  506. });
  507. builder.Services.TryAddSingleton(typeof(CommonService));
  508. #endregion
  509. #region hotmail
  510. builder.Services.AddTransient<IHotmailEmailService, HotmailEmailService>();
  511. #endregion
  512. #region Microsoft Graph 閭�绠辨湇鍔�
  513. builder.Services.Configure<MicrosoftGraphMailboxOptions>(
  514. builder.Configuration.GetSection(MicrosoftGraphMailboxOptions.SectionName));
  515. builder.Services.AddHttpClient("MicrosoftGraph", c =>
  516. {
  517. c.BaseAddress = new Uri("https://graph.microsoft.com/v1.0/");
  518. c.Timeout = TimeSpan.FromMinutes(2);
  519. });
  520. builder.Services.AddSingleton<IMicrosoftGraphMailboxService, MicrosoftGraphMailboxService>();
  521. #endregion
  522. var app = builder.Build();
  523. //// 1. 寮傚父澶勭悊鍣ㄥ簲璇ュ湪鏈€鏃╃殑浣嶇疆锛堥櫎浜嗘棩蹇楃瓑锛�
  524. //app.UseExceptionHandler(new ExceptionHandlerOptions
  525. //{
  526. // ExceptionHandlingPath = "/Home/Error",
  527. // AllowStatusCode404Response = true
  528. //});
  529. //鑷�瀹氫箟寮傚父涓�闂翠欢
  530. //app.UseMiddleware<ExceptionHandlingMiddleware>();
  531. //serilog鏃ュ織 璇锋眰涓�闂寸�¢亾
  532. app.UseSerilogRequestLogging(options =>
  533. {
  534. //options.MessageTemplate = "HTTP {RequestMethod} {RequestPath} from {ClientIP} (UA: {UserAgent}, Referer: {Referer}) - {StatusCode} in {Elapsed} ms";
  535. options.MessageTemplate = "HTTP {RequestMethod} {RequestPath} from {ClientIP} (UA: {UserAgent}) - {StatusCode} in {Elapsed} ms";
  536. // 鑷�瀹氫箟鏃ュ織绾у埆
  537. options.GetLevel = (httpContext, elapsed, ex) =>
  538. {
  539. if (ex != null) return LogEventLevel.Error;
  540. if (httpContext.Response.StatusCode > 499) return LogEventLevel.Error;
  541. // 瀵瑰仴搴锋�€鏌ョ瓑绔�鐐逛娇鐢ㄦ洿浣庣骇鍒�
  542. if (httpContext.Request.Path.StartsWithSegments("/health"))
  543. return LogEventLevel.Debug;
  544. return LogEventLevel.Information;
  545. };
  546. // 涓板瘜鏃ュ織涓婁笅鏂�
  547. options.EnrichDiagnosticContext = (diagnosticContext, httpContext) =>
  548. {
  549. // 鑾峰彇瀹㈡埛绔疘P锛堝�勭悊浠g悊鎯呭喌锛�
  550. var ipAddress = CommonFun.GetClientIpAddress(httpContext);
  551. var userAgent = CommonFun.DetectOS(httpContext.Request.Headers.UserAgent.ToString());
  552. // 娣诲姞IP鍜屽叾浠栨湁鐢ㄤ俊鎭�鍒版棩蹇椾笂涓嬫枃
  553. diagnosticContext.Set("ClientIP", ipAddress);
  554. diagnosticContext.Set("RequestHost", httpContext.Request.Host.Value);
  555. diagnosticContext.Set("UserAgent", userAgent);
  556. diagnosticContext.Set("Referer", httpContext.Request.Headers.Referer.ToString());
  557. // 瀵逛簬API璇锋眰娣诲姞棰濆�栦俊鎭�
  558. if (httpContext.Request.Path.StartsWithSegments("/api"))
  559. {
  560. diagnosticContext.Set("RequestContentType", httpContext.Request.ContentType);
  561. diagnosticContext.Set("RequestContentLength", httpContext.Request.ContentLength ?? 0);
  562. }
  563. };
  564. });
  565. AutofacIocManager.Instance.Container = app.UseHostFiltering().ApplicationServices.GetAutofacRoot();//AutofacIocManager
  566. // Configure the HTTP request pipeline.
  567. if (!app.Environment.IsDevelopment())
  568. {
  569. app.UseExceptionHandler("/Home/Error");
  570. }
  571. app.UseStaticFiles();
  572. app.UseRouting();
  573. app.UseCors("Cors"); //Cors
  574. //app.UseMiddleware<FixedPromptMiddleware>();
  575. // 瀹氫箟鍏佽�窤PI鐨勮�块棶鏃堕棿娈�
  576. //var startTime = DateTime.Parse(_config["ApiAccessTime:StartTime"]);
  577. //var endTime = DateTime.Parse(_config["ApiAccessTime:EndTime"]);
  578. //app.UseMiddleware<TimeRestrictionMiddleware>(startTime, endTime);
  579. //鎸囧畾API鎿嶄綔璁板綍淇℃伅
  580. app.UseMiddleware<RecordAPIOperationMiddleware>();
  581. app.UseAuthentication(); // 璁よ瘉
  582. app.UseMiddleware<RateLimitMiddleware>();
  583. app.UseAuthorization(); // 鎺堟潈
  584. app.UseWhen(context =>
  585. context.Request.Path.StartsWithSegments("/api/MarketCustomerResources/QueryNewClientData"),
  586. branch => branch.UseResponseCompression());
  587. // 鎺堟潈璺�寰�
  588. //app.MapGet("generatetoken", c => c.Response.WriteAsync(JWTBearer.GenerateToken(c)));
  589. #region 鍚�鐢╯waggerUI
  590. if (AppSettingsHelper.Get("UseSwagger").ToBool())
  591. {
  592. app.UseSwagger();
  593. app.UseSwaggerUI(c =>
  594. {
  595. c.SwaggerEndpoint("/swagger/v1/swagger.json", "Ver0.1");
  596. foreach (var item in groups)
  597. {
  598. c.SwaggerEndpoint($"/swagger/{item.Item1}/swagger.json", item.Item2);
  599. }
  600. c.RoutePrefix = string.Empty;
  601. c.DocExpansion(Swashbuckle.AspNetCore.SwaggerUI.DocExpansion.None);
  602. c.DefaultModelsExpandDepth(-1);
  603. //c.EnableFilter();// 娣诲姞鎼滅储鍔熻兘
  604. //c.EnableDeepLinking(); // 鍚�鐢ㄦ繁搴﹂摼鎺�
  605. });
  606. }
  607. #endregion
  608. #region Quartz
  609. //鑾峰彇瀹瑰櫒涓�鐨凲uartzFactory
  610. var quartz = app.Services.GetRequiredService<QuartzFactory>();
  611. app.Lifetime.ApplicationStarted.Register(async () =>
  612. {
  613. await quartz.Start();
  614. });
  615. app.Lifetime.ApplicationStopped.Register(() =>
  616. {
  617. //Quzrtz鍏抽棴鏂规硶
  618. //quartz.Stop();
  619. });
  620. #endregion
  621. #region SignalR
  622. app.MapHub<ChatHub>("/ChatHub", options =>
  623. {
  624. options.Transports =
  625. HttpTransportType.WebSockets |
  626. HttpTransportType.LongPolling;
  627. });
  628. #endregion
  629. app.MapControllerRoute(
  630. name: "default",
  631. pattern: "{controller=Home}/{action=Index}/{id?}");
  632. app.Run();