Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
sdk-generator-smoke / sdk-smoke (push) Has been cancelled
SDK Publish & Sign / sdk-publish (push) Has been cancelled
api-governance / spectral-lint (push) Has been cancelled
oas-ci / oas-validate (push) Has been cancelled
Mirror Thin Bundle Sign & Verify / mirror-sign (push) Has been cancelled
52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
using StellaOps.Notify.Models;
|
|
|
|
namespace StellaOps.Notifier.Worker.Channels;
|
|
|
|
/// <summary>
|
|
/// Sends rendered notifications through a specific channel type.
|
|
/// </summary>
|
|
public interface INotifyChannelAdapter
|
|
{
|
|
/// <summary>
|
|
/// The channel type this adapter handles.
|
|
/// </summary>
|
|
NotifyChannelType ChannelType { get; }
|
|
|
|
/// <summary>
|
|
/// Sends a rendered notification through the channel.
|
|
/// </summary>
|
|
/// <param name="channel">The channel configuration.</param>
|
|
/// <param name="rendered">The rendered notification content.</param>
|
|
/// <param name="cancellationToken">Cancellation token.</param>
|
|
/// <returns>The dispatch result with status and any error details.</returns>
|
|
Task<ChannelDispatchResult> SendAsync(
|
|
NotifyChannel channel,
|
|
NotifyDeliveryRendered rendered,
|
|
CancellationToken cancellationToken);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Result of a channel dispatch attempt.
|
|
/// </summary>
|
|
public sealed record ChannelDispatchResult
|
|
{
|
|
public required bool Success { get; init; }
|
|
public int? StatusCode { get; init; }
|
|
public string? Reason { get; init; }
|
|
public bool ShouldRetry { get; init; }
|
|
|
|
public static ChannelDispatchResult Ok(int? statusCode = null) => new()
|
|
{
|
|
Success = true,
|
|
StatusCode = statusCode
|
|
};
|
|
|
|
public static ChannelDispatchResult Fail(string reason, int? statusCode = null, bool shouldRetry = true) => new()
|
|
{
|
|
Success = false,
|
|
StatusCode = statusCode,
|
|
Reason = reason,
|
|
ShouldRetry = shouldRetry
|
|
};
|
|
}
|