|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- using System;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.EntityFrameworkCore.Internal;
- using Microsoft.Extensions.Configuration;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Scripting.Utils;
- using MQTTnet.Server.Configuration;
- using MQTTnet.Server.Logging;
- using MQTTnet.Server.Mqtt;
- using MQTTnet.Server.Scripting;
- using MQTTnet.Server.Scripting.DataSharing;
-
- namespace MQTTnet.Server
- {
- public class Startup
- {
- public Startup(IConfiguration configuration)
- {
- var builder = new ConfigurationBuilder()
- .AddJsonFile("appsettings.json")
- .AddEnvironmentVariables();
-
- Configuration = builder.Build();
- }
-
- public IConfigurationRoot Configuration { get; }
-
- public void Configure(
- IApplicationBuilder application,
- IHostingEnvironment environment,
- MqttServerService mqttServerService,
- PythonScriptHostService pythonScriptHostService,
- DataSharingService dataSharingService,
- SettingsModel settings)
- {
- if (environment.IsDevelopment())
- {
- application.UseDeveloperExceptionPage();
- }
- else
- {
- application.UseHsts();
- }
-
- application.UseStaticFiles();
-
- application.UseHttpsRedirection();
- application.UseMvc();
-
- ConfigureWebSocketEndpoint(application, mqttServerService, settings);
-
- dataSharingService.Configure();
- pythonScriptHostService.Configure();
-
- mqttServerService.Configure();
- }
-
- public void ConfigureServices(IServiceCollection services)
- {
- services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
-
- services.AddSingleton(ReadSettings());
-
- services.AddSingleton<PythonIOStream>();
- services.AddSingleton<PythonScriptHostService>();
- services.AddSingleton<DataSharingService>();
-
- services.AddSingleton<MqttNetLoggerWrapper>();
- services.AddSingleton<CustomMqttFactory>();
- services.AddSingleton<MqttServerService>();
- services.AddSingleton<MqttServerStorage>();
-
- services.AddSingleton<MqttClientConnectedHandler>();
- services.AddSingleton<MqttClientDisconnectedHandler>();
- services.AddSingleton<MqttClientSubscribedTopicHandler>();
- services.AddSingleton<MqttClientUnsubscribedTopicHandler>();
- services.AddSingleton<MqttConnectionValidator>();
- services.AddSingleton<MqttSubscriptionInterceptor>();
- services.AddSingleton<MqttApplicationMessageInterceptor>();
- }
-
- private SettingsModel ReadSettings()
- {
- var settings = new Configuration.SettingsModel();
- Configuration.Bind("MQTT", settings);
- return settings;
- }
-
- private static void ConfigureWebSocketEndpoint(
- IApplicationBuilder application,
- MqttServerService mqttServerService,
- SettingsModel settings)
- {
- if (settings?.WebSocketEndPoint?.Enabled != true)
- {
- return;
- }
-
- if (string.IsNullOrEmpty(settings.WebSocketEndPoint.Path))
- {
- return;
- }
-
- var webSocketOptions = new WebSocketOptions
- {
- KeepAliveInterval = TimeSpan.FromSeconds(settings.WebSocketEndPoint.KeepAliveInterval),
- ReceiveBufferSize = settings.WebSocketEndPoint.ReceiveBufferSize
- };
-
- if (settings.WebSocketEndPoint.AllowedOrigins?.Any() == true)
- {
- webSocketOptions.AllowedOrigins.AddRange(settings.WebSocketEndPoint.AllowedOrigins);
- }
-
- application.UseWebSockets(webSocketOptions);
-
- application.Use(async (context, next) =>
- {
- if (context.Request.Path == settings.WebSocketEndPoint.Path)
- {
- if (context.WebSockets.IsWebSocketRequest)
- {
- using (var webSocket = await context.WebSockets.AcceptWebSocketAsync().ConfigureAwait(false))
- {
- await mqttServerService.RunWebSocketConnectionAsync(webSocket, context).ConfigureAwait(false);
- }
- }
- else
- {
- context.Response.StatusCode = 400;
- }
- }
- else
- {
- await next().ConfigureAwait(false);
- }
- });
- }
- }
- }
|