continuity/Continuity.AuthServer/PacketHandlers/CharacterNameCheckHandler.cs

28 lines
1,001 B
C#
Raw Normal View History

2024-02-07 16:40:36 +01:00
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
2023-11-20 19:58:30 +01:00
using Continuity.AuthServer.DB;
2023-11-21 21:36:05 +01:00
using Microsoft.EntityFrameworkCore;
2024-04-04 16:57:42 +02:00
using RaiNote.PacketMediator;
using Wonderking.Packets.Incoming;
using Wonderking.Packets.Outgoing;
namespace Continuity.AuthServer.PacketHandlers;
public class CharacterNameCheckHandler : IPacketHandler<CharacterNameCheckPacket, AuthSession> {
private readonly WonderkingContext _wonderkingContext;
public CharacterNameCheckHandler(WonderkingContext wonderkingContext) {
_wonderkingContext = wonderkingContext;
}
2024-02-05 18:12:12 +01:00
public async Task HandleAsync(CharacterNameCheckPacket packet, AuthSession session,
CancellationToken cancellationToken) {
2024-02-05 18:12:12 +01:00
var isTaken =
await _wonderkingContext.Characters.AnyAsync(c => c.Name == packet.Name,
2024-02-07 16:40:36 +01:00
cancellationToken);
var responsePacket = new CharacterNameCheckPacketResponse { IsTaken = isTaken };
2024-02-05 18:12:12 +01:00
await session.SendAsync(responsePacket);
}
}