123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading.Tasks;
- using CZFW.CMS.Admin.App_Code;
- using CZFW.Core;
- using CZFW.Framework;
- using CZFW.Framework.Model;
- using CZFW.MDB;
- using CZFW.MDB.Util;
- using log4net;
- using log4net.Config;
- using log4net.Repository;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.Http.Features;
- using Microsoft.AspNetCore.HttpOverrides;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.EntityFrameworkCore;
- using Microsoft.Extensions.Configuration;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Logging;
- namespace CZFW.CMS.Admin
- {
- public class Startup
- {
- public static ILoggerRepository repository { get; set; }
- public Startup(IConfiguration configuration)
- {
- Configuration = configuration;
- ConfigHelper.Configs = configuration;
- repository = LogManager.CreateRepository("NetCoreRepository");
- XmlConfigurator.Configure(repository, new FileInfo("log4net.config"));
- App_Code.InitRepository.loggerRepository = repository;
- }
- public IConfiguration Configuration { get; }
- // This method gets called by the runtime. Use this method to add services to the container.
- public void ConfigureServices(IServiceCollection services)
- {
- //services.AddDbContext<CZDbContext>(options =>
- //{
- // options.UseMySql(ConfigHelper.GetValue<string>("ConnectionStrings:MySql"),
- // mysqlOptions =>
- // {
- // //mysqlOptions.ServerVersion("5.1");
- // }
- // );
- //});
- services.ConfigureFrameworkServices();
- services.ConfigureMDBServices();
- services.AddMemoryCache();
- services.AddSession();
- services.AddSession(options =>
- {
- options.Cookie.Name = "_sid__";
- options.IdleTimeout = TimeSpan.FromMinutes(60);
- });
- services.AddCors(Options =>
- {
- Options.AddPolicy("any", builder =>
- {
- builder.AllowAnyHeader()
- .AllowAnyMethod()
- .AllowAnyOrigin()
- .AllowCredentials();
- });
- });
- services.Configure<FormOptions>(x => {
- x.MultipartBodyLengthLimit = 9999999999;
- x.MultipartBoundaryLengthLimit = 999999999;
- });
- services.AddMvc(o => o.Filters.Add(typeof(GlobalExceptions))).SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
- CZHttpContext.ServiceProvider = services.BuildServiceProvider();
- }
- // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
- public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
- {
- //loggerFactory.AddLog4Net();
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
- else
- {
- app.UseExceptionHandler("/Home/Error");
- }
- app.UseStaticFiles();
- app.UseCookiePolicy();
- app.UseForwardedHeaders(new ForwardedHeadersOptions
- {
- ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
- });
- app.UseSession();
- app.UseMvc(routes =>
- {
- routes.MapRoute(
- name: "resource", template: $"{Constants.RESOURCE_FILE_URL_PREFIX}/{{siteId}}/{{fileType}}/{{fileName}}",
- defaults: new { controller = "Resource", action = "Load" });
- routes.MapRoute(
- name: "default",
- template: "{controller=Home}/{action=Index}/{id?}");
- });
- }
- }
- }
|