mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-31 04:04:19 -04:00
* Replaced profile links to anchors so we can open in new tab if we like * Refactored how update checking works. We now explicitly check and send back on the same API. We have a weekly job that will push an update to the user. * Implemented a changelog tab * Ported over a GA fix for using ' in PR bodies. * Don't check cert for Github
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using API.Extensions;
|
|
using API.SignalR.Presence;
|
|
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace API.SignalR
|
|
{
|
|
/// <summary>
|
|
/// Keeps track of who is logged into the app
|
|
/// </summary>
|
|
public class PresenceHub : Hub
|
|
{
|
|
private readonly IPresenceTracker _tracker;
|
|
|
|
public PresenceHub(IPresenceTracker tracker)
|
|
{
|
|
_tracker = tracker;
|
|
}
|
|
|
|
public override async Task OnConnectedAsync()
|
|
{
|
|
await _tracker.UserConnected(Context.User.GetUsername(), Context.ConnectionId);
|
|
|
|
var currentUsers = await PresenceTracker.GetOnlineUsers();
|
|
await Clients.All.SendAsync("GetOnlineUsers", currentUsers);
|
|
|
|
|
|
}
|
|
|
|
public override async Task OnDisconnectedAsync(Exception exception)
|
|
{
|
|
await _tracker.UserDisconnected(Context.User.GetUsername(), Context.ConnectionId);
|
|
|
|
var currentUsers = await PresenceTracker.GetOnlineUsers();
|
|
await Clients.All.SendAsync("GetOnlineUsers", currentUsers);
|
|
|
|
await base.OnDisconnectedAsync(exception);
|
|
}
|
|
}
|
|
}
|