sharp-chat/SharpChat.SockChat/Commands/UserAFKCommand.cs

31 lines
971 B
C#
Raw Normal View History

using SharpChat.Events;
using System.Linq;
2022-08-30 15:00:58 +00:00
namespace SharpChat.SockChat.Commands {
public class UserAFKCommand : ISockChatClientCommand {
private const string DEFAULT = "AFK";
2022-08-30 15:00:58 +00:00
private const int MAX_LENGTH = 5;
public bool IsMatch(SockChatClientCommandContext ctx) {
return ctx.NameEquals("afk");
2022-08-30 15:00:58 +00:00
}
public void Dispatch(SockChatClientCommandContext ctx) {
2024-05-10 19:18:55 +00:00
string? statusText = ctx.Args.FirstOrDefault();
2022-08-30 15:00:58 +00:00
if(string.IsNullOrWhiteSpace(statusText))
statusText = DEFAULT;
else {
statusText = statusText.Trim();
if(statusText.Length > MAX_LENGTH)
2023-02-07 15:01:56 +00:00
statusText = statusText[..MAX_LENGTH].Trim();
2022-08-30 15:00:58 +00:00
}
ctx.Chat.Events.Dispatch(
"user:status",
ctx.User,
new UserStatusUpdateEventData(UserStatus.Away, statusText)
);
2022-08-30 15:00:58 +00:00
}
}
}