Add webhook

This commit is contained in:
2025-06-09 01:04:02 +07:00
parent 8836c45c9d
commit 1f2780d52a
15 changed files with 195 additions and 19 deletions

View File

@@ -0,0 +1,62 @@
using System.Net.Http.Json;
using Managing.Application.Abstractions.Services;
using Managing.Domain.Users;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
namespace Managing.Application.Shared;
public class WebhookService : IWebhookService
{
private readonly HttpClient _httpClient;
private readonly IConfiguration _configuration;
private readonly ILogger<WebhookService> _logger;
public WebhookService(HttpClient httpClient, IConfiguration configuration, ILogger<WebhookService> logger)
{
_httpClient = httpClient;
_configuration = configuration;
_logger = logger;
}
public async Task SendTradeNotification(User user, string message, bool isBadBehavior = false)
{
try
{
// Get the n8n webhook URL from configuration
var webhookUrl = _configuration["N8n:WebhookUrl"];
if (string.IsNullOrEmpty(webhookUrl))
{
_logger.LogWarning("N8n webhook URL not configured, skipping webhook notification");
return;
}
// Prepare the payload for n8n webhook
var payload = new
{
message = message,
isBadBehavior = isBadBehavior,
timestamp = DateTime.UtcNow,
type = "trade_notification",
telegramChannel = user.TelegramChannel
};
// Send the webhook notification
var response = await _httpClient.PostAsJsonAsync(webhookUrl, payload);
if (response.IsSuccessStatusCode)
{
_logger.LogInformation($"Successfully sent webhook notification for user {user.Name}");
}
else
{
_logger.LogWarning($"Failed to send webhook notification. Status: {response.StatusCode}");
}
}
catch (Exception ex)
{
_logger.LogError(ex, $"Error sending webhook notification for user {user.Name}: {ex.Message}");
// Don't throw - webhook failures shouldn't break the main flow
}
}
}