MCGalaxy/Commands/CmdBan.cs
2015-03-21 09:45:31 -04:00

151 lines
7.9 KiB
C#

/*
Copyright 2010 MCSharp team (Modified for use with MCZall/MCLawl/MCGalaxy)
Dual-licensed under the Educational Community License, Version 2.0 and
the GNU General Public License, Version 3 (the "Licenses"); you may
not use this file except in compliance with the Licenses. You may
obtain a copy of the Licenses at
http://www.opensource.org/licenses/ecl2.php
http://www.gnu.org/licenses/gpl-3.0.html
Unless required by applicable law or agreed to in writing,
software distributed under the Licenses are distributed on an "AS IS"
BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the Licenses for the specific language governing
permissions and limitations under the Licenses.
*/
using System;
namespace MCGalaxy.Commands {
public sealed class CmdBan : Command {
public override string name { get { return "ban"; } }
public override string shortcut { get { return ""; } }
public override string type { get { return "mod"; } }
public override bool museumUsable { get { return true; } }
public override LevelPermission defaultRank { get { return LevelPermission.Operator; } }
public CmdBan() { }
public override void Use(Player p, string message) {
try {
if (message == "") { Help(p); return; }
bool stealth = false; bool totalBan = false;
if (message[0] == '#') {
message = message.Remove(0, 1).Trim();
stealth = true;
Server.s.Log("Stealth Ban Attempted by " + p == null ? "Console" : p.name);
} else if (message[0] == '@') {
if (p == null) {
message = message.Remove(0, 1).Trim();
stealth = true;
Server.s.Log("Total Ban Attempted by Console");
} else {
totalBan = true;
message = message.Remove(0, 1).Trim();
Server.s.Log("Total Ban Attempted by " + p.name);
}
}
string reason = "-";
if (message.Split(' ').Length > 1) {
reason = message;
string newreason = reason.Remove(0, reason.Split(' ')[0].Length + 1);
int removetrim = newreason.Length + 1;
string newmessage = message.Remove(message.Length - removetrim, removetrim);
reason = newreason;
message = newmessage;
}
if (reason == "-") {
reason = "&c-";
}
reason = reason.Replace(" ", "%20");
Player who = Player.Find(message);
if (who == null) {
if (!Player.ValidName(message)) {
Player.SendMessage(p, "Invalid name \"" + message + "\".");
return;
}
Group foundGroup = Group.findPlayerGroup(message);
if ((int)foundGroup.Permission >= CommandOtherPerms.GetPerm(this)) {
Player.SendMessage(p, "You can't ban players ranked " + CommandOtherPerms.GetPerm(this) + " or higher!");
return;
}
if (foundGroup.Permission == LevelPermission.Banned) {
Player.SendMessage(p, message + " is already banned.");
return;
}
if (p != null && foundGroup.Permission >= p.group.Permission) {
Player.SendMessage(p, "You cannot ban a person ranked equal or higher than you.");
return;
}
string oldgroup = foundGroup.name.ToString();
foundGroup.playerList.Remove(message);
foundGroup.playerList.Save();
if (p != null) {
Player.GlobalMessage(message + " &f(offline)" + Server.DefaultColor + " was &8banned" + Server.DefaultColor + " by " + p.color + p.name + Server.DefaultColor + ".");
} else {
Player.GlobalMessage(message + " &f(offline)" + Server.DefaultColor + " was &8banned" + Server.DefaultColor + " by console.");
}
Group.findPerm(LevelPermission.Banned).playerList.Add(message);
Ban.Banplayer(p, message.ToLower(), reason, stealth, oldgroup);
} else {
if (!Player.ValidName(who.name)) {
Player.SendMessage(p, "Invalid name \"" + who.name + "\".");
return;
}
if ((int)who.group.Permission >= CommandOtherPerms.GetPerm(this)) {
Player.SendMessage(p, "You can't ban players ranked " + Group.findPermInt(CommandOtherPerms.GetPerm(this)).name + " or higher!");
return;
}
if (who.group.Permission == LevelPermission.Banned) {
Player.SendMessage(p, message + " is already banned.");
return;
}
if (p != null && who.group.Permission >= p.group.Permission) {
Player.SendMessage(p, "You cannot ban a person ranked equal or higher than you.");
return;
}
string oldgroup = who.group.name.ToString();
who.group.playerList.Remove(message);
who.group.playerList.Save();
if (p != null) {
if (stealth) Player.GlobalMessageOps(who.color + who.name + Server.DefaultColor + " was STEALTH &8banned" + Server.DefaultColor + " by " + p.color + p.name + Server.DefaultColor + "!");
else Player.GlobalMessage(who.color + who.name + Server.DefaultColor + " was &8banned" + Server.DefaultColor + " by " + p.color + p.name + Server.DefaultColor + "!");
} else {
if (stealth) Player.GlobalMessageOps(who.color + who.name + Server.DefaultColor + " was STEALTH &8banned" + Server.DefaultColor + " by console.");
else Player.GlobalMessage(who.color + who.name + Server.DefaultColor + " was &8banned" + Server.DefaultColor + " by console.");
}
who.group = Group.findPerm(LevelPermission.Banned);
who.color = who.group.color;
Player.GlobalDie(who, false);
Player.GlobalSpawn(who, who.pos[0], who.pos[1], who.pos[2], who.rot[0], who.rot[1], false);
Group.findPerm(LevelPermission.Banned).playerList.Add(who.name);
Ban.Banplayer(p, who.name.ToLower(), reason, stealth, oldgroup);
}
Group.findPerm(LevelPermission.Banned).playerList.Save();
if (p != null) {
Server.IRC.Say(message + " was banned by " + p.name + ".");
Server.s.Log("BANNED: " + message.ToLower() + " by " + p.name);
} else {
Server.IRC.Say(message + " was banned by console.");
Server.s.Log("BANNED: " + message.ToLower() + " by console.");
}
if (totalBan == true) {
Command.all.Find("undo").Use(p, message + " 0");
Command.all.Find("banip").Use(p, "@ " + message);
}
} catch (Exception e) { Server.ErrorLog(e); }
}
public override void Help(Player p) {
Player.SendMessage(p, "/ban <player> [reason] - Bans a player without kicking him.");
Player.SendMessage(p, "Add # before name to stealth ban.");
Player.SendMessage(p, "Add @ before name to total ban.");
}
}
}