23 lines
838 B
C#
23 lines
838 B
C#
using SharpChat.PacketsS2C;
|
|
using System.Linq;
|
|
|
|
namespace SharpChat.Commands {
|
|
public class ChannelJoinCommand : ISockChatClientCommand {
|
|
public bool IsMatch(SockChatClientCommandContext ctx) {
|
|
return ctx.NameEquals("join");
|
|
}
|
|
|
|
public void Dispatch(SockChatClientCommandContext ctx) {
|
|
string joinChanStr = ctx.Args.FirstOrDefault() ?? string.Empty;
|
|
ChannelInfo? joinChan = ctx.Chat.Channels.Get(joinChanStr, SockChatUtility.SanitiseChannelName);
|
|
|
|
if(joinChan == null) {
|
|
ctx.Chat.SendTo(ctx.User, new ChannelNotFoundErrorS2CPacket(joinChanStr));
|
|
ctx.Chat.ForceChannel(ctx.User);
|
|
return;
|
|
}
|
|
|
|
ctx.Chat.SwitchChannel(ctx.User, joinChan, string.Join(' ', ctx.Args.Skip(1)));
|
|
}
|
|
}
|
|
}
|