elsa-core/src/modules/Elsa.AzureServiceBus/Activities/SendMessage.cs

83 lines
2.8 KiB
C#
Raw Normal View History

using Azure.Messaging.ServiceBus;
using Elsa.Common.Contracts;
using Elsa.Common.Services;
using Elsa.Extensions;
2023-07-09 11:12:13 +00:00
using Elsa.Workflows.Core;
using Elsa.Workflows.Core.Attributes;
using Elsa.Workflows.Core.Models;
using JetBrains.Annotations;
namespace Elsa.AzureServiceBus.Activities;
/// <summary>
///
/// </summary>
2022-04-27 17:52:58 +00:00
[Activity("Elsa.AzureServiceBus.Send", "Azure Service Bus", "Send a message to a queue or topic")]
[PublicAPI]
public class SendMessage : CodeActivity
{
/// <summary>
/// The contents of the message to send.
/// </summary>
[Input(Description = "The contents of the message to send.")]
public Input<object> MessageBody { get; set; } = default!;
/// <summary>
/// The queue or topic to send the message to.
/// </summary>
public Input<string> QueueOrTopic { get; set; } = default!;
/// <summary>
/// The content type of the message.
/// </summary>
public Input<string>? ContentType { get; set; }
/// <summary>
/// The subject of the message.
/// </summary>
public Input<string>? Subject { get; set; }
/// <summary>
/// The correlation ID of the message.
/// </summary>
public Input<string>? CorrelationId { get; set; }
/// <summary>
/// The formatter to use when serializing the message body.
/// </summary>
public Input<Type?> FormatterType { get; set; } = default!;
/// <inheritdoc />
protected override async ValueTask ExecuteAsync(ActivityExecutionContext context)
{
var queueOrTopic = context.Get(QueueOrTopic);
var messageBody = context.Get(MessageBody);
var cancellationToken = context.CancellationToken;
var serializedMessageBody = await SerializeMessageBodyAsync(context, messageBody!, cancellationToken);
var message = new ServiceBusMessage(serializedMessageBody)
{
ContentType = context.Get(ContentType),
Subject = context.Get(Subject),
CorrelationId = context.Get(CorrelationId)
2022-04-27 17:52:58 +00:00
// TODO: Maybe expose additional members?
};
var client = context.GetRequiredService<ServiceBusClient>();
await using var sender = client.CreateSender(queueOrTopic);
await sender.SendMessageAsync(message, cancellationToken);
}
private async ValueTask<BinaryData> SerializeMessageBodyAsync(ActivityExecutionContext context, object value, CancellationToken cancellationToken)
{
if (value is string s) return BinaryData.FromString(s);
2023-03-24 19:57:27 +00:00
var formatterType = FormatterType.GetOrDefault(context) ?? typeof(JsonFormatter);
var formatter = context.GetServices<IFormatter>().First(x => x.GetType() == formatterType);
var data = await formatter.ToStringAsync(value, cancellationToken);
return BinaryData.FromString(data);
}
}