77 lines
2.3 KiB
C#
77 lines
2.3 KiB
C#
using System.Collections.Concurrent;
|
|
using System.Net.WebSockets;
|
|
using Duplicati.Server;
|
|
using Duplicati.WebserverCore.Abstractions;
|
|
using Duplicati.WebserverCore.Abstractions.Notifications;
|
|
using Duplicati.WebserverCore.Extensions;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Duplicati.WebserverCore.Notifications;
|
|
|
|
public class WebsocketAccessor : IWebsocketAccessor
|
|
{
|
|
private readonly ConcurrentBag<WebSocket> _connections = new();
|
|
private readonly JsonSerializerSettings m_jsonSettings;
|
|
private readonly IStatusService _statusService;
|
|
|
|
public WebsocketAccessor(JsonSerializerSettings jsonSettings, EventPollNotify eventPollNotify,
|
|
IStatusService statusService)
|
|
{
|
|
m_jsonSettings = jsonSettings;
|
|
_statusService = statusService;
|
|
|
|
eventPollNotify.NewEvent += async (_, _) => { await Send(_statusService.GetStatus()); };
|
|
}
|
|
|
|
public async Task AddConnection(WebSocket newConnection)
|
|
{
|
|
await SendInitialStatus(newConnection);
|
|
_connections.Add(newConnection);
|
|
ClearClosed();
|
|
}
|
|
|
|
private async Task SendInitialStatus(WebSocket connection)
|
|
=> await Send(_statusService.GetStatus(), [connection]);
|
|
|
|
private void ClearClosed()
|
|
{
|
|
var openConnections = _connections.Where(c => c.State == WebSocketState.Open).ToArray();
|
|
_connections.Clear();
|
|
foreach (var connection in openConnections)
|
|
{
|
|
if (!_connections.Contains(connection))
|
|
{
|
|
_connections.Add(connection);
|
|
}
|
|
}
|
|
}
|
|
|
|
private IEnumerable<WebSocket> Connections
|
|
{
|
|
get
|
|
{
|
|
ClearClosed();
|
|
return _connections;
|
|
}
|
|
}
|
|
|
|
private Task Send<T>(T data, IEnumerable<WebSocket> connections)
|
|
{
|
|
var json = JsonConvert.SerializeObject(data, m_jsonSettings);
|
|
var bytes = json.GetBytes();
|
|
|
|
return Task.WhenAll(
|
|
connections
|
|
.Where(c => c.State == WebSocketState.Open)
|
|
.Select(c => c.SendAsync(bytes, WebSocketMessageType.Text, true, CancellationToken.None))
|
|
);
|
|
}
|
|
|
|
public Task Send<T>(T data) => Send(data, Connections);
|
|
|
|
public Task HandleClientMessage(string message)
|
|
{
|
|
//TODO: handle client message
|
|
return Task.CompletedTask;
|
|
}
|
|
} |