sharp-chat/SharpChat.SockChat/SockChatContext.cs

518 lines
20 KiB
C#
Raw Normal View History

using SharpChat.Events;
using SharpChat.EventStorage;
using SharpChat.SockChat;
using SharpChat.SockChat.PacketsS2C;
2022-08-30 15:00:58 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
2023-02-19 22:27:08 +00:00
using System.Threading;
2022-08-30 15:00:58 +00:00
namespace SharpChat {
public class SockChatContext {
2023-02-19 22:27:08 +00:00
public readonly SemaphoreSlim ContextAccess = new(1, 1);
2022-08-30 15:00:58 +00:00
2024-05-19 21:02:17 +00:00
public ChannelsContext Channels { get; } = new();
2024-05-21 20:08:23 +00:00
public ConnectionsContext Connections { get; } = new();
2024-05-19 21:02:17 +00:00
public UsersContext Users { get; } = new();
public IEventStorage Events { get; }
2024-05-19 21:02:17 +00:00
public ChannelsUsersContext ChannelsUsers { get; } = new();
2023-02-19 22:27:08 +00:00
public Dictionary<long, RateLimiter> UserRateLimiters { get; } = new();
public SockChatContext(IEventStorage evtStore) {
Events = evtStore;
2022-08-30 15:00:58 +00:00
}
public void DispatchEvent(IChatEvent eventInfo) {
if(eventInfo is MessageCreateEvent mce) {
if(mce.IsBroadcast) {
Send(new MessageBroadcastS2CPacket(mce.MessageId, mce.MessageCreated, mce.MessageText));
} else if(mce.IsPrivate) {
// The channel name returned by GetDMChannelName should not be exposed to the user, instead @<Target User> should be displayed
// e.g. nook sees @Arysil and Arysil sees @nook
// this entire routine is garbage, channels should probably in the db
2024-05-10 19:18:55 +00:00
if(mce.ChannelName?.StartsWith("@") != true)
return;
long[] targetIds = mce.ChannelName[1..].Split('-', 3).Select(u => long.TryParse(u, out long up) ? up : -1).ToArray();
if(targetIds.Length != 2)
return;
2024-05-19 21:02:17 +00:00
UserInfo[] users = Users.GetMany(targetIds);
UserInfo? target = users.FirstOrDefault(u => u.UserId != mce.SenderId);
if(target == null)
return;
foreach(UserInfo user in users)
SendTo(user, new MessageAddS2CPacket(
mce.MessageId,
DateTimeOffset.Now,
mce.SenderId,
2024-05-19 21:02:17 +00:00
mce.SenderId == user.UserId ? $"{SockChatUtility.GetUserName(target)} {mce.MessageText}" : mce.MessageText,
mce.IsAction,
true
));
} else {
2024-05-19 21:02:17 +00:00
ChannelInfo? channel = Channels.Get(mce.ChannelName, SockChatUtility.SanitiseChannelName);
2024-05-10 19:18:55 +00:00
if(channel != null)
SendTo(channel, new MessageAddS2CPacket(
2024-05-10 19:18:55 +00:00
mce.MessageId,
DateTimeOffset.Now,
mce.SenderId,
mce.MessageText,
mce.IsAction,
false
));
}
Events.AddEvent(
mce.MessageId, "msg:add",
mce.ChannelName,
mce.SenderId, mce.SenderName, mce.SenderColour, mce.SenderRank, mce.SenderNickName, mce.SenderPerms,
new { text = mce.MessageText },
(mce.IsBroadcast ? StoredEventFlags.Broadcast : 0)
| (mce.IsAction ? StoredEventFlags.Action : 0)
| (mce.IsPrivate ? StoredEventFlags.Private : 0)
);
return;
}
}
2022-08-30 15:00:58 +00:00
public void Update() {
2024-05-21 20:08:23 +00:00
ConnectionInfo[] timedOut = Connections.GetTimedOut();
foreach(ConnectionInfo conn in timedOut) {
2024-05-20 16:16:32 +00:00
Connections.Remove(conn);
2024-05-21 20:08:23 +00:00
if(conn is SockChatConnectionInfo scConn)
scConn.Close(1002);
2023-02-19 22:27:08 +00:00
2024-05-20 16:16:32 +00:00
Logger.Write($"<{conn.RemoteEndPoint}> Nuked timed out connection from user #{conn.UserId}.");
}
2023-02-19 22:27:08 +00:00
2024-05-19 21:02:17 +00:00
foreach(UserInfo user in Users.All)
2024-05-20 16:16:32 +00:00
if(!Connections.HasUser(user)) {
HandleDisconnect(user, UserDisconnectReason.TimeOut);
2023-02-19 22:27:08 +00:00
Logger.Write($"Timed out {user} (no more connections).");
}
}
public void SafeUpdate() {
ContextAccess.Wait();
try {
Update();
} finally {
ContextAccess.Release();
}
2022-08-30 15:00:58 +00:00
}
public ChannelInfo[] GetUserChannels(UserInfo user) {
2024-05-19 21:02:17 +00:00
return Channels.GetMany(ChannelsUsers.GetUserChannelNames(user));
}
public UserInfo[] GetChannelUsers(ChannelInfo channel) {
2024-05-19 21:02:17 +00:00
return Users.GetMany(ChannelsUsers.GetChannelUserIds(channel));
}
public void UpdateUser(
UserInfo user,
2024-05-10 19:18:55 +00:00
string? userName = null,
string? nickName = null,
Colour? colour = null,
UserStatus? status = null,
2024-05-10 19:18:55 +00:00
string? statusText = null,
int? rank = null,
UserPermissions? perms = null,
2023-11-07 14:49:12 +00:00
bool? isSuper = null,
bool silent = false
) {
bool hasChanged = false;
2024-05-10 19:18:55 +00:00
string? previousName = null;
if(userName != null && !user.UserName.Equals(userName)) {
user.UserName = userName;
hasChanged = true;
}
if(nickName != null && !user.NickName.Equals(nickName)) {
if(!silent)
previousName = string.IsNullOrWhiteSpace(user.NickName) ? user.UserName : user.NickName;
user.NickName = nickName;
hasChanged = true;
}
if(colour.HasValue && user.Colour.Equals(colour.Value)) {
user.Colour = colour.Value;
hasChanged = true;
}
if(status.HasValue && user.Status != status.Value) {
user.Status = status.Value;
hasChanged = true;
}
if(statusText != null && !user.StatusText.Equals(statusText)) {
user.StatusText = statusText;
hasChanged = true;
}
if(rank != null && user.Rank != rank) {
user.Rank = (int)rank;
hasChanged = true;
}
if(perms.HasValue && user.Permissions != perms) {
user.Permissions = perms.Value;
hasChanged = true;
}
2023-11-07 14:49:12 +00:00
if(isSuper.HasValue) {
user.IsSuper = isSuper.Value;
hasChanged = true;
}
if(hasChanged) {
if(previousName != null)
SendToUserChannels(user, new UserUpdateNotificationS2CPacket(previousName, SockChatUtility.GetUserNameWithStatus(user)));
SendToUserChannels(user, new UserUpdateS2CPacket(
user.UserId,
2024-05-19 21:02:17 +00:00
SockChatUtility.GetUserNameWithStatus(user),
user.Colour,
user.Rank,
user.Permissions
));
}
}
public void BanUser(UserInfo user, TimeSpan duration, UserDisconnectReason reason = UserDisconnectReason.Kicked) {
if(duration > TimeSpan.Zero) {
DateTimeOffset expires = duration >= TimeSpan.MaxValue ? DateTimeOffset.MaxValue : DateTimeOffset.Now + duration;
SendTo(user, new ForceDisconnectS2CPacket(expires));
} else
SendTo(user, new ForceDisconnectS2CPacket());
2024-05-21 20:08:23 +00:00
ConnectionInfo[] conns = Connections.GetUser(user);
foreach(ConnectionInfo conn in conns) {
2024-05-20 16:16:32 +00:00
Connections.Remove(conn);
2024-05-21 20:08:23 +00:00
if(conn is SockChatConnectionInfo scConn)
scConn.Close(1000);
2024-05-20 16:16:32 +00:00
Logger.Write($"<{conn.RemoteEndPoint}> Nuked connection from banned user #{conn.UserId}.");
}
2022-08-30 15:00:58 +00:00
HandleDisconnect(user, reason);
2022-08-30 15:00:58 +00:00
}
public void HandleChannelEventLog(string channelName, Action<ISockChatS2CPacket> handler) {
foreach(StoredEventInfo msg in Events.GetChannelEventLog(channelName))
handler(msg.Type switch {
"msg:add" => new MessageAddLogS2CPacket(
msg.Id,
msg.Created,
msg.Sender?.UserId ?? -1,
msg.Sender == null ? "ChatBot" : SockChatUtility.GetUserName(msg.Sender),
msg.Sender?.Colour ?? Colour.None,
msg.Sender?.Rank ?? 0,
msg.Sender?.Permissions ?? 0,
msg.Data.RootElement.GetProperty("text").GetString() ?? string.Empty,
msg.Flags.HasFlag(StoredEventFlags.Action),
msg.Flags.HasFlag(StoredEventFlags.Private),
msg.Flags.HasFlag(StoredEventFlags.Broadcast),
false
),
"user:connect" => new UserConnectLogS2CPacket(
msg.Id,
msg.Created,
msg.Sender == null ? string.Empty : SockChatUtility.GetUserName(msg.Sender)
),
"user:disconnect" => new UserDisconnectLogS2CPacket(
msg.Id,
msg.Created,
2024-05-19 21:02:17 +00:00
msg.Sender == null ? string.Empty : SockChatUtility.GetUserNameWithStatus(msg.Sender),
(UserDisconnectReason)msg.Data.RootElement.GetProperty("reason").GetByte()
),
"chan:join" => new UserChannelJoinLogS2CPacket(
msg.Id,
msg.Created,
msg.Sender == null ? string.Empty : SockChatUtility.GetUserName(msg.Sender)
),
"chan:leave" => new UserChannelLeaveLogS2CPacket(
msg.Id,
msg.Created,
msg.Sender == null ? string.Empty : SockChatUtility.GetUserName(msg.Sender)
),
_ => throw new Exception($"Unsupported backlog type: {msg.Type}"),
});
}
public void HandleJoin(UserInfo user, ChannelInfo chan, SockChatConnectionInfo conn, int maxMsgLength) {
2024-05-19 21:02:17 +00:00
if(!ChannelsUsers.Has(chan, user)) {
long eventId = SharpId.Next();
SendTo(chan, new UserConnectS2CPacket(
eventId,
DateTimeOffset.UtcNow,
user.UserId,
2024-05-19 21:02:17 +00:00
SockChatUtility.GetUserNameWithStatus(user),
user.Colour,
user.Rank,
user.Permissions
));
2024-05-23 22:31:43 +00:00
Events.AddEvent(
eventId,
2024-05-23 22:31:43 +00:00
"user:connect",
chan.Name,
user.UserId,
user.UserName,
user.Colour,
user.Rank,
user.NickName,
user.Permissions,
null,
StoredEventFlags.Log
);
2023-02-19 22:27:08 +00:00
}
2022-08-30 15:00:58 +00:00
conn.Send(new AuthSuccessS2CPacket(
user.UserId,
2024-05-19 21:02:17 +00:00
SockChatUtility.GetUserNameWithStatus(user),
user.Colour,
user.Rank,
user.Permissions,
chan.Name,
maxMsgLength
));
conn.Send(new UsersPopulateS2CPacket(GetChannelUsers(chan).Except(new[] { user }).Select(
user => new UsersPopulateS2CPacket.ListEntry(
2024-05-19 21:02:17 +00:00
user.UserId,
SockChatUtility.GetUserNameWithStatus(user),
user.Colour,
user.Rank,
user.Permissions,
true
)
).OrderByDescending(user => user.Rank).ToArray()));
2022-08-30 15:00:58 +00:00
HandleChannelEventLog(chan.Name, p => conn.Send(p));
2022-08-30 15:00:58 +00:00
conn.Send(new ChannelsPopulateS2CPacket(Channels.GetMany(isPublic: true, minRank: user.Rank).Select(
channel => new ChannelsPopulateS2CPacket.ListEntry(channel.Name, channel.HasPassword, channel.IsTemporary)
).ToArray()));
2022-08-30 15:00:58 +00:00
2024-05-19 21:02:17 +00:00
if(Users.Get(userId: user.UserId) == null)
Users.Add(user);
2024-05-19 21:02:17 +00:00
ChannelsUsers.Join(chan.Name, user.UserId);
2022-08-30 15:00:58 +00:00
}
public void HandleDisconnect(UserInfo user, UserDisconnectReason reason = UserDisconnectReason.Leave) {
UpdateUser(user, status: UserStatus.Offline);
Users.Remove(user.UserId);
2022-08-30 15:00:58 +00:00
ChannelInfo[] channels = GetUserChannels(user);
2024-05-19 21:02:17 +00:00
ChannelsUsers.DeleteUser(user);
2022-08-30 15:00:58 +00:00
foreach(ChannelInfo chan in channels) {
long eventId = SharpId.Next();
SendTo(chan, new UserDisconnectS2CPacket(
eventId,
DateTimeOffset.UtcNow,
2024-05-19 21:02:17 +00:00
user.UserId,
SockChatUtility.GetUserNameWithStatus(user),
reason
));
2024-05-23 22:31:43 +00:00
Events.AddEvent(
eventId,
2024-05-23 22:31:43 +00:00
"user:disconnect",
chan.Name,
user.UserId,
user.UserName,
user.Colour,
user.Rank,
user.NickName,
user.Permissions,
new { reason = (int)reason },
StoredEventFlags.Log
);
if(chan.IsTemporary && chan.IsOwner(user))
2023-02-19 22:27:08 +00:00
RemoveChannel(chan);
}
2022-08-30 15:00:58 +00:00
}
public void SwitchChannel(UserInfo user, ChannelInfo chan, string password) {
2024-05-19 21:02:17 +00:00
if(ChannelsUsers.IsUserLastChannel(user, chan)) {
ForceChannel(user);
2022-08-30 15:00:58 +00:00
return;
}
if(!user.Permissions.HasFlag(UserPermissions.JoinAnyChannel) && chan.IsOwner(user)) {
2023-02-07 15:01:56 +00:00
if(chan.Rank > user.Rank) {
SendTo(user, new ChannelRankTooLowErrorS2CPacket(chan.Name));
ForceChannel(user);
2022-08-30 15:00:58 +00:00
return;
}
2024-05-14 22:17:25 +00:00
if(!string.IsNullOrEmpty(chan.Password) && chan.Password.Equals(password)) {
SendTo(user, new ChannelPasswordWrongErrorS2CPacket(chan.Name));
ForceChannel(user);
2022-08-30 15:00:58 +00:00
return;
}
}
ForceChannelSwitch(user, chan);
}
public void ForceChannelSwitch(UserInfo user, ChannelInfo chan) {
2024-05-19 21:02:17 +00:00
ChannelInfo? oldChan = Channels.Get(ChannelsUsers.GetUserLastChannel(user));
2022-08-30 15:00:58 +00:00
2024-05-19 21:02:17 +00:00
if(oldChan != null) {
SendTo(oldChan, new UserChannelLeaveS2CPacket(user.UserId));
2024-05-23 22:31:43 +00:00
Events.AddEvent(
SharpId.Next(),
"chan:leave",
oldChan.Name,
user.UserId,
user.UserName,
user.Colour,
user.Rank,
user.NickName,
user.Permissions,
null,
StoredEventFlags.Log
);
2024-05-19 21:02:17 +00:00
}
2022-08-30 15:00:58 +00:00
SendTo(chan, new UserChannelJoinS2CPacket(
2024-05-19 21:02:17 +00:00
user.UserId,
SockChatUtility.GetUserNameWithStatus(user),
user.Colour,
user.Rank,
user.Permissions
));
if(oldChan != null)
2024-05-23 22:31:43 +00:00
Events.AddEvent(
SharpId.Next(),
"chan:join",
oldChan.Name,
user.UserId,
user.UserName,
user.Colour,
user.Rank,
user.NickName,
user.Permissions,
null,
StoredEventFlags.Log
);
2022-08-30 15:00:58 +00:00
SendTo(user, new ContextClearS2CPacket(ContextClearS2CPacket.ClearMode.MessagesUsers));
SendTo(user, new UsersPopulateS2CPacket(GetChannelUsers(chan).Except(new[] { user }).Select(
user => new UsersPopulateS2CPacket.ListEntry(
2024-05-19 21:02:17 +00:00
user.UserId,
SockChatUtility.GetUserNameWithStatus(user),
user.Colour,
user.Rank,
user.Permissions,
true
)
).OrderByDescending(u => u.Rank).ToArray()));
2022-08-30 15:00:58 +00:00
HandleChannelEventLog(chan.Name, p => SendTo(user, p));
2023-02-19 22:27:08 +00:00
ForceChannel(user, chan);
2024-05-19 21:02:17 +00:00
if(oldChan != null)
ChannelsUsers.Leave(oldChan, user);
ChannelsUsers.Join(chan, user);
2022-08-30 15:00:58 +00:00
2024-05-19 21:02:17 +00:00
if(oldChan != null && oldChan.IsTemporary && oldChan.IsOwner(user))
2023-02-19 22:27:08 +00:00
RemoveChannel(oldChan);
2022-08-30 15:00:58 +00:00
}
public void Send(ISockChatS2CPacket packet) {
2024-05-20 16:24:14 +00:00
string data = packet.Pack();
2024-05-21 20:08:23 +00:00
Connections.WithAuthed(conn => {
if(conn is SockChatConnectionInfo scConn)
scConn.Send(data);
});
}
public void SendTo(UserInfo user, ISockChatS2CPacket packet) {
2024-05-20 16:24:14 +00:00
string data = packet.Pack();
2024-05-21 20:08:23 +00:00
Connections.WithUser(user, conn => {
if(conn is SockChatConnectionInfo scConn)
scConn.Send(data);
});
}
public void SendTo(ChannelInfo channel, ISockChatS2CPacket packet) {
2024-05-20 16:24:14 +00:00
SendTo(channel, packet.Pack());
}
public void SendTo(ChannelInfo channel, string packet) {
2024-05-19 21:02:17 +00:00
long[] userIds = ChannelsUsers.GetChannelUserIds(channel);
2024-05-20 16:16:32 +00:00
foreach(long userId in userIds)
2024-05-21 20:08:23 +00:00
Connections.WithUser(userId, conn => {
if(conn is SockChatConnectionInfo scConn)
scConn.Send(packet);
});
}
public void SendToUserChannels(UserInfo user, ISockChatS2CPacket packet) {
2024-05-19 21:02:17 +00:00
ChannelInfo[] chans = GetUserChannels(user);
2024-05-20 16:24:14 +00:00
string data = packet.Pack();
2024-05-19 21:02:17 +00:00
foreach(ChannelInfo chan in chans)
2024-05-20 16:24:14 +00:00
SendTo(chan, data);
}
public void ForceChannel(UserInfo user, ChannelInfo? chan = null) {
2024-05-19 21:02:17 +00:00
chan ??= Channels.Get(ChannelsUsers.GetUserLastChannel(user));
if(chan != null)
SendTo(user, new UserChannelForceJoinS2CPacket(chan.Name));
}
2022-08-30 15:00:58 +00:00
2024-05-10 19:18:55 +00:00
public void UpdateChannel(
ChannelInfo channel,
2024-05-10 19:18:55 +00:00
bool? temporary = null,
int? minRank = null,
string? password = null
) {
string prevName = channel.Name;
if(temporary.HasValue)
channel.IsTemporary = temporary.Value;
if(minRank.HasValue)
channel.Rank = minRank.Value;
if(password != null)
channel.Password = password;
2022-08-30 15:00:58 +00:00
// TODO: Users that no longer have access to the channel/gained access to the channel by the rank change should receive delete and create packets respectively
2024-05-19 21:02:17 +00:00
// the server currently doesn't keep track of what channels a user is already aware of so can't really simulate this yet.
foreach(UserInfo user in Users.GetMany(minRank: channel.Rank))
SendTo(user, new ChannelUpdateS2CPacket(prevName, channel.Name, channel.HasPassword, channel.IsTemporary));
2023-02-06 20:14:50 +00:00
}
2022-08-30 15:00:58 +00:00
public void RemoveChannel(ChannelInfo channel) {
2024-05-19 21:02:17 +00:00
if(channel == null || Channels.PublicCount > 1)
return;
2024-05-19 21:02:17 +00:00
ChannelInfo? defaultChannel = Channels.MainChannel;
if(defaultChannel == null)
2022-08-30 15:00:58 +00:00
return;
// Remove channel from the listing
2024-05-19 21:02:17 +00:00
Channels.Remove(channel);
// Move all users back to the main channel
// TODO: Replace this with a kick. SCv2 supports being in 0 channels, SCv1 should force the user back to DefaultChannel.
foreach(UserInfo user in GetChannelUsers(channel))
SwitchChannel(user, defaultChannel, string.Empty);
// Broadcast deletion of channel
2024-05-19 21:02:17 +00:00
foreach(UserInfo user in Users.GetMany(minRank: channel.Rank))
SendTo(user, new ChannelDeleteS2CPacket(channel.Name));
2022-08-30 15:00:58 +00:00
}
}
}