Merge branch 'refs/heads/abp' into digital-collectibles

This commit is contained in:
chenchun
2024-11-29 14:58:27 +08:00
2 changed files with 51 additions and 49 deletions

View File

@@ -13,6 +13,7 @@ namespace Yi.Framework.Rbac.Application.Services.Monitor
{ {
private ILogger<OnlineService> _logger; private ILogger<OnlineService> _logger;
private IHubContext<OnlineHub> _hub; private IHubContext<OnlineHub> _hub;
public OnlineService(ILogger<OnlineService> logger, IHubContext<OnlineHub> hub) public OnlineService(ILogger<OnlineService> logger, IHubContext<OnlineHub> hub)
{ {
_logger = logger; _logger = logger;
@@ -26,18 +27,21 @@ namespace Yi.Framework.Rbac.Application.Services.Monitor
/// <returns></returns> /// <returns></returns>
public Task<PagedResultDto<OnlineUserModel>> GetListAsync([FromQuery] OnlineUserModel online) public Task<PagedResultDto<OnlineUserModel>> GetListAsync([FromQuery] OnlineUserModel online)
{ {
var data = OnlineHub.clientUsers; var data = OnlineHub.ClientUsersDic;
IEnumerable<OnlineUserModel> dataWhere = data.AsEnumerable(); IEnumerable<OnlineUserModel> dataWhere = data.Values.AsEnumerable();
if (!string.IsNullOrEmpty(online.Ipaddr)) if (!string.IsNullOrEmpty(online.Ipaddr))
{ {
dataWhere = dataWhere.Where((u) => u.Ipaddr!.Contains(online.Ipaddr)); dataWhere = dataWhere.Where((u) => u.Ipaddr!.Contains(online.Ipaddr));
} }
if (!string.IsNullOrEmpty(online.UserName)) if (!string.IsNullOrEmpty(online.UserName))
{ {
dataWhere = dataWhere.Where((u) => u.UserName!.Contains(online.UserName)); dataWhere = dataWhere.Where((u) => u.UserName!.Contains(online.UserName));
} }
return Task.FromResult(new PagedResultDto<OnlineUserModel>() { TotalCount = data.Count, Items = dataWhere.ToList() });
return Task.FromResult(new PagedResultDto<OnlineUserModel>()
{ TotalCount = data.Count, Items = dataWhere.ToList() });
} }
@@ -50,13 +54,14 @@ namespace Yi.Framework.Rbac.Application.Services.Monitor
[Route("online/{connnectionId}")] [Route("online/{connnectionId}")]
public async Task<bool> ForceOut(string connnectionId) public async Task<bool> ForceOut(string connnectionId)
{ {
if (OnlineHub.clientUsers.Exists(u => u.ConnnectionId == connnectionId)) if (OnlineHub.ClientUsersDic.ContainsKey(connnectionId))
{ {
//前端接受到这个事件后,触发前端自动退出 //前端接受到这个事件后,触发前端自动退出
await _hub.Clients.Client(connnectionId).SendAsync("forceOut", "你已被强制退出!"); await _hub.Clients.Client(connnectionId).SendAsync("forceOut", "你已被强制退出!");
return true; return true;
} }
return false; return false;
} }
} }
} }

View File

@@ -1,4 +1,5 @@
using Microsoft.AspNetCore.Authorization; using System.Collections.Concurrent;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.SignalR; using Microsoft.AspNetCore.SignalR;
using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging;
@@ -13,53 +14,54 @@ namespace Yi.Framework.Rbac.Application.SignalRHubs
//[Authorize] //[Authorize]
public class OnlineHub : AbpHub public class OnlineHub : AbpHub
{ {
public static readonly List<OnlineUserModel> clientUsers = new(); public static ConcurrentDictionary<string, OnlineUserModel> ClientUsersDic { get; set; } = new();
private readonly static object objLock = new object();
private HttpContext? _httpContext; private readonly HttpContext? _httpContext;
private ILogger<OnlineHub> _logger => LoggerFactory.CreateLogger<OnlineHub>(); private ILogger<OnlineHub> _logger => LoggerFactory.CreateLogger<OnlineHub>();
public OnlineHub(IHttpContextAccessor httpContextAccessor) public OnlineHub(IHttpContextAccessor httpContextAccessor)
{ {
_httpContext = httpContextAccessor?.HttpContext; _httpContext = httpContextAccessor?.HttpContext;
} }
/// <summary> /// <summary>
/// 成功连接 /// 成功连接
/// </summary> /// </summary>
/// <returns></returns> /// <returns></returns>
public override Task OnConnectedAsync() public override Task OnConnectedAsync()
{ {
lock (objLock) if (_httpContext is null)
{ {
var name = CurrentUser.UserName; return Task.CompletedTask;
var loginUser = new LoginLogAggregateRoot().GetInfoByHttpContext(_httpContext);
OnlineUserModel user = new(Context.ConnectionId)
{
Browser = loginUser?.Browser,
LoginLocation = loginUser?.LoginLocation,
Ipaddr = loginUser?.LoginIp,
LoginTime = DateTime.Now,
Os = loginUser?.Os,
UserName = name ?? "Null",
UserId = CurrentUser.Id ?? Guid.Empty
};
//已登录
if (CurrentUser.Id is not null)
{ //先移除之前的用户id一个用户只能一个
clientUsers.RemoveAll(u => u.UserId == CurrentUser.Id);
_logger.LogInformation($"{DateTime.Now}{name},{Context.ConnectionId}连接服务端success当前已连接{clientUsers.Count}个");
}
//全部移除之后,再进行添加
clientUsers.RemoveAll(u => u.ConnnectionId == Context.ConnectionId);
clientUsers.Add(user);
//当有人加入,向全部客户端发送当前总数
Clients.All.SendAsync("onlineNum", clientUsers.Count);
} }
var name = CurrentUser.UserName;
var loginUser = new LoginLogAggregateRoot().GetInfoByHttpContext(_httpContext);
OnlineUserModel user = new(Context.ConnectionId)
{
Browser = loginUser?.Browser,
LoginLocation = loginUser?.LoginLocation,
Ipaddr = loginUser?.LoginIp,
LoginTime = DateTime.Now,
Os = loginUser?.Os,
UserName = name ?? "Null",
UserId = CurrentUser.Id ?? Guid.Empty
};
//已登录
if (CurrentUser.IsAuthenticated)
{
ClientUsersDic.RemoveAll(u => u.Value.UserId == CurrentUser.Id);
_logger.LogDebug(
$"{DateTime.Now}{name},{Context.ConnectionId}连接服务端success当前已连接{ClientUsersDic.Count}个");
}
ClientUsersDic.AddOrUpdate(Context.ConnectionId, user, (_, _) => user);
//当有人加入,向全部客户端发送当前总数
Clients.All.SendAsync("onlineNum", ClientUsersDic.Count);
return base.OnConnectedAsync(); return base.OnConnectedAsync();
} }
@@ -69,22 +71,17 @@ namespace Yi.Framework.Rbac.Application.SignalRHubs
/// </summary> /// </summary>
/// <param name="exception"></param> /// <param name="exception"></param>
/// <returns></returns> /// <returns></returns>
public override Task OnDisconnectedAsync(Exception exception) public override Task OnDisconnectedAsync(Exception? exception)
{ {
lock (objLock) //已登录
if (CurrentUser.IsAuthenticated)
{ {
//已登录 ClientUsersDic.RemoveAll(u => u.Value.UserId == CurrentUser.Id);
if (CurrentUser.Id is not null) _logger.LogDebug($"用户{CurrentUser?.UserName}离开了,当前已连接{ClientUsersDic.Count}个");
{
clientUsers.RemoveAll(u => u.UserId == CurrentUser.Id);
_logger.LogInformation($"用户{CurrentUser?.UserName}离开了,当前已连接{clientUsers.Count}个");
}
clientUsers.RemoveAll(u => u.ConnnectionId == Context.ConnectionId);
Clients.All.SendAsync("onlineNum", clientUsers.Count);
} }
ClientUsersDic.Remove(Context.ConnectionId, out _);
Clients.All.SendAsync("onlineNum", ClientUsersDic.Count);
return base.OnDisconnectedAsync(exception); return base.OnDisconnectedAsync(exception);
} }
} }
} }