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

@@ -2,16 +2,21 @@
using Managing.Common;
using Managing.Domain.Statistics;
using Managing.Domain.Trades;
using Managing.Domain.Users;
namespace Managing.Application.Shared;
public class MessengerService : IMessengerService
{
private readonly IDiscordService _discordService;
private readonly IWebhookService _webhookService;
private readonly IUserService _userService;
public MessengerService(IDiscordService discordService)
public MessengerService(IDiscordService discordService, IWebhookService webhookService, IUserService userService)
{
_discordService = discordService;
_webhookService = webhookService;
_userService = userService;
}
public async Task SendClosedPosition(string address, Trade oldTrade)
@@ -50,9 +55,24 @@ public class MessengerService : IMessengerService
await _discordService.SendSignal(message, exchange, ticker, direction, timeframe);
}
public async Task SendTradeMessage(string message, bool isBadBehavior = false)
public async Task SendTradeMessage(string message, bool isBadBehavior = false, User user = null)
{
await _discordService.SendTradeMessage(message, isBadBehavior);
// Always send to Discord
try
{
await _discordService.SendTradeMessage(message, isBadBehavior);
}
catch (Exception e)
{
Console.WriteLine(e);
}
// If user is provided, also send to webhook
if (user != null)
{
user = _userService.GetUser(user.Name);
await _webhookService.SendTradeNotification(user, message, isBadBehavior);
}
}
public async Task SendBestTraders(List<Trader> traders)

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
}
}
}