using SharpChat.S2CPackets;

namespace SharpChat.Commands {
    public class JoinChannelCommand : IChatCommand {
        public bool IsMatch(ChatCommandContext ctx) {
            return ctx.NameEquals("join");
        }

        public void Dispatch(ChatCommandContext ctx) {
            long msgId = ctx.Chat.RandomSnowflake.Next();
            string joinChanStr = ctx.Args.FirstOrDefault() ?? "Channel";
            ChatChannel? joinChan = ctx.Chat.Channels.FirstOrDefault(c => c.NameEquals(joinChanStr));

            if(joinChan is null) {
                ctx.Chat.SendTo(ctx.User, new CommandResponseS2CPacket(msgId, LCR.CHANNEL_NOT_FOUND, true, joinChanStr));
                ctx.Chat.ForceChannel(ctx.User);
                return;
            }

            ctx.Chat.SwitchChannel(ctx.User, joinChan, string.Join(' ', ctx.Args.Skip(1)));
        }
    }
}