| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading.Tasks;
- using Microsoft.AspNetCore.Authentication.Cookies;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.AspNetCore.Http;
- using Microsoft.AspNetCore.HttpsPolicy;
- using Microsoft.AspNetCore.Rewrite;
- using Microsoft.Extensions.Configuration;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.FileProviders;
- using Microsoft.Extensions.Hosting;
- using SuperAdmin.Controllers;
- using SuperAdmin.Extensions;
- using SuperCms.Repositories;
- namespace SuperAdmin
- {
- public class Startup
- {
- public Startup(IConfiguration configuration)
- {
- Configuration = configuration;
- }
- 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.AddControllersWithViews();
- services.AddControllersWithViews().AddRazorRuntimeCompilation();
- services.AddTransient<ISuperAdminRepo, SuperAdminRepo>();
- services.AddSingleton<IConfiguration>(Configuration);
- services.AddMvc();
- //.SetCompatibilityVersion(CompatibilityVersion.Version_2_1)
- //.AddJsonOptions(options => options.SerializerSettings.ContractResolver = new DefaultContractResolver());
- services.AddAntiforgery(o => o.HeaderName = "XSRF-TOKEN");
- services.AddDistributedMemoryCache(); // Adds a default in-memory implementation of IDistributedCache
- services.AddSession(options =>
- {
- options.IdleTimeout = TimeSpan.FromSeconds(600);
- options.Cookie.HttpOnly = true;
- options.Cookie.IsEssential = true;
- });
- //services.AddSession();
- services.AddAuthentication(CookieAuthenticationDefaults.AuthenticationScheme).AddCookie();
- services.AddHttpContextAccessor();
- services.AddMvc(options =>
- {
- options.Filters.Add(new ConfigAction(
- Configuration.GetSection("MyConfig")
- ));
- });
- }
- // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
- public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
- {
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- }
- else
- {
- app.UseExceptionHandler("/Home/Error");
- // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
- app.UseHsts();
- }
- app.UseSession();
- app.UseCookiePolicy();
- app.UseHttpsRedirection();
- app.UseStaticFiles();
- string pathContent = Configuration.GetSection(UtilsController.Constant.PATH_CONTENT).Value;
- if (pathContent != null && pathContent.Length > 0)
- {
- app.UseStaticFiles(new StaticFileOptions()
- {
- FileProvider = new PhysicalFileProvider(Configuration.GetSection(UtilsController.Constant.PATH_OUTSIDE).Value),
- RequestPath = new PathString(pathContent)
- });
- }
- app.UseRouting();
- app.UseAuthorization();
- String domain = Configuration.GetSection(UtilsController.Constant.SUB_DOMAIN).Value;
- app.UsePathBase(domain == null || domain == "" ? "/" : domain);
- app.UseEndpoints(endpoints =>
- {
- endpoints.MapControllerRoute(
- name: "default",
- pattern: domain + "/{controller=Home}/{action=Index}/{id?}");
- });
- }
- }
- }
|