25 lines
938 B
C#
25 lines
938 B
C#
using SharpChat.PacketsS2C;
|
|
|
|
namespace SharpChat.Commands {
|
|
public class ChannelPasswordCommand : ISockChatClientCommand {
|
|
public bool IsMatch(SockChatClientCommandContext ctx) {
|
|
return ctx.NameEquals("pwd")
|
|
|| ctx.NameEquals("password");
|
|
}
|
|
|
|
public void Dispatch(SockChatClientCommandContext ctx) {
|
|
if(!ctx.User.Permissions.HasFlag(UserPermissions.SetChannelPassword) || !ctx.Channel.IsOwner(ctx.User)) {
|
|
ctx.Chat.SendTo(ctx.User, new CommandNotAllowedErrorS2CPacket(ctx.Name));
|
|
return;
|
|
}
|
|
|
|
string chanPass = string.Join(' ', ctx.Args).Trim();
|
|
|
|
if(string.IsNullOrWhiteSpace(chanPass))
|
|
chanPass = string.Empty;
|
|
|
|
ctx.Chat.UpdateChannel(ctx.Channel, password: chanPass);
|
|
ctx.Chat.SendTo(ctx.User, new ChannelPasswordChangedResponseS2CPacket());
|
|
}
|
|
}
|
|
}
|