Startup.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Threading.Tasks;
  6. using CZFW.CMS.Admin.App_Code;
  7. using CZFW.Core;
  8. using CZFW.Framework;
  9. using CZFW.Framework.Model;
  10. using CZFW.MDB;
  11. using CZFW.MDB.Util;
  12. using log4net;
  13. using log4net.Config;
  14. using log4net.Repository;
  15. using Microsoft.AspNetCore.Builder;
  16. using Microsoft.AspNetCore.Hosting;
  17. using Microsoft.AspNetCore.Http;
  18. using Microsoft.AspNetCore.Http.Features;
  19. using Microsoft.AspNetCore.HttpOverrides;
  20. using Microsoft.AspNetCore.Mvc;
  21. using Microsoft.EntityFrameworkCore;
  22. using Microsoft.Extensions.Configuration;
  23. using Microsoft.Extensions.DependencyInjection;
  24. using Microsoft.Extensions.Logging;
  25. namespace CZFW.CMS.Admin
  26. {
  27. public class Startup
  28. {
  29. public static ILoggerRepository repository { get; set; }
  30. public Startup(IConfiguration configuration)
  31. {
  32. Configuration = configuration;
  33. ConfigHelper.Configs = configuration;
  34. repository = LogManager.CreateRepository("NetCoreRepository");
  35. XmlConfigurator.Configure(repository, new FileInfo("log4net.config"));
  36. App_Code.InitRepository.loggerRepository = repository;
  37. }
  38. public IConfiguration Configuration { get; }
  39. // This method gets called by the runtime. Use this method to add services to the container.
  40. public void ConfigureServices(IServiceCollection services)
  41. {
  42. //services.AddDbContext<CZDbContext>(options =>
  43. //{
  44. // options.UseMySql(ConfigHelper.GetValue<string>("ConnectionStrings:MySql"),
  45. // mysqlOptions =>
  46. // {
  47. // //mysqlOptions.ServerVersion("5.1");
  48. // }
  49. // );
  50. //});
  51. services.ConfigureFrameworkServices();
  52. services.ConfigureMDBServices();
  53. services.AddMemoryCache();
  54. services.AddSession();
  55. services.AddSession(options =>
  56. {
  57. options.Cookie.Name = "_sid__";
  58. options.IdleTimeout = TimeSpan.FromMinutes(60);
  59. });
  60. services.AddCors(Options =>
  61. {
  62. Options.AddPolicy("any", builder =>
  63. {
  64. builder.AllowAnyHeader()
  65. .AllowAnyMethod()
  66. .AllowAnyOrigin()
  67. .AllowCredentials();
  68. });
  69. });
  70. services.Configure<FormOptions>(x => {
  71. x.MultipartBodyLengthLimit = 9999999999;
  72. x.MultipartBoundaryLengthLimit = 999999999;
  73. });
  74. services.AddMvc(o => o.Filters.Add(typeof(GlobalExceptions))).SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
  75. CZHttpContext.ServiceProvider = services.BuildServiceProvider();
  76. }
  77. // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
  78. public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
  79. {
  80. //loggerFactory.AddLog4Net();
  81. if (env.IsDevelopment())
  82. {
  83. app.UseDeveloperExceptionPage();
  84. }
  85. else
  86. {
  87. app.UseExceptionHandler("/Home/Error");
  88. }
  89. app.UseStaticFiles();
  90. app.UseCookiePolicy();
  91. app.UseForwardedHeaders(new ForwardedHeadersOptions
  92. {
  93. ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
  94. });
  95. app.UseSession();
  96. app.UseMvc(routes =>
  97. {
  98. routes.MapRoute(
  99. name: "resource", template: $"{Constants.RESOURCE_FILE_URL_PREFIX}/{{siteId}}/{{fileType}}/{{fileName}}",
  100. defaults: new { controller = "Resource", action = "Load" });
  101. routes.MapRoute(
  102. name: "default",
  103. template: "{controller=Home}/{action=Index}/{id?}");
  104. });
  105. }
  106. }
  107. }