108 lines
3.6 KiB
C#
108 lines
3.6 KiB
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.IO;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using FreeSql;
|
||
|
using JXCMS.CMS.Entity;
|
||
|
using JXCMS.Core;
|
||
|
using JXCMS.Core.Auth;
|
||
|
using JXCMS.Core.Db;
|
||
|
using JXCMS.Core.Themes;
|
||
|
using Microsoft.AspNetCore.Authentication.Cookies;
|
||
|
using Microsoft.AspNetCore.Builder;
|
||
|
using Microsoft.AspNetCore.Hosting;
|
||
|
using Microsoft.AspNetCore.Http;
|
||
|
using Microsoft.AspNetCore.HttpsPolicy;
|
||
|
using Microsoft.AspNetCore.Mvc.Razor;
|
||
|
using Microsoft.Extensions.Configuration;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Microsoft.Extensions.FileProviders;
|
||
|
using Microsoft.Extensions.Hosting;
|
||
|
|
||
|
namespace JXCMS.CMS
|
||
|
{
|
||
|
public class Startup
|
||
|
{
|
||
|
public Startup(IConfiguration configuration, IHostEnvironment environment)
|
||
|
{
|
||
|
Configuration = configuration;
|
||
|
Environment = environment;
|
||
|
}
|
||
|
|
||
|
public IHostEnvironment Environment { get; }
|
||
|
|
||
|
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.Configure<RazorViewEngineOptions>(options =>
|
||
|
{
|
||
|
options.AreaViewLocationFormats.Clear();
|
||
|
options.AreaViewLocationFormats.Add("/{2}/Views/{1}/{0}.cshtml");
|
||
|
options.AreaViewLocationFormats.Add("/{2}/Views/Shared/{0}.cshtml");
|
||
|
options.AreaViewLocationFormats.Add("/Views/Shared/{0}.cshtml");
|
||
|
options.ViewLocationExpanders.Add(new TemplateViewLocationExpander());
|
||
|
});
|
||
|
|
||
|
services.AddDb(Configuration, Environment.IsDevelopment());
|
||
|
|
||
|
services.AddControllersWithViews().AddRazorRuntimeCompilation();
|
||
|
|
||
|
services.AddJXAuth();
|
||
|
|
||
|
services.AddCms();
|
||
|
|
||
|
}
|
||
|
|
||
|
// 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.UseHttpsRedirection();
|
||
|
app.UseStaticFiles();
|
||
|
|
||
|
app.UseStaticFiles(new StaticFileOptions
|
||
|
{
|
||
|
FileProvider = new PhysicalFileProvider(
|
||
|
Path.Combine(Directory.GetCurrentDirectory(), "Admin")),
|
||
|
RequestPath = "/Admin"
|
||
|
});
|
||
|
|
||
|
app.UseStaticFiles(new StaticFileOptions
|
||
|
{
|
||
|
FileProvider = new PhysicalFileProvider(
|
||
|
Path.Combine(Directory.GetCurrentDirectory(), "Views")),
|
||
|
RequestPath = "/theme"
|
||
|
});
|
||
|
|
||
|
app.UseJXCMS("/Admin/Install");
|
||
|
|
||
|
app.UseRouting();
|
||
|
|
||
|
app.UseAuthorization();
|
||
|
|
||
|
app.UseEndpoints(endpoints =>
|
||
|
{
|
||
|
endpoints.MapAreaControllerRoute(
|
||
|
name: "admin", "Admin",
|
||
|
pattern: "Admin/{controller=Home}/{action=Index}/{id?}", new { action = "Index"});
|
||
|
endpoints.MapControllerRoute(
|
||
|
name: "default",
|
||
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
}
|