MQTTnet.AspNetCore.AttributeRouting
0.3.16
dotnet add package MQTTnet.AspNetCore.AttributeRouting --version 0.3.16
NuGet\Install-Package MQTTnet.AspNetCore.AttributeRouting -Version 0.3.16
<PackageReference Include="MQTTnet.AspNetCore.AttributeRouting" Version="0.3.16" />
paket add MQTTnet.AspNetCore.AttributeRouting --version 0.3.16
#r "nuget: MQTTnet.AspNetCore.AttributeRouting, 0.3.16"
// Install MQTTnet.AspNetCore.AttributeRouting as a Cake Addin
#addin nuget:?package=MQTTnet.AspNetCore.AttributeRouting&version=0.3.16
// Install MQTTnet.AspNetCore.AttributeRouting as a Cake Tool
#tool nuget:?package=MQTTnet.AspNetCore.AttributeRouting&version=0.3.16
MQTTnet AspNetCore AttributeRouting
This addon to MQTTnet provides the ability to define controllers and use attribute-based routing against message topics in a manner that is very similar to AspNet Core.
When should I use this library?
This library is a completely optional addon to MQTTnet (i.e. it is never required). You would WANT to use this if:
- Your primary use case is validating/processing the MQTT messages on your server
- Your server is not primarily sending data to clients via MQTT
- You appreciate encapsulating your message processing logic in controllers in a way similar to AspNetCore and WebAPI
You can do everything that this addon does directly by using MQTTnet delegates yourself. However, as the amount of logic you write to validate or process incoming messages grows, the ability to organize your logic into controllers start to make much more sense. This library helps with organizing that code as well as bringing together your dependency injection framework to MQTTnet.
Features
- Encapsulate your incoming message logic in controllers
- Use familiar paradigms from AspNetCore in your MQTT logic (Controllers and Actions)
- First-class support for dependency injection using existing ServiceProvider implementaiton in your AspNetCore project
- Support for sync and async/await Actions on your controllers
- Use together with any other MQTTnet options
Performance Note
This library has not been tested against a very high-load environment yet. Ensure you do your own load testing prior to use in production. All performance improvement PRs are welcome.
Supported frameworks
- .NET Standard 2.0+
- .NET Core 3.1+
Supported MQTT versions
- 5.0.0
- 3.1.1
- 3.1.0
Nuget
This library is available as a nuget package: https://www.nuget.org/packages/MQTTnet.AspNetCore.AttributeRouting/
Usage
Install this package and MQTTnet from nuget.
Modify your Startup.cs
with the following options:
public void ConfigureServices(IServiceCollection services)
{
// ... All your other configuration ...
// Identify and build routes
services.AddMqttControllers(
/*
By default, all controllers within the executing assembly are
discovered (just pass nothing here). To provide a list of assemblies
explicitly, pass an array of Assembly[] here.
*/
);
services
.AddHostedMqttServerWithServices(s =>
{
// Optionally set server options here
s.WithoutDefaultEndpoint();
// Enable Attribute routing
s.WithAttributeRouting(
/*
By default, messages published to topics that don't
match any routes are rejected. Change this to true
to allow those messages to be routed without hitting
any controller actions.
*/
allowUnmatchedRoutes: false
);
})
.AddMqttConnectionHandler()
.AddConnections();
}
Create your controllers by inheriting from MqttBaseController and adding actions to it like so:
[MqttController]
[MqttRoute("[controller]")] // Optional route prefix
public class MqttWeatherForecastController : MqttBaseController // Inherit from MqttBaseController for convenience functions
{
private readonly ILogger<MqttWeatherForecastController> _logger;
// Controllers have full support for dependency injection just like AspNetCore controllers
public MqttWeatherForecastController(ILogger<MqttWeatherForecastController> logger)
{
_logger = logger;
}
// Supports template routing with typed constraints just like AspNetCore
// Action routes compose together with the route prefix on the controller level
[MqttRoute("{zipCode:int}/temperature")]
public Task WeatherReport(int zipCode)
{
// We have access to the MqttContext
if (zipCode != 90210) { MqttContext.CloseConnection = true; }
// We have access to the raw message
var temperature = BitConverter.ToDouble(Message.Payload);
_logger.LogInformation($"It's {temperature} degrees in Hollywood");
// Example validation
if (temperature <= 0 || temperature >= 130)
{
return BadMessage();
}
return Ok();
}
}
See a full example project here
Contributions
Contributions are welcome. Please open an issue to discuss your idea prior to sending a PR.
MIT License
See https://github.com/Atlas-LiftTech/MQTTnet.AspNetCore.AttributeRouting/LICENSE.
About Atlas LiftTech
This library is sponsored by Atlas Lift Tech. Atlas Lift Tech is a safe patient handling and mobility (SPHM) solution provider, helping hospitals improve patient outcomes and improve patient mobility.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETCoreApp 3.1
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
- Microsoft.Bcl.HashCode (>= 1.1.1)
- MQTTnet (>= 3.0.16)
- MQTTnet.AspNetCore (>= 3.0.16)
-
.NETStandard 2.0
- Microsoft.AspNetCore.Http.Connections (>= 1.1.0)
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
- Microsoft.Bcl.HashCode (>= 1.1.1)
- MQTTnet (>= 3.0.16)
- MQTTnet.AspNetCore (>= 3.0.16)
-
net5.0
- Microsoft.AspNetCore.Mvc.Core (>= 2.2.5)
- Microsoft.Bcl.HashCode (>= 1.1.1)
- MQTTnet (>= 3.0.16)
- MQTTnet.AspNetCore (>= 3.0.16)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
* Added support for passing an array of assemblies to use in route discovery