Startup.cs
12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
using NCC.Common.Cache;
using NCC.Common.Core.Filter;
using NCC.Data.SqlSugar.Extensions;
using NCC.JsonSerialization;
using NCC.Message.Extensions;
using NCC.TaskScheduler.Interfaces.TaskScheduler;
using NCC.UnifyResult;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.HttpOverrides;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using OnceMi.AspNetCore.OSS;
using Senparc.CO2NET;
using Senparc.CO2NET.RegisterServices;
using Senparc.Weixin;
using Senparc.Weixin.Entities;
using Senparc.Weixin.RegisterServices;
using Serilog;
using SqlSugar;
using SqlSugar.IOC;
using System;
using System.Collections.Generic;
using Yitter.IdGenerator;
using NCC.Common.Finder;
using Antis.Pay.Core.Interface;
using Antis.Pay.Core;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Http.Features;
using NCC.Extend.Interfaces.MqttPublisher;
using NCC.Extend;
using Microsoft.AspNetCore.StaticFiles;
using Microsoft.AspNetCore.Server.Kestrel.Core;
namespace NCC.API.Core
{
/// <summary>
///
/// </summary>
[AppStartup(9)]
public class Startup : AppStartup
{
/// <summary>
///
/// </summary>
/// <param name="services"></param>
public void ConfigureServices(IServiceCollection services)
{
SqlSugarConfigure(services);
services.AddJwt<JwtHandler>(enableGlobalAuthorize: true);
//services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
services.AddCorsAccessor();
services.AddRemoteRequest();
services.AddConfigurableOptions<CacheOptions>();
//使用微信支付实现
services.AddScoped<IWePay, WePay>();
services.AddControllersWithViews()
.AddMvcFilter<RequestActionFilter>()
.AddInjectWithUnifyResult<RESTfulResultProvider>()
//.AddJsonOptions(options =>
//{
// //options.JsonSerializerOptions.Converters.AddDateFormatString("yyyy-MM-dd HH:mm:ss");
// //格式化日期时间格式
// options.JsonSerializerOptions.Converters.Add(new DateTimeJsonConverter());
//});
.AddNewtonsoftJson(options =>
{
//options.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
//默认命名规则
options.SerializerSettings.ContractResolver = new DefaultContractResolver();
//设置时区为 UTC
options.SerializerSettings.DateTimeZoneHandling = DateTimeZoneHandling.Utc;
//格式化json输出的日期格式
options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
//格式化json输出的日期格式为时间戳
options.SerializerSettings.Converters.Add(new NewtonsoftDateTimeJsonConverter());
//空值处理
//options.SerializerSettings.NullValueHandling = NullValueHandling.Ignore;
});
services.AddViewEngine();
#region minio
services.AddOSSService(option =>
{
option.Provider = OSSProvider.Minio;
option.Endpoint = "192.168.0.60:9000";
option.AccessKey = "minioadmin";
option.SecretKey = "minioadmin";
option.IsEnableHttps = false;
option.IsEnableCache = true;
});
#endregion
#region 微信
services.AddSenparcGlobalServices(App.Configuration)//Senparc.CO2NET 全局注册
.AddSenparcWeixinServices(App.Configuration);//Senparc.Weixin 注册(如果使用Senparc.Weixin SDK则添加)
services.AddSession();
services.AddMemoryCache();//使用本地缓存必须添加
services.AddSenparcWeixinServices(App.Configuration);
#endregion
#region 文件上传设置
services.Configure<FormOptions>(options =>
{
options.ValueLengthLimit = int.MaxValue;
options.MultipartBodyLengthLimit = int.MaxValue;
options.MemoryBufferThreshold = int.MaxValue;
//每个多部分正文的长度限制 默认值约为128MB
//options.MultipartBodyLengthLimit = 1073741824; //此处限制最大1G
});
services.Configure<IISServerOptions>(options =>
{
options.MaxRequestBodySize = 1073741824;
});
services.Configure<KestrelServerOptions>(options =>
{
options.Limits.MaxRequestBodySize = 1073741824; // 1GB
});
#endregion
#region 微信
services.AddSenparcGlobalServices(App.Configuration)//Senparc.CO2NET 全局注册
.AddSenparcWeixinServices(App.Configuration);//Senparc.Weixin 注册(如果使用Senparc.Weixin SDK则添加)
services.AddSession();
services.AddMemoryCache();//使用本地缓存必须添加
services.AddSenparcWeixinServices(App.Configuration);
#endregion
// 添加微信支付依赖注入
services.AddWeChatPay();
services.AddEventBridge();
//依赖注入mqtt服务
services.AddSingleton<IMqttPublisherService, MqttPublisherService>();
}
/// <summary>
///
/// </summary>
/// <param name="app"></param>
/// <param name="env"></param>
/// <param name="senparcSetting"></param>
/// <param name="senparcWeixinSetting"></param>
public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IOptions<SenparcSetting> senparcSetting, IOptions<SenparcWeixinSetting> senparcWeixinSetting)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
// NGINX 反向代理获取真实IP
app.UseForwardedHeaders(new ForwardedHeadersOptions
{
ForwardedHeaders = ForwardedHeaders.XForwardedFor | ForwardedHeaders.XForwardedProto
});
// 添加状态码拦截中间件
app.UseUnifyResultStatusCodes();
app.UseHttpsRedirection(); // 强制https
string DefaultStatic = "index.html";
if (env.IsDevelopment())
{
DefaultStatic = "default.html";
}
#region 配置默认访问的静态地址
DefaultFilesOptions options = new DefaultFilesOptions();
options.DefaultFileNames.Clear();
options.DefaultFileNames.Add(DefaultStatic);
app.UseDefaultFiles(options);
app.UseStaticFiles(new StaticFileOptions
{
ContentTypeProvider = new FileExtensionContentTypeProvider
{
Mappings =
{
[".apk"] = "application/vnd.android.package-archive",
[".jpg"] = "image/jpeg",
[".png"] = "image/png",
[".mp4"] = "video/mp4"
}
}
});
#endregion
// Serilog请求日志中间件---必须在 UseStaticFiles 和 UseRouting 之间
app.UseSerilogRequestLogging();
app.UseWebSockets(new WebSocketOptions()
{
KeepAliveInterval = TimeSpan.FromSeconds(20),
ReceiveBufferSize = 4 * 1024
});
app.UseMiddleware<WebSocketHandlerMiddleware>();
app.UseRouting();
app.UseCorsAccessor();
app.UseAuthentication();
app.UseAuthorization();
app.UseInject(string.Empty);
app.UseEndpoints(endpoints =>
{
endpoints.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
});
// App.GetService<ITimeTaskService>().StartTimerJob();
// 设置雪花id的workerId,确保每个实例workerId都应不同
var workerId = ushort.Parse(App.Configuration["SnowId:WorkerId"] ?? "1");
YitIdHelper.SetIdGenerator(new IdGeneratorOptions { WorkerId = workerId, WorkerIdBitLength = 16 });
#region 微信
IRegisterService register = RegisterService.Start(senparcSetting.Value).UseSenparcGlobal();//启动 CO2NET 全局注册,必须!
register.UseSenparcWeixin(senparcWeixinSetting.Value, senparcSetting.Value);//微信全局注册,必须!
#endregion
// 开启自启动定时任务
App.GetService<ITimeTaskService>().StartTimerJob();
// 启动 MQTT 服务
var mqttService = app.ApplicationServices.GetRequiredService<IMqttPublisherService>();
_ = mqttService.StartAsync();
}
/// <summary>
/// 配置SqlSugar
/// </summary>
/// <param name="services"></param>
private void SqlSugarConfigure(IServiceCollection services)
{
#region 配置sqlsuagr
List<ConnectionConfig> connectConfigList = new List<ConnectionConfig>();
var connectionStr = $"{App.Configuration["ConnectionStrings:DefaultConnection"]}";
var dataBase = $"{App.Configuration["ConnectionStrings:DBName"]}";
var dbType = (DbType)Enum.Parse(typeof(DbType), App.Configuration["ConnectionStrings:DBType"]);
var ConfigId = $"{App.Configuration["ConnectionStrings:ConfigId"]}";
var iocDbType = (IocDbType)Enum.Parse(typeof(IocDbType), App.Configuration["ConnectionStrings:DBType"]);
SugarIocServices.AddSqlSugar(new IocConfig()
{
ConnectionString = string.Format(connectionStr, dataBase),
DbType = iocDbType,
ConfigId = ConfigId,
IsAutoCloseConnection = true//自动释放
});
connectConfigList.Add(new ConnectionConfig
{
ConnectionString = string.Format(connectionStr, dataBase),
DbType = dbType,
IsAutoCloseConnection = true,
InitKeyType = InitKeyType.Attribute,
ConfigId = ConfigId,
ConfigureExternalServices = new ConfigureExternalServicesExtenisons()
{
EntityNameServiceType = typeof(SugarTable)//这个不管是不是自定义都要写,主要是用来获取所有实体
}
});
services.AddSqlSugar(connectConfigList.ToArray(), db =>
{
db.Aop.OnLogExecuting = (sql, pars) =>
{
if (sql.StartsWith("SELECT"))
{
Console.ForegroundColor = ConsoleColor.Green;
}
if (sql.StartsWith("UPDATE") || sql.StartsWith("INSERT"))
{
Console.ForegroundColor = ConsoleColor.White;
}
if (sql.StartsWith("DELETE"))
{
Console.ForegroundColor = ConsoleColor.Blue;
}
//在控制台输出sql语句
Console.WriteLine(SqlProfiler.ParameterFormat(sql, pars));
//App.PrintToMiniProfiler("SqlSugar", "Info", SqlProfiler.ParameterFormat(sql, pars));
};
});
#endregion
}
}
}