mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 17:23:26 +08:00
259 lines
9.5 KiB
C#
259 lines
9.5 KiB
C#
|
||
using System.Linq;
|
||
using Autofac;
|
||
using CoreCms.Net.Auth;
|
||
using CoreCms.Net.Configuration;
|
||
using CoreCms.Net.Core.AutoFac;
|
||
using CoreCms.Net.Core.Config;
|
||
using CoreCms.Net.Filter;
|
||
using CoreCms.Net.Loging;
|
||
using CoreCms.Net.Mapping;
|
||
using CoreCms.Net.Middlewares;
|
||
using CoreCms.Net.Model.ViewModels.Options;
|
||
using CoreCms.Net.Swagger;
|
||
using Essensoft.Paylink.Alipay;
|
||
using Essensoft.Paylink.WeChatPay;
|
||
using Microsoft.AspNetCore.Builder;
|
||
using Microsoft.AspNetCore.Hosting;
|
||
using Microsoft.AspNetCore.HttpOverrides;
|
||
using Microsoft.AspNetCore.Mvc;
|
||
using Microsoft.AspNetCore.Mvc.Controllers;
|
||
using Microsoft.Extensions.Configuration;
|
||
using Microsoft.Extensions.DependencyInjection;
|
||
using Microsoft.Extensions.DependencyInjection.Extensions;
|
||
using Microsoft.Extensions.Hosting;
|
||
using Microsoft.Extensions.Options;
|
||
using Newtonsoft.Json;
|
||
using Newtonsoft.Json.Serialization;
|
||
using Yitter.IdGenerator;
|
||
|
||
namespace CoreCms.Net.Web.Admin
|
||
{
|
||
/// <summary>
|
||
/// 启动配置
|
||
/// </summary>
|
||
public class Startup
|
||
{
|
||
/// <summary>
|
||
/// 构造函数
|
||
/// </summary>
|
||
/// <param name="configuration"></param>
|
||
/// <param name="env"></param>
|
||
public Startup(IConfiguration configuration, IWebHostEnvironment env)
|
||
{
|
||
Configuration = configuration;
|
||
Env = env;
|
||
}
|
||
|
||
/// <summary>
|
||
/// </summary>
|
||
public IConfiguration Configuration { get; }
|
||
|
||
/// <summary>
|
||
/// </summary>
|
||
public IWebHostEnvironment Env { get; }
|
||
|
||
/// <summary>
|
||
/// This method gets called by the runtime. Use this method to add services to the container.
|
||
/// </summary>
|
||
/// <param name="services"></param>
|
||
public void ConfigureServices(IServiceCollection services)
|
||
{
|
||
//添加本地路径获取支持
|
||
services.AddSingleton(new AppSettingsHelper(Env.ContentRootPath));
|
||
services.AddSingleton(new LogLockHelper(Env.ContentRootPath));
|
||
|
||
//Memory缓存
|
||
services.AddMemoryCacheSetup();
|
||
//Redis缓存
|
||
services.AddRedisCacheSetup();
|
||
|
||
|
||
//添加数据库连接SqlSugar注入支持
|
||
services.AddSqlSugarSetup();
|
||
//配置跨域(CORS)
|
||
services.AddCorsSetup();
|
||
|
||
//添加session支持(session依赖于cache进行存储)
|
||
services.AddSession();
|
||
// AutoMapper支持
|
||
services.AddAutoMapper(typeof(AutoMapperConfiguration));
|
||
|
||
//使用 SignalR
|
||
services.AddSignalR();
|
||
|
||
// 引入Payment 依赖注入(支付宝支付/微信支付)
|
||
services.AddAlipay();
|
||
services.AddWeChatPay();
|
||
|
||
// 在 appsettings.json 中 配置选项
|
||
//注册自定义的支付配置文件,后面将取消使用Paylink,直接走接口请求自定义处理。
|
||
services.Configure<WeChatPayOptions>(Configuration.GetSection("WeChatPay"));
|
||
services.Configure<AlipayOptions>(Configuration.GetSection("Alipay"));
|
||
|
||
//注册自定义微信接口配置文件
|
||
services.Configure<WeChat.Service.Options.WeChatOptions>(Configuration.GetSection(nameof(WeChat.Service.Options.WeChatOptions)));
|
||
|
||
// 注入工厂 HTTP 客户端
|
||
services.AddHttpClient();
|
||
services.AddSingleton<WeChat.Service.HttpClients.IWeChatApiHttpClientFactory, WeChat.Service.HttpClients.WeChatApiHttpClientFactory>();
|
||
|
||
//启用客户端IP限制速率
|
||
services.AddIpPolicyRateLimitSetup(Configuration);
|
||
|
||
//Swagger接口文档注入
|
||
services.AddAdminSwaggerSetup();
|
||
|
||
//jwt授权支持注入
|
||
services.AddAuthorizationSetupForAdmin();
|
||
//上下文注入
|
||
services.AddHttpContextSetup();
|
||
|
||
//服务配置中加入AutoFac控制器替换规则。
|
||
services.Replace(ServiceDescriptor.Transient<IControllerActivator, ServiceBasedControllerActivator>());
|
||
|
||
//注册mvc,注册razor引擎视图
|
||
services.AddMvc(options =>
|
||
{
|
||
//实体验证
|
||
options.Filters.Add<RequiredErrorForAdmin>();
|
||
//异常处理
|
||
options.Filters.Add<GlobalExceptionsFilterForAdmin>();
|
||
//Swagger剔除不需要加入api展示的列表
|
||
options.Conventions.Add(new ApiExplorerIgnores());
|
||
|
||
options.EnableEndpointRouting = false;
|
||
})
|
||
.AddNewtonsoftJson(p =>
|
||
{
|
||
//数据格式首字母小写 不使用驼峰
|
||
p.SerializerSettings.ContractResolver = new CamelCasePropertyNamesContractResolver();
|
||
//不使用驼峰样式的key
|
||
//p.SerializerSettings.ContractResolver = new DefaultContractResolver();
|
||
//忽略循环引用
|
||
p.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
|
||
//设置时间格式
|
||
p.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
|
||
});
|
||
|
||
|
||
// 雪花漂移算法
|
||
// 创建 IdGeneratorOptions 对象,请在构造函数中输入 WorkerId:
|
||
var options = new IdGeneratorOptions(1);
|
||
// WorkerIdBitLength 默认值6,支持的 WorkerId 最大值为2^6-1,若 WorkerId 超过64,可设置更大的 WorkerIdBitLength
|
||
// options.WorkerIdBitLength = 10;
|
||
// ...... 其它参数设置参考 IdGeneratorOptions 定义,一般来说,只要再设置 WorkerIdBitLength (决定 WorkerId 的最大值)。
|
||
|
||
// 保存参数(必须的操作,否则以上设置都不能生效):
|
||
YitIdHelper.SetIdGenerator(options);
|
||
|
||
// 初始化以后,即可在任何需要生成ID的地方,调用以下方法:
|
||
//var newId = YitIdHelper.NextId();
|
||
|
||
}
|
||
|
||
/// <summary>
|
||
/// Autofac规则配置
|
||
/// </summary>
|
||
/// <param name="builder"></param>
|
||
public void ConfigureContainer(ContainerBuilder builder)
|
||
{
|
||
builder.RegisterModule(new AutofacModuleRegister());
|
||
|
||
//获取所有控制器类型并使用属性注入
|
||
var controllerBaseType = typeof(ControllerBase);
|
||
builder.RegisterAssemblyTypes(typeof(Program).Assembly)
|
||
.Where(t => controllerBaseType.IsAssignableFrom(t) && t != controllerBaseType)
|
||
.PropertiesAutowired();
|
||
}
|
||
|
||
/// <summary>
|
||
/// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
||
/// </summary>
|
||
/// <param name="app"></param>
|
||
/// <param name="env"></param>
|
||
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
|
||
{
|
||
#region 解决Ubuntu Nginx 代理不能获取IP问题
|
||
app.UseForwardedHeaders(new ForwardedHeadersOptions
|
||
{
|
||
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
|
||
});
|
||
#endregion
|
||
|
||
// 开启Ip限流
|
||
app.UseIpLimitMiddle();
|
||
// 记录请求与返回数据 (注意开启权限,不然本地无法写入)
|
||
app.UseRequestResponseLog();
|
||
// 用户访问记录(必须放到外层,不然如果遇到异常,会报错,因为不能返回流)(注意开启权限,不然本地无法写入)
|
||
app.UseRecordAccessLogsMildd(GlobalEnumVars.CoreShopSystemCategory.Admin.ToString());
|
||
// 记录ip请求 (注意开启权限,不然本地无法写入)
|
||
app.UseIpLogMildd();
|
||
// signalr
|
||
app.UseSignalRSendMildd();
|
||
|
||
|
||
app.UseSwagger().UseSwaggerUI(c =>
|
||
{
|
||
//根据版本名称倒序 遍历展示
|
||
typeof(CustomApiVersion.ApiVersions).GetEnumNames().OrderByDescending(e => e).ToList().ForEach(
|
||
version =>
|
||
{
|
||
c.SwaggerEndpoint($"/swagger/{version}/swagger.json", $"Doc {version}");
|
||
});
|
||
c.RoutePrefix = "doc";
|
||
});
|
||
|
||
//使用 Session
|
||
app.UseSession();
|
||
|
||
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();
|
||
}
|
||
|
||
// CORS跨域
|
||
app.UseCors(AppSettingsConstVars.CorsPolicyName);
|
||
// 跳转https
|
||
//app.UseHttpsRedirection();
|
||
// 使用静态文件
|
||
app.UseStaticFiles();
|
||
// 使用cookie
|
||
app.UseCookiePolicy();
|
||
// 返回错误码
|
||
app.UseStatusCodePages();
|
||
// Routing
|
||
app.UseRouting();
|
||
// 先开启认证
|
||
app.UseAuthentication();
|
||
// 然后是授权中间件
|
||
app.UseAuthorization();
|
||
app.UseEndpoints(endpoints =>
|
||
{
|
||
endpoints.MapControllerRoute(
|
||
"areas",
|
||
"{area:exists}/{controller=Default}/{action=Index}/{id?}"
|
||
);
|
||
|
||
endpoints.MapControllerRoute(
|
||
"default",
|
||
"{controller=Home}/{action=Index}/{id?}");
|
||
});
|
||
|
||
//设置默认起始页(如default.html)
|
||
//此处的路径是相对于wwwroot文件夹的相对路径
|
||
var defaultFilesOptions = new DefaultFilesOptions();
|
||
defaultFilesOptions.DefaultFileNames.Clear();
|
||
defaultFilesOptions.DefaultFileNames.Add("index.html");
|
||
app.UseDefaultFiles(defaultFilesOptions);
|
||
app.UseStaticFiles();
|
||
}
|
||
}
|
||
} |