mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-10-31 10:37:04 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Threading.Tasks;
 | |
| using API.Extensions;
 | |
| using API.SignalR.Presence;
 | |
| using Microsoft.AspNetCore.Authorization;
 | |
| using Microsoft.AspNetCore.SignalR;
 | |
| 
 | |
| namespace API.SignalR;
 | |
| #nullable enable
 | |
| 
 | |
| /// <summary>
 | |
| /// Generic hub for sending messages to UI
 | |
| /// </summary>
 | |
| [Authorize]
 | |
| public class MessageHub : Hub
 | |
| {
 | |
|     private readonly IPresenceTracker _tracker;
 | |
| 
 | |
|     public MessageHub(IPresenceTracker tracker)
 | |
|     {
 | |
|         _tracker = tracker;
 | |
|     }
 | |
| 
 | |
|     public override async Task OnConnectedAsync()
 | |
|     {
 | |
|         var userId = Context.User!.GetUserId();
 | |
|         await _tracker.UserConnected(userId, Context.ConnectionId);
 | |
| 
 | |
|         var currentUsers = await PresenceTracker.GetOnlineUsers();
 | |
|         await Clients.All.SendAsync(MessageFactory.OnlineUsers, currentUsers);
 | |
| 
 | |
| 
 | |
|         await base.OnConnectedAsync();
 | |
|     }
 | |
| 
 | |
|     public override async Task OnDisconnectedAsync(Exception? exception)
 | |
|     {
 | |
|         await _tracker.UserDisconnected(Context.User!.GetUserId(), Context.ConnectionId);
 | |
| 
 | |
|         var currentUsers = await PresenceTracker.GetOnlineUsers();
 | |
|         await Clients.All.SendAsync(MessageFactory.OnlineUsers, currentUsers);
 | |
| 
 | |
| 
 | |
|         await base.OnDisconnectedAsync(exception);
 | |
|     }
 | |
| }
 | |
| 
 |