新轉增mqtt publish
This commit is contained in:
parent
01ab7ff5dc
commit
39343e32c5
@ -9,6 +9,7 @@ using MQTTnet.Client;
|
|||||||
using Repository.BackendRepository.Interface;
|
using Repository.BackendRepository.Interface;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace Mqtt.Controllers
|
namespace Mqtt.Controllers
|
||||||
@ -41,7 +42,7 @@ namespace Mqtt.Controllers
|
|||||||
}
|
}
|
||||||
|
|
||||||
[HttpPost]
|
[HttpPost]
|
||||||
public async Task<IActionResult> AlarmResult()
|
public async Task<IActionResult> AlarmRefresh()
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
@ -58,5 +59,36 @@ namespace Mqtt.Controllers
|
|||||||
|
|
||||||
return new OkObjectResult(dic);
|
return new OkObjectResult(dic);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[HttpPost]
|
||||||
|
public async Task<IActionResult> Publish([FromBody] HTTPBody body)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (!body.data.ContainsKey("topic"))
|
||||||
|
{
|
||||||
|
dic.Add("ok", false);
|
||||||
|
dic.Add("msg", "請輸入標題");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!body.data.ContainsKey("message"))
|
||||||
|
{
|
||||||
|
dic.Add("ok", false);
|
||||||
|
dic.Add("msg", "請輸入内容");
|
||||||
|
}
|
||||||
|
|
||||||
|
await new MqttClientService(_logger, _configuration, _backgroundServicePostgresqlRepository, _backendRepository).PublishAsync(body.data["topic"].ToString(), body.data["message"].ToString());
|
||||||
|
dic.Add("ok", true);
|
||||||
|
dic.Add("msg", $"{body.data["topic"].ToString()}發佈成功");
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
dic.Add("ok", false);
|
||||||
|
dic.Add("msg", "發佈失敗");
|
||||||
|
_logger.LogError($"發佈失敗, Message: {e.Message}");
|
||||||
|
}
|
||||||
|
|
||||||
|
return new OkObjectResult(dic);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
99
Mqtt/Models/HTTP.cs
Normal file
99
Mqtt/Models/HTTP.cs
Normal file
@ -0,0 +1,99 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Text.Json;
|
||||||
|
using System.Text.Json.Serialization;
|
||||||
|
|
||||||
|
namespace Mqtt.Models
|
||||||
|
{
|
||||||
|
public class HTTPBody
|
||||||
|
{
|
||||||
|
[JsonConverter(typeof(DictionaryStringObjectJsonConverter))]
|
||||||
|
public Dictionary<string, object> data { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public class DictionaryStringObjectJsonConverter : JsonConverter<Dictionary<string, object>>
|
||||||
|
{
|
||||||
|
public override Dictionary<string, object> Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
|
||||||
|
{
|
||||||
|
if (reader.TokenType != JsonTokenType.StartObject)
|
||||||
|
{
|
||||||
|
throw new JsonException($"JsonTokenType was of type {reader.TokenType}, only objects are supported");
|
||||||
|
}
|
||||||
|
|
||||||
|
Dictionary<string, object> dictionary = new Dictionary<string, object>();
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
if (reader.TokenType == JsonTokenType.EndObject)
|
||||||
|
{
|
||||||
|
return dictionary;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (reader.TokenType != JsonTokenType.PropertyName)
|
||||||
|
{
|
||||||
|
throw new JsonException("JsonTokenType was not PropertyName");
|
||||||
|
}
|
||||||
|
|
||||||
|
string @string = reader.GetString();
|
||||||
|
if (string.IsNullOrWhiteSpace(@string))
|
||||||
|
{
|
||||||
|
throw new JsonException("Failed to get property name");
|
||||||
|
}
|
||||||
|
|
||||||
|
reader.Read();
|
||||||
|
dictionary.Add(@string, ExtractValue(ref reader, options));
|
||||||
|
}
|
||||||
|
|
||||||
|
return dictionary;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Write(Utf8JsonWriter writer, Dictionary<string, object> value, JsonSerializerOptions options)
|
||||||
|
{
|
||||||
|
JsonSerializer.Serialize(writer, value, options);
|
||||||
|
}
|
||||||
|
|
||||||
|
private object ExtractValue(ref Utf8JsonReader reader, JsonSerializerOptions options)
|
||||||
|
{
|
||||||
|
switch (reader.TokenType)
|
||||||
|
{
|
||||||
|
case JsonTokenType.String:
|
||||||
|
{
|
||||||
|
if (reader.TryGetDateTime(out var value2))
|
||||||
|
{
|
||||||
|
return value2;
|
||||||
|
}
|
||||||
|
|
||||||
|
return reader.GetString();
|
||||||
|
}
|
||||||
|
case JsonTokenType.False:
|
||||||
|
return false;
|
||||||
|
case JsonTokenType.True:
|
||||||
|
return true;
|
||||||
|
case JsonTokenType.Null:
|
||||||
|
return null;
|
||||||
|
case JsonTokenType.Number:
|
||||||
|
{
|
||||||
|
if (reader.TryGetInt64(out var value))
|
||||||
|
{
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return reader.GetDecimal();
|
||||||
|
}
|
||||||
|
case JsonTokenType.StartObject:
|
||||||
|
return Read(ref reader, null, options);
|
||||||
|
case JsonTokenType.StartArray:
|
||||||
|
{
|
||||||
|
List<object> list = new List<object>();
|
||||||
|
while (reader.Read() && reader.TokenType != JsonTokenType.EndArray)
|
||||||
|
{
|
||||||
|
list.Add(ExtractValue(ref reader, options));
|
||||||
|
}
|
||||||
|
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
throw new JsonException($"'{reader.TokenType}' is not supported");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -377,17 +377,18 @@ namespace Mqtt.Services
|
|||||||
|
|
||||||
public async Task PublishAsync(string topic, string payload)
|
public async Task PublishAsync(string topic, string payload)
|
||||||
{
|
{
|
||||||
if (_mqttClient.IsConnected)
|
if (_mqttClients.Count > 0 && _mqttClients.ContainsKey(topic))
|
||||||
{
|
{
|
||||||
var message = new MqttApplicationMessageBuilder()
|
var message = new MqttApplicationMessageBuilder()
|
||||||
.WithTopic(topic)
|
.WithTopic(topic)
|
||||||
.WithPayload(payload)
|
.WithPayload(payload)
|
||||||
|
.WithQualityOfServiceLevel(MQTTnet.Protocol.MqttQualityOfServiceLevel.AtLeastOnce)
|
||||||
//.WithExactlyOnceQoS()
|
//.WithExactlyOnceQoS()
|
||||||
.WithRetainFlag()
|
.WithRetainFlag(false)
|
||||||
.Build();
|
.Build();
|
||||||
|
|
||||||
await _mqttClient.PublishAsync(message);
|
await _mqttClients[topic].PublishAsync(message);
|
||||||
Console.WriteLine($"Published message to topic {topic}: {payload}");
|
_logger.LogInformation($"{topic} published message: {payload}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user