Program.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. using FreeScheduler;
  2. using Microsoft.Extensions.DependencyInjection;
  3. using Microsoft.Extensions.Hosting;
  4. using Savorboard.CAP.InMemoryMessageQueue;
  5. using System.Reflection;
  6. using ZhonTai;
  7. using ZhonTai.Admin.Core;
  8. using ZhonTai.Admin.Core.Configs;
  9. using ZhonTai.Admin.Core.Consts;
  10. using ZhonTai.Admin.Core.Db;
  11. using ZhonTai.Admin.Core.Startup;
  12. using ZhonTai.Admin.Tools.TaskScheduler;
  13. using ZhonTai.ApiUI;
  14. using ZhonTai.Common.Helpers;
  15. new HostApp(new HostAppOptions
  16. {
  17. //配置FreeSql
  18. ConfigureFreeSql = (freeSql, dbConfig) =>
  19. {
  20. if(dbConfig.Key == DbKeys.AppDb)
  21. {
  22. freeSql.SyncSchedulerStructure(dbConfig, (fsql) =>
  23. {
  24. fsql.CodeFirst
  25. .ConfigEntity<TaskInfo>(a =>
  26. {
  27. a.Name("app_task");
  28. })
  29. .ConfigEntity<TaskLog>(a =>
  30. {
  31. a.Name("app_task_log");
  32. });
  33. });
  34. }
  35. },
  36. //配置后置服务
  37. ConfigurePostServices = context =>
  38. {
  39. //context.Services.AddTiDb(context);
  40. //添加cap事件总线
  41. var appConfig = ConfigHelper.Get<AppConfig>("appconfig", context.Environment.EnvironmentName);
  42. Assembly[] assemblies = AssemblyHelper.GetAssemblyList(appConfig.AssemblyNames);
  43. //var dbConfig = ConfigHelper.Get<DbConfig>("dbconfig", context.Environment.EnvironmentName);
  44. //var rabbitMQ = context.Configuration.GetSection("CAP:RabbitMq").Get<RabbitMQOptions>();
  45. context.Services.AddCap(config =>
  46. {
  47. config.UseInMemoryStorage();
  48. config.UseInMemoryMessageQueue();
  49. //<PackageReference Include="DotNetCore.CAP.MySql" Version="7.1.1" />
  50. //<PackageReference Include="DotNetCore.CAP.RabbitMQ" Version="7.1.1" />
  51. //config.UseMySql(dbConfig.ConnectionString);
  52. //config.UseRabbitMQ(mqConfig => {
  53. // mqConfig.HostName = rabbitMQ.HostName;
  54. // mqConfig.Port = rabbitMQ.Port;
  55. // mqConfig.UserName = rabbitMQ.UserName;
  56. // mqConfig.Password = rabbitMQ.Password;
  57. // mqConfig.ExchangeName = rabbitMQ.ExchangeName;
  58. //});
  59. config.UseDashboard();
  60. }).AddSubscriberAssembly(assemblies);
  61. //添加任务调度
  62. context.Services.AddTaskScheduler(DbKeys.AppDb, options =>
  63. {
  64. options.ConfigureFreeSql = freeSql =>
  65. {
  66. freeSql.CodeFirst
  67. .ConfigEntity<TaskInfo>(a =>
  68. {
  69. a.Name("app_task");
  70. })
  71. .ConfigEntity<TaskLog>(a =>
  72. {
  73. a.Name("app_task_log");
  74. });
  75. };
  76. //模块任务处理器
  77. options.TaskHandler = new CloudTaskHandler(options.FreeSqlCloud, DbKeys.AppDb);
  78. });
  79. },
  80. //配置Autofac容器
  81. ConfigureAutofacContainer = (builder, context) =>
  82. {
  83. },
  84. //配置Mvc
  85. ConfigureMvcBuilder = (builder, context) =>
  86. {
  87. },
  88. //配置后置中间件
  89. ConfigurePostMiddleware = context =>
  90. {
  91. var app = context.App;
  92. var env = app.Environment;
  93. var appConfig = app.Services.GetService<AppConfig>();
  94. #region 新版Api文档
  95. if (env.IsDevelopment() || appConfig.ApiUI.Enable)
  96. {
  97. app.UseApiUI(options =>
  98. {
  99. options.RoutePrefix = appConfig.ApiUI.RoutePrefix;
  100. var routePath = options.RoutePrefix.NotNull() ? $"{options.RoutePrefix}/" : "";
  101. appConfig.Swagger.Projects?.ForEach(project =>
  102. {
  103. options.SwaggerEndpoint($"/{routePath}swagger/{project.Code.ToLower()}/swagger.json", project.Name);
  104. });
  105. });
  106. }
  107. #endregion
  108. }
  109. }).Run(args);
  110. #if DEBUG
  111. public partial class Program { }
  112. #endif