mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-23 04:32:50 -04:00
87 lines
3.8 KiB
C#
87 lines
3.8 KiB
C#
/*
|
|
Copyright 2011 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;
|
|
using System.Text.RegularExpressions;
|
|
using MCGalaxy.SQL;
|
|
namespace MCGalaxy.Commands
|
|
{
|
|
public sealed class CmdSend : Command
|
|
{
|
|
public override string name { get { return "send"; } }
|
|
public override string shortcut { get { return ""; } }
|
|
public override string type { get { return "other"; } }
|
|
public override bool museumUsable { get { return true; } }
|
|
public override LevelPermission defaultRank { get { return LevelPermission.Builder; } }
|
|
public CmdSend() { }
|
|
|
|
public override void Use(Player p, string message)
|
|
{
|
|
if (message == "" || message.IndexOf(' ') == -1) { Help(p); return; }
|
|
|
|
Player who = Player.Find(message.Split(' ')[0]);
|
|
|
|
string whoTo, fromname;
|
|
if (who != null) whoTo = who.name;
|
|
else whoTo = message.Split(' ')[0];
|
|
if (p != null) fromname = p.name;
|
|
else fromname = "Console";
|
|
|
|
if (!Player.ValidName(whoTo))
|
|
{
|
|
Player.SendMessage(p, "%cIllegal name!");
|
|
return;
|
|
}
|
|
|
|
message = message.Substring(message.IndexOf(' ') + 1);
|
|
|
|
if (!Regex.IsMatch(message.ToLower(), @".*%([0-9]|[a-f]|[k-r])%([0-9]|[a-f]|[k-r])%([0-9]|[a-f]|[k-r])"))
|
|
{
|
|
if (Regex.IsMatch(message.ToLower(), @".*%([0-9]|[a-f]|[k-r])(.+?).*"))
|
|
{
|
|
Regex rg = new Regex(@"%([0-9]|[a-f]|[k-r])(.+?)");
|
|
MatchCollection mc = rg.Matches(message.ToLower());
|
|
if (mc.Count > 0)
|
|
{
|
|
Match ma = mc[0];
|
|
GroupCollection gc = ma.Groups;
|
|
message.Replace("%" + gc[1].ToString().Substring(1), "&" + gc[1].ToString().Substring(1));
|
|
}
|
|
}
|
|
}
|
|
|
|
//DB
|
|
if (message.Length > 255 && Server.useMySQL) { Player.SendMessage(p, "Message was too long. The text below has been trimmed."); Player.SendMessage(p, message.Substring(256)); message = message.Remove(256); }
|
|
//safe against SQL injections because whoTo is checked for illegal characters
|
|
Database.executeQuery("CREATE TABLE if not exists `Inbox" + whoTo + "` (PlayerFrom CHAR(20), TimeSent DATETIME, Contents VARCHAR(255));");
|
|
if (!Server.useMySQL)
|
|
Server.s.Log(message.Replace("'", "\\'"));
|
|
Database.AddParams("@From", fromname);
|
|
Database.AddParams("@Time", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"));
|
|
Database.AddParams("@Content", message);
|
|
Database.executeQuery("INSERT INTO `Inbox" + whoTo + "` (PlayerFrom, TimeSent, Contents) VALUES (@From, @Time, @Content)");
|
|
//DB
|
|
|
|
Player.SendMessage(p, "Message sent to &5" + whoTo + ".");
|
|
if (who != null) who.SendMessage("Message recieved from &5" + fromname + Server.DefaultColor + ".");
|
|
}
|
|
public override void Help(Player p)
|
|
{
|
|
Player.SendMessage(p, "/send [name] <message> - Sends <message> to [name].");
|
|
}
|
|
}
|
|
} |