Program.cs
5.48 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
using FreeSql;
using HHECS.DAQServer.DataFlag;
using HHECS.DAQServer.Middlewares;
using HHECS.DAQServer.Services;
using HHECS.DAQServer.Services.Background;
using Microsoft.AspNetCore.ResponseCompression;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.OpenApi.Models;
using MQTTnet.AspNetCore;
using NLog.Extensions.Logging;
using System.Text.Json.Serialization;
public class Program
{
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddCors(options =>
{
options.AddPolicy("CorsPolicy", b =>
{
b.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader();
});
});
builder.Services.AddControllers().AddJsonOptions(options =>
{
options.JsonSerializerOptions.ReferenceHandler = ReferenceHandler.IgnoreCycles;
});
builder.Services.AddRequestDecompression();
builder.Services.AddResponseCompression(options =>
{
options.Providers.Add<GzipCompressionProvider>();
options.MimeTypes = ResponseCompressionDefaults.MimeTypes.Concat(["application/json"]);
});
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddScoped<DigitalTwinService>();
_ = bool.TryParse(builder.Configuration.GetSection("IsProductionEnvironment").Value, out var isProductionEnvironment);
var iotConnectionString = builder.Configuration.GetConnectionString(isProductionEnvironment ? "IOT_Production" : "IOT_Development");
var huahenglicenceConnectionString = builder.Configuration.GetConnectionString(isProductionEnvironment ? "HuaHengLicence_Production" : "HuaHengLicence_Development");
var iotFsql = new FreeSqlBuilder()
.UseConnectionString(DataType.SqlServer, iotConnectionString)
//.UseMonitorCommand(cmd => Console.WriteLine($"Sql:{cmd.CommandText}"))//监听SQL语句
.UseAutoSyncStructure(false)//自动同步实体结构到数据库,FreeSql不会扫描程序集,只有CRUD时才会生成表。
.Build<IOTCloundFlag>();
var licenceFsql = new FreeSqlBuilder()
.UseConnectionString(DataType.MySql, huahenglicenceConnectionString)
//.UseMonitorCommand(cmd => Console.WriteLine($"Sql:{cmd.CommandText}"))//监听SQL语句
.UseAutoSyncStructure(false)//自动同步实体结构到数据库,FreeSql不会扫描程序集,只有CRUD时才会生成表。
.Build<HuaHengLicenceFlag>();
builder.Services.AddSingleton(iotFsql);
builder.Services.AddSingleton(licenceFsql);
builder.Services.AddSingleton<CommonService>();
builder.Services.AddSingleton<DataCacheService>();
builder.Services.AddSingleton<EquipmentService>();
builder.Services.AddSingleton<MqttControllerService>();
//builder.Services.AddHostedService<EquipmentDataRecordHandleBackgroundService>();
builder.Services.AddHostedService<ClientStatusUpdateBackgroundService>();
builder.Services.AddHostedService<EquipmentStatusUpdateBackgroundService>();
builder.Services.AddHostedService<RabbitMQHandleBackgroundService>();
builder.Services.AddHostedService<TrafficBackgroundService>();
builder.Services.AddDistributedMemoryCache();
//builder.Services.AddStackExchangeRedisCache(options =>
//{
// options.Configuration = builder.Configuration.GetConnectionString("Redis");
// options.InstanceName = "SampleInstance";
//});
// Setup MQTT stuff.
builder.Services.AddMqttServer();
builder.Services.AddConnections();
builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo
{
Title = $"数据接收端{(isProductionEnvironment ? string.Empty : "[测试版]")} - WebApi",
License = new OpenApiLicense
{
Name = "长沙华恒机器人系统有限公司",
Url = new Uri("http://www.huahengrobot.com")
},
Version = "v1",
});
c.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, "HHECS.DAQServer.xml"), true);
c.OrderActionsBy(o => o.RelativePath);
});
builder.Services.AddLogging(x => x.AddNLog());
var app = builder.Build();
// Configure the HTTP request pipeline.
//if (app.Environment.IsDevelopment())
//{
//}
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "HHECS.DAQServer WebApi");
c.RoutePrefix = string.Empty;
});
// 注册中间件
app.UseMiddleware<TrafficMiddleware>();
app.UseHttpsRedirection();
app.UseRequestDecompression();
app.UseResponseCompression();
app.UseAuthorization();
// Setup MQTT stuff.
app.MapMqtt("/mqtt");
app.UseMqttServer(server =>
{
var mqttController = app.Services.GetService<MqttControllerService>();
server.InterceptingPublishAsync += mqttController.InterceptingPublish;
server.ValidatingConnectionAsync += mqttController.ValidateConnection;
server.ClientConnectedAsync += mqttController.OnClientConnected;
});
app.UseCors("CorsPolicy");
app.MapControllers();
app.Run();
}
}