/* * MIT License * * Copyright (c) 2017 Michael VanOverbeek and ShiftOS devs * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using ShiftOS.Objects; using NetSockets; using System.IO; using Newtonsoft.Json; using System.Net; using System.Net.Sockets; using System.Security.Cryptography; using System.IO.Compression; using System.Reflection; namespace ShiftOS.Server { public class MudException : Exception { public MudException(string message) : base(message) { } } /// /// Program. /// public class Program { /// /// The admin username. /// public static string AdminUsername = "admin"; /// /// The admin password. /// public static string AdminPassword = "admin"; /// /// The server. /// public static NetObjectServer server; /// /// String event handler. /// public delegate void StringEventHandler(string str); /// /// Occurs when server started. /// public static event StringEventHandler ServerStarted; /// /// Saves the chats. /// /// The chats. public static void SaveChats() { List saved = new List(); foreach(var chat in chats) { saved.Add(new Channel { ID = chat.ID, Name = chat.Name, MaxUsers = chat.MaxUsers, Topic = chat.Topic, Users = new List() }); } File.WriteAllText("chats.json", JsonConvert.SerializeObject(saved)); } /// /// Loads the chats. /// /// The chats. public static void LoadChats() { chats = Newtonsoft.Json.JsonConvert.DeserializeObject>(File.ReadAllText("chats.json")); } /// /// The entry point of the program, where the program control starts and ends. /// /// The command-line arguments. public static void Main(string[] args) { if (!Directory.Exists("saves")) { Directory.CreateDirectory("saves"); } if(!File.Exists("chats.json")) { SaveChats(); } else { LoadChats(); } if(!Directory.Exists("scripts")) { Console.WriteLine("Creating scripts directory..."); Directory.CreateDirectory("scripts"); Console.WriteLine("NOTE: This MUD is not just gonna generate scripts for you. You're going to need to write them. YOU are DevX."); } Console.WriteLine("Starting server..."); server = new NetObjectServer(); server.OnStarted += (o, a) => { Console.WriteLine($"Server started on address {server.Address}, port {server.Port}."); ServerStarted?.Invoke(server.Address.ToString()); }; server.OnStopped += (o, a) => { Console.WriteLine("WARNING! Server stopped."); }; server.OnError += (o, a) => { Console.WriteLine("ERROR: " + a.Exception.Message); }; server.OnClientAccepted += (o, a) => { Console.WriteLine("Client connected."); server.DispatchTo(a.Guid, new NetObject("welcome", new ServerMessage { Name = "Welcome", Contents = a.Guid.ToString(), GUID = "Server" })); }; server.OnReceived += (o, a) => { var obj = a.Data.Object; var msg = obj as ServerMessage; if(msg != null) { Interpret(msg); } }; IPAddress defaultAddress = null; var host = Dns.GetHostEntry(Dns.GetHostName()); foreach (var ip in host.AddressList) { if (ip.AddressFamily == AddressFamily.InterNetwork) { defaultAddress = ip; } } try { server.Start(defaultAddress, 13370); } catch { Console.WriteLine("So we tried to bind the server to your IP address automatically, but your operating system or the .NET environment you are in (possibly Mono on Linux) is preventing us from doing so. We'll try to bind to the loopback IP address (127.0.0.1) and if that doesn't work, the multi-user domain software may not be compatible with this OS or .NET environment."); server.Stop(); server.Start(IPAddress.Loopback, 13370); } ClientDispatcher = new Server.MudClientDispatcher(server); server.OnStopped += (o, a) => { Console.WriteLine("Server stopping."); }; } /// /// Users the in chat. /// /// The in chat. /// Chan. /// User. public static bool UserInChat(Channel chan, Save user) { foreach(var usr in chan.Users) { if(usr.Username == user.Username) { return true; } } return false; } public static string ReadEncFile(string fPath) { return Encryption.Decrypt(File.ReadAllText(fPath)); } public static void WriteEncFile(string fPath, string contents) { File.WriteAllText(fPath, Encryption.Encrypt(contents)); } public static string Compress(string s) { var bytes = Encoding.Unicode.GetBytes(s); using (var msi = new MemoryStream(bytes)) using (var mso = new MemoryStream()) { using (var gs = new GZipStream(mso, CompressionMode.Compress)) { msi.CopyTo(gs); } return Convert.ToBase64String(mso.ToArray()); } } public static string Decompress(string s) { var bytes = Convert.FromBase64String(s); using (var msi = new MemoryStream(bytes)) using (var mso = new MemoryStream()) { using (var gs = new GZipStream(msi, CompressionMode.Decompress)) { gs.CopyTo(mso); } return Encoding.Unicode.GetString(mso.ToArray()); } } /// /// Interpret the specified msg. /// /// Message. public static void Interpret(ServerMessage msg) { Dictionary args = null; try { Console.WriteLine($@"[{DateTime.Now}] Message received from {msg.GUID}: {msg.Name}"); foreach (var asmFile in Directory.GetFiles(Environment.CurrentDirectory)) { if (asmFile.EndsWith(".exe") || asmFile.EndsWith(".dll")) { try { var asm = Assembly.LoadFile(asmFile); foreach (var type in asm.GetTypes()) { foreach (var method in type.GetMethods(BindingFlags.Public | BindingFlags.Static)) { foreach (var attrib in method.GetCustomAttributes(false)) { if (attrib is MudRequestAttribute) { if ((attrib as MudRequestAttribute).RequestName == msg.Name) { try { object contents = msg.Contents; try { contents = JsonConvert.DeserializeObject>(msg.Contents); } catch { } method?.Invoke(null, new[] { msg.GUID, contents }); } catch (MudException mEx) { ClientDispatcher.DispatchTo("Error", msg.GUID, mEx); } catch { Console.WriteLine($@"[{DateTime.Now}] {method.Name}: Missing guid and content parameters, request handler NOT RAN."); } return; } } } } } } catch (Exception ex) { Console.WriteLine($"[{DateTime.Now}] Exception while handling request {msg.Name}: {ex}"); return; } } } ClientDispatcher.DispatchTo("Error", msg.GUID, new MudRequestHandlerNotFoundException()); switch (msg.Name) { case "trm_invcmd": Console.WriteLine("Before arg check"); args = JsonConvert.DeserializeObject>(msg.Contents); if(args["guid"] != null && args["command"] != null) { Console.WriteLine("arg check finished"); string cmd = args["command"] as string; string cGuid = args["guid"] as string; Console.WriteLine("Before dispatch"); server.DispatchTo(new Guid(cGuid), new NetObject("trminvoke", new ServerMessage { Name = "trm_invokecommand", GUID = "server", Contents = cmd })); Console.WriteLine("After dispatch"); } break; case "update_shop_by_user": List shopList = new List(); if (File.Exists("shops.json")) shopList = JsonConvert.DeserializeObject>(File.ReadAllText("shops.json")); var username = args["username"] as string; var updateShop = JsonConvert.DeserializeObject(msg.Contents); for(int i = 0; i < shopList.Count; i++) { if(shopList[i].Owner == username) { shopList[i] = updateShop; } } File.WriteAllText("shops.json", JsonConvert.SerializeObject(shopList, Formatting.Indented)); server.DispatchTo(new Guid(msg.GUID), new NetObject("nametaken", new ServerMessage { Name = "shop_added", GUID = "server", })); break; case "create_shop": List shopFile = new List(); if (File.Exists("shops.json")) shopFile = JsonConvert.DeserializeObject>(File.ReadAllText("shops.json")); var newShop = JsonConvert.DeserializeObject(msg.Contents); foreach (var shop in shopFile) { if (shop.Name == newShop.Name) { server.DispatchTo(new Guid(msg.GUID), new NetObject("nametaken", new ServerMessage { Name = "shop_taken", GUID = "server", })); return; } } shopFile.Add(newShop); File.WriteAllText("shops.json", JsonConvert.SerializeObject(shopFile, Formatting.Indented)); server.DispatchTo(new Guid(msg.GUID), new NetObject("nametaken", new ServerMessage { Name = "shop_added", GUID = "server", })); break; case "user_shop_check": List allshops = new List(); if (File.Exists("shops.json")) allshops = JsonConvert.DeserializeObject>(File.ReadAllText("shops.json")); int res = 0; foreach(var shop in allshops) { if(shop.Owner == args["username"] as string) { res = 1; } } server.DispatchTo(new Guid(msg.GUID), new NetObject("hahhhhhhh", new ServerMessage { Name = "user_shop_check_result", GUID = "server", Contents = res.ToString() })); break; case "shop_getitems": var shopName = args["shopname"] as string; Shop tempShop = null; foreach(var item in JsonConvert.DeserializeObject>(File.ReadAllText("shops.json"))) { if(item.Name == shopName) { tempShop = item; } } if(tempShop != null) foreach(var item in tempShop.Items) { server.DispatchTo(new Guid(msg.GUID), new NetObject("item", new ServerMessage { Name = "shop_additem", GUID = "server", Contents = JsonConvert.SerializeObject(new { shop = shopName, itemdata = Compress(Compress(JsonConvert.SerializeObject(item))) }) })); } break; case "shop_getall": List shops = new List(); if (File.Exists("shops.json")) shops = JsonConvert.DeserializeObject>(File.ReadAllText("shops.json")); //Purge all items in all shops temporarily. //This is to save on network bandwidth as it will take a long time to send everyone's shops down if we don't purge the stock. //And with high bandwidth usage, we may end up DOSing our clients when too many people upload too many things. //Furthermore, this'll make the MUD Control Centre seem faster... for (int i = 0; i < shops.Count; i++) { shops[i].Items = new List(); } server.DispatchTo(new Guid(msg.GUID), new NetObject("ladouceur", new ServerMessage { Name = "shop_all", GUID = "server", Contents = JsonConvert.SerializeObject(shops) })); break; case "shop_requestdownload": string download = args["download"] as string; if (File.Exists(download) && download.StartsWith("shopDownloads/")) { server.DispatchTo(new Guid(msg.GUID), new NetObject("shop_download_meta", new ServerMessage { Name = "shop_download_meta", GUID = "server", Contents = JsonConvert.SerializeObject(File.ReadAllBytes(download)) })); } break; case "usr_givecp": if (args["username"] != null && args["amount"] != null) { string userName = args["username"] as string; int amount = (int)args["amount"]; if (Directory.Exists("saves")) { foreach(var saveFile in Directory.GetFiles("saves")) { var saveFileContents = JsonConvert.DeserializeObject(ReadEncFile(saveFile)); if(saveFileContents.Username == userName) { saveFileContents.Codepoints += amount; WriteEncFile(saveFile, JsonConvert.SerializeObject(saveFileContents, Formatting.Indented)); server.DispatchAll(new NetObject("pikachu_use_thunderbolt_oh_yeah_and_if_you_happen_to_be_doing_backend_and_see_this_post_a_picture_of_ash_ketchum_from_the_unova_series_in_the_discord_dev_room_holy_crap_this_is_a_long_snake_case_thing_about_ash_ketchum_and_pikachu", new ServerMessage { Name = "update_your_cp", GUID = "server", Contents = $@"{{ username: ""{userName}"", amount: {amount} }}" })); return; } } } } break; case "mud_login": if (args["username"] != null && args["password"] != null) { foreach(var savefile in Directory.GetFiles("saves")) { try { var save = JsonConvert.DeserializeObject(ReadEncFile(savefile)); if(save.Username == args["username"].ToString() && save.Password == args["password"].ToString()) { server.DispatchTo(new Guid(msg.GUID), new NetObject("mud_savefile", new ServerMessage { Name = "mud_savefile", GUID = "server", Contents = JsonConvert.SerializeObject(save) })); return; } } catch { } } server.DispatchTo(new Guid(msg.GUID), new NetObject("auth_failed", new ServerMessage { Name = "mud_login_denied", GUID = "server" })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("auth_failed", new ServerMessage { Name = "mud_login_denied", GUID = "server" })); } break; case "legion_createnew": List legions = new List(); if (File.Exists("legions.json")) legions = JsonConvert.DeserializeObject>(File.ReadAllText("legions.json")); var l = JsonConvert.DeserializeObject(msg.Contents); bool legionExists = false; foreach (var legion in legions) { if (legion.ShortName == l.ShortName) legionExists = true; } if (legionExists == false) { legions.Add(l); server.DispatchTo(new Guid(msg.GUID), new NetObject("test", new ServerMessage { Name = "legion_create_ok", GUID = "server" })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("test", new ServerMessage { Name = "legion_alreadyexists", GUID = "server" })); } File.WriteAllText("legions.json", JsonConvert.SerializeObject(legions, Formatting.Indented)); break; case "legion_get_all": List allLegions = new List(); if (File.Exists("legions.json")) allLegions = JsonConvert.DeserializeObject>(File.ReadAllText("legions.json")); server.DispatchTo(new Guid(msg.GUID), new NetObject("alllegions", new ServerMessage { Name = "legion_all", GUID = "server", Contents = JsonConvert.SerializeObject(allLegions) })); break; case "legion_get_users": var lgn = JsonConvert.DeserializeObject(msg.Contents); List userIDs = new List(); foreach (var savfile in Directory.GetFiles("saves")) { try { var savefilecontents = JsonConvert.DeserializeObject(File.ReadAllText(savfile)); if (savefilecontents.CurrentLegions.Contains(lgn.ShortName)) { userIDs.Add($"{savefilecontents.Username}@{savefilecontents.SystemName}"); } } catch { } } server.DispatchTo(new Guid(msg.GUID), new NetObject("userlist", new ServerMessage { Name = "legion_users_found", GUID = "server", Contents = JsonConvert.SerializeObject(userIDs) })); break; case "user_get_legion": var userSave = JsonConvert.DeserializeObject(msg.Contents); if (File.Exists("legions.json")) { var legionList = JsonConvert.DeserializeObject>(File.ReadAllText("legions.json")); foreach (var legion in legionList) { if (userSave.CurrentLegions.Contains(legion.ShortName)) { server.DispatchTo(new Guid(msg.GUID), new NetObject("reply", new ServerMessage { Name = "user_legion", GUID = "server", Contents = JsonConvert.SerializeObject(legion) })); return; } } } server.DispatchTo(new Guid(msg.GUID), new NetObject("fuck", new ServerMessage { Name = "user_not_found_in_legion", GUID = "server" })); break; case "mud_save": var sav = JsonConvert.DeserializeObject(msg.Contents); WriteEncFile("saves/" + sav.Username + ".save", JsonConvert.SerializeObject(sav, Formatting.Indented)); server.DispatchTo(new Guid(msg.GUID), new NetObject("auth_failed", new ServerMessage { Name = "mud_saved", GUID = "server" })); break; case "mud_checkuserexists": if (args["username"] != null && args["password"] != null) { foreach (var savefile in Directory.GetFiles("saves")) { try { var save = JsonConvert.DeserializeObject(ReadEncFile(savefile)); if (save.Username == args["username"].ToString() && save.Password == args["password"].ToString()) { server.DispatchTo(new Guid(msg.GUID), new NetObject("mud_savefile", new ServerMessage { Name = "mud_found", GUID = "server", })); return; } } catch { } } server.DispatchTo(new Guid(msg.GUID), new NetObject("auth_failed", new ServerMessage { Name = "mud_notfound", GUID = "server" })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("auth_failed", new ServerMessage { Name = "mud_notfound", GUID = "server" })); } break; case "user_get_shop": string shopOwner = msg.Contents; if (File.Exists("shops.json")) foreach (var shop in JsonConvert.DeserializeObject>(File.ReadAllText("shops.json"))) { if (shop.Owner == shopOwner) { server.DispatchTo(new Guid(msg.GUID), new NetObject("ruecuodaL", new ServerMessage { Name = "user_shop", GUID = "server", Contents = JsonConvert.SerializeObject(shop) })); return; } } server.DispatchTo(new Guid(msg.GUID), new NetObject("ruecuodaL", new ServerMessage { Name = "user_noshop", GUID = "server", })); break; case "pong_gethighscores": if (File.Exists("pong_highscores.json")) { server.DispatchTo(new Guid(msg.GUID), new NetObject("pongstuff", new ServerMessage { Name = "pong_highscores", GUID = "server", Contents = File.ReadAllText("pong_highscores.json") })); } break; case "get_memos_for_user": if(args["username"] != null) { string usrnme = args["username"].ToString(); List mmos = new List(); if (File.Exists("memos.json")) { foreach(var mmo in JsonConvert.DeserializeObject(File.ReadAllText("memos.json"))) { if(mmo.UserTo == usrnme) { mmos.Add(mmo); } } } server.DispatchTo(new Guid(msg.GUID), new NetObject("mud_memos", new ServerMessage { Name = "mud_usermemos", GUID = "server", Contents = JsonConvert.SerializeObject(mmos) })); } break; case "mud_post_memo": MUDMemo memo = JsonConvert.DeserializeObject(msg.Contents); List memos = new List(); if (File.Exists("memos.json")) memos = JsonConvert.DeserializeObject>(File.ReadAllText("memos.json")); memos.Add(memo); File.WriteAllText("memos.txt", JsonConvert.SerializeObject(memos)); break; case "pong_sethighscore": var hs = new List(); if (File.Exists("pong_highscores.json")) hs = JsonConvert.DeserializeObject>(File.ReadAllText("ponghighscores.json")); var newHS = JsonConvert.DeserializeObject(msg.Contents); for (int i = 0; i <= hs.Count; i++) { try { if (hs[i].UserName == newHS.UserName) { if (newHS.HighestLevel > hs[i].HighestLevel) hs[i].HighestLevel = newHS.HighestLevel; if (newHS.HighestCodepoints > hs[i].HighestCodepoints) hs[i].HighestCodepoints = newHS.HighestCodepoints; File.WriteAllText("pong_highscores.json", JsonConvert.SerializeObject(hs)); return; } } catch { } } hs.Add(newHS); File.WriteAllText("pong_highscores.json", JsonConvert.SerializeObject(hs)); return; case "getvirusdb": if (!File.Exists("virus.db")) File.WriteAllText("virus.db", "{}"); server.DispatchTo(new Guid(msg.GUID), new NetObject("vdb", new ServerMessage { Name = "virusdb", GUID = "server", Contents = File.ReadAllText("virus.db") })); break; case "getvirus": Dictionary virusDB = new Dictionary(); if (File.Exists("virus.db")) virusDB = JsonConvert.DeserializeObject>(File.ReadAllText("virus.db")); foreach (var kv in virusDB) { if (kv.Key == msg.Contents) { server.DispatchTo(new Guid(msg.GUID), new NetObject("response", new ServerMessage { Name = "mud_virus", GUID = "server", Contents = kv.Value, })); return; } } break; case "download_start": if (!msg.Contents.StartsWith("shiftnet/")) { server.DispatchTo(new Guid(msg.GUID), new NetObject("shiftnet_got", new ServerMessage { Name = "shiftnet_file", GUID = "server", Contents = (File.Exists("badrequest.md") == true) ? File.ReadAllText("badrequest.md") : @"# Bad request. You have sent a bad request to the multi-user domain. Please try again." })); return; } if (File.Exists(msg.Contents)) { server.DispatchTo(new Guid(msg.GUID), new NetObject("download", new ServerMessage { Name = "download_meta", GUID = "server", Contents = JsonConvert.SerializeObject(File.ReadAllBytes(msg.Contents)) })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("shiftnet_got", new ServerMessage { Name = "shiftnet_file", GUID = "server", Contents = (File.Exists("notfound.md") == true) ? File.ReadAllText("notfound.md") : @"# Not found. The page you requested at was not found on this multi-user domain." })); } break; case "shiftnet_get": string surl = args["url"] as string; while (surl.EndsWith("/")) { surl = surl.Remove(surl.Length - 1, 1); } if (!surl.StartsWith("shiftnet/")) { server.DispatchTo(new Guid(msg.GUID), new NetObject("shiftnet_got", new ServerMessage { Name = "shiftnet_file", GUID = "server", Contents = (File.Exists("badrequest.md") == true) ? File.ReadAllText("badrequest.md") : @"# Bad request. You have sent a bad request to the multi-user domain. Please try again." })); return; } if (File.Exists(surl)) { server.DispatchTo(new Guid(msg.GUID), new NetObject("shiftnet_got", new ServerMessage { Name = "shiftnet_file", GUID = "server", Contents = File.ReadAllText(surl) })); } else if (File.Exists(surl + "/home.rnp")) { server.DispatchTo(new Guid(msg.GUID), new NetObject("shiftnet_got", new ServerMessage { Name = "shiftnet_file", GUID = "server", Contents = File.ReadAllText(surl + "/home.rnp") })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("shiftnet_got", new ServerMessage { Name = "shiftnet_file", GUID = "server", Contents = (File.Exists("notfound.md") == true) ? File.ReadAllText("notfound.md") : @"# Not found. The page you requested at was not found on this multi-user domain." })); } break; case "mud_scanvirus": Dictionary _virusDB = new Dictionary(); bool addIfNotFound = true; if (msg.Contents.Contains("||scanonly")) addIfNotFound = false; msg.Contents = msg.Contents.Replace("||scanonly", ""); if(File.Exists("virus.db")) _virusDB = JsonConvert.DeserializeObject>(File.ReadAllText("virus.db")); foreach(var kv in _virusDB) { if(kv.Value == msg.Contents) { server.DispatchTo(new Guid(msg.GUID), new NetObject("response", new ServerMessage { Name = "mud_virus_signature", GUID = "server", Contents = kv.Key, })); return; } } if (addIfNotFound == true) { string newguid = Guid.NewGuid().ToString(); _virusDB.Add(newguid, msg.Contents); File.WriteAllText("virus.db", JsonConvert.SerializeObject(_virusDB, Formatting.Indented)); server.DispatchTo(new Guid(msg.GUID), new NetObject("response", new ServerMessage { Name = "mud_virus_signature", GUID = "server", Contents = newguid, })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("response", new ServerMessage { Name = "mud_virus_signature", GUID = "server", Contents = "unknown", })); } return; case "chat_join": if (args.ContainsKey("id")) { var cuser = new Save(); if (args.ContainsKey("user")) { cuser = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(args["user"])); } int index = -1; string chat_id = args["id"] as string; foreach(var chat in chats) { if(chat.ID == chat_id) { if(chat.Users.Count < chat.MaxUsers || chat.MaxUsers == 0) { //user can join chat. if(cuser != null) { index = chats.IndexOf(chat); } } } } if(index > -1) { chats[index].Users.Add(cuser); server.DispatchAll(new NetObject("broadcast", new ServerMessage { Name = "cbroadcast", GUID = "server", Contents = $"{chat_id}: {cuser.Username} {{CHAT_HAS_JOINED}}" })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("broadcast", new ServerMessage { Name = "cbroadcast", GUID = "server", Contents = $"{chat_id}: {{CHAT_NOT_FOUND_OR_TOO_MANY_MEMBERS}}" })); } } break; case "chat": if (args.ContainsKey("id")) { var cuser = new Save(); if (args.ContainsKey("user")) { cuser = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(args["user"])); } string message = ""; if (args.ContainsKey("msg")) message = args["msg"] as string; int index = -1; string chat_id = args["id"] as string; foreach (var chat in chats) { if (chat.ID == chat_id) { if (cuser != null && !string.IsNullOrWhiteSpace(message) && UserInChat(chat, cuser)) { index = chats.IndexOf(chat); } } } if (index > -1) { server.DispatchAll(new NetObject("broadcast", new ServerMessage { Name = "cbroadcast", GUID = "server", Contents = $"{chat_id}/{cuser.Username}: {message}" })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("broadcast", new ServerMessage { Name = "cbroadcast", GUID = "server", Contents = $"{chats[index].ID}: {{CHAT_NOT_FOUND_OR_NOT_IN_CHAT}}" })); } } break; case "chat_leave": if (args.ContainsKey("id")) { var cuser = new Save(); if (args.ContainsKey("user")) { cuser = JsonConvert.DeserializeObject(JsonConvert.SerializeObject(args["user"])); } int index = -1; string chat_id = args["id"] as string; foreach (var chat in chats) { if (chat.ID == chat_id) { if (cuser != null && UserInChat(chat, cuser)) { index = chats.IndexOf(chat); } } } if (index > -1) { server.DispatchAll(new NetObject("broadcast", new ServerMessage { Name = "cbroadcast", GUID = "server", Contents = $"{chats[index].ID}: {cuser.Username} {{HAS_LEFT_CHAT}}" })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("broadcast", new ServerMessage { Name = "cbroadcast", GUID = "server", Contents = $"{chat_id}: {{CHAT_NOT_FOUND_OR_NOT_IN_CHAT}}" })); } } break; case "chat_create": string id = ""; string topic = ""; string name = ""; int max_users = 0; if (args.ContainsKey("id")) id = args["id"] as string; if (args.ContainsKey("topic")) name = args["topic"] as string; if (args.ContainsKey("name")) topic = args["name"] as string; if (args.ContainsKey("max_users")) max_users = Convert.ToInt32(args["max_users"].ToString()); bool id_taken = false; foreach(var chat in chats) { if (chat.ID == id) id_taken = true; } if (id_taken == false) { chats.Add(new Channel { ID = id, Name = name, Topic = topic, MaxUsers = max_users, Users = new List() }); SaveChats(); server.DispatchTo(new Guid(msg.GUID), new NetObject("broadcast", new ServerMessage { Name = "cbroadcast", GUID = "server", Contents = $"{id}: {{SUCCESSFULLY_CREATED_CHAT}}" })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("broadcast", new ServerMessage { Name = "cbroadcast", GUID = "server", Contents = $"{id}: {{ID_TAKEN}}" })); } break; case "broadcast": string text = msg.Contents; if (!string.IsNullOrWhiteSpace(text)) { server.DispatchTo(new Guid(msg.GUID), new NetObject("runme", new ServerMessage { Name = "broadcast", GUID = "Server", Contents = text })); } break; case "lua_up": string lua = msg.Contents; string firstLine = lua.Split(new[] { Environment.NewLine }, StringSplitOptions.None)[0]; firstLine = firstLine.Remove(0, 3); //delete the comment string[] a = firstLine.Split('.'); if(!Directory.Exists("scripts/" + a[0])) { Directory.CreateDirectory($"scripts/{a[0]}"); } File.WriteAllText($"scripts/{a[0]}/{a[1]}.lua", lua); break; case "mudhack_init": if (MUDHackPasswords.ContainsKey(msg.GUID)) MUDHackPasswords.Remove(msg.GUID); MUDHackPasswords.Add(msg.GUID, GenerateRandomPassword()); server.DispatchTo(new Guid(msg.GUID), new NetObject("mudhack_init", new ServerMessage { Name = "mudhack_init", GUID = "SERVER", Contents = MUDHackPasswords[msg.GUID], })); break; case "mudhack_verify": if (!MUDHackPasswords.ContainsKey(msg.GUID)) { server.DispatchTo(new Guid(msg.GUID), new NetObject("mudhack_init", new ServerMessage { Name = "server_error", GUID = "SERVER", Contents = "{SRV_HACK_NOT_INITIATED}", })); return; } string pass = ""; if (args.ContainsKey("pass")) pass = args["pass"] as string; if(pass == MUDHackPasswords[msg.GUID]) { server.DispatchTo(new Guid(msg.GUID), new NetObject("mudhack_init", new ServerMessage { Name = "mudhack_granted", GUID = "SERVER", })); } else { server.DispatchTo(new Guid(msg.GUID), new NetObject("mudhack_init", new ServerMessage { Name = "mudhack_denied", GUID = "SERVER", })); } break; case "mudhack_killpass": if (MUDHackPasswords.ContainsKey(msg.GUID)) MUDHackPasswords.Remove(msg.GUID); break; case "mudhack_getallusers": List users = new List(); foreach (var chat in chats) { foreach(var usr in chat.Users) { var ousr = new OnlineUser(); ousr.Username = usr.Username; ousr.OnlineChat = chat.ID; users.Add(ousr); } } server.DispatchTo(new Guid(msg.GUID), new NetObject("mudhack_users", new ServerMessage { Name = "mudhack_users", GUID = "SERVER", Contents = JsonConvert.SerializeObject(users), })); break; case "getguid_reply": msg.GUID = "server"; //The message's GUID was manipulated by the client to send to another client. //So we can just bounce back the message to the other client. server.DispatchTo(new Guid(msg.GUID), new NetObject("bounce", msg)); break; case "getguid_send": string usrname = msg.Contents; string guid = msg.GUID; server.DispatchAll(new NetObject("are_you_this_guy", new ServerMessage { Name = "getguid_fromserver", GUID = guid, Contents = usrname, })); break; case "script": string user = ""; string script = ""; string sArgs = ""; if (!args.ContainsKey("user")) throw new Exception("No 'user' arg specified in message to server"); if (!args.ContainsKey("script")) throw new Exception("No 'script' arg specified in message to server"); if (!args.ContainsKey("args")) throw new Exception("No 'args' arg specified in message to server"); user = args["user"] as string; script = args["script"] as string; sArgs = args["args"] as string; if(File.Exists($"scripts/{user}/{script}.lua")) { var script_arguments = JsonConvert.DeserializeObject>(sArgs); server.DispatchTo(new Guid(msg.GUID), new NetObject("runme", new ServerMessage { Name="run", GUID="Server", Contents = $@"{{ script:""{File.ReadAllText($"scripts/{user}/{script}.lua").Replace("\"", "\\\"")}"", args:""{sArgs}"" }}" })); } else { throw new Exception($"{user}.{script}: Script not found."); } break; default: throw new Exception($"Server couldn't decipher this message:\n\n{JsonConvert.SerializeObject(msg)}"); } } catch(Exception ex) { Console.WriteLine("An error occurred with that one."); Console.WriteLine(ex); server.DispatchTo(new Guid(msg.GUID), new NetObject("error", new ServerMessage { Name = "Error", GUID = "Server", Contents = JsonConvert.SerializeObject(ex) })); } } /// /// Generates the random password. /// /// The random password. public static string GenerateRandomPassword() { return Guid.NewGuid().ToString(); } /// /// The MUD hack passwords. /// public static Dictionary MUDHackPasswords = new Dictionary(); public static MudClientDispatcher ClientDispatcher { get; private set; } /// /// Stop this instance. /// public static void Stop() { try { if (server.IsOnline) { try { server.Stop(); } catch { } } server = null; } catch { } } /// /// The chats. /// public static List chats = new List(); } public static class Encryption { public static string GetMacAddress() { if (!File.Exists("hash.dat")) File.WriteAllText("hash.dat", Guid.NewGuid().ToString()); return File.ReadAllText("hash.dat"); } // This constant string is used as a "salt" value for the PasswordDeriveBytes function calls. // This size of the IV (in bytes) must = (keysize / 8). Default keysize is 256, so the IV must be // 32 bytes long. Using a 16 character string here gives us 32 bytes when converted to a byte array. private static readonly byte[] initVectorBytes = Encoding.ASCII.GetBytes("tu89geji340t89u2"); // This constant is used to determine the keysize of the encryption algorithm. private const int keysize = 256; /// /// Encrypt a string. /// /// Raw string to encrypt. /// The encrypted string. public static string Encrypt(string plainText) { byte[] plainTextBytes = Encoding.UTF8.GetBytes(plainText); using (PasswordDeriveBytes password = new PasswordDeriveBytes(GetMacAddress(), null)) { byte[] keyBytes = password.GetBytes(keysize / 8); using (RijndaelManaged symmetricKey = new RijndaelManaged()) { symmetricKey.Mode = CipherMode.CBC; using (ICryptoTransform encryptor = symmetricKey.CreateEncryptor(keyBytes, initVectorBytes)) { using (MemoryStream memoryStream = new MemoryStream()) { using (CryptoStream cryptoStream = new CryptoStream(memoryStream, encryptor, CryptoStreamMode.Write)) { cryptoStream.Write(plainTextBytes, 0, plainTextBytes.Length); cryptoStream.FlushFinalBlock(); byte[] cipherTextBytes = memoryStream.ToArray(); return Convert.ToBase64String(cipherTextBytes); } } } } } } public static string Decrypt(string cipherText) { byte[] cipherTextBytes = Convert.FromBase64String(cipherText); using (PasswordDeriveBytes password = new PasswordDeriveBytes(GetMacAddress(), null)) { byte[] keyBytes = password.GetBytes(keysize / 8); using (RijndaelManaged symmetricKey = new RijndaelManaged()) { symmetricKey.Mode = CipherMode.CBC; using (ICryptoTransform decryptor = symmetricKey.CreateDecryptor(keyBytes, initVectorBytes)) { using (MemoryStream memoryStream = new MemoryStream(cipherTextBytes)) { using (CryptoStream cryptoStream = new CryptoStream(memoryStream, decryptor, CryptoStreamMode.Read)) { byte[] plainTextBytes = new byte[cipherTextBytes.Length]; int decryptedByteCount = cryptoStream.Read(plainTextBytes, 0, plainTextBytes.Length); return Encoding.UTF8.GetString(plainTextBytes, 0, decryptedByteCount); } } } } } } } public class MudRequestHandlerNotFoundException : MudException { public MudRequestHandlerNotFoundException() : base("The request handler for this request couldn't be found.") { } } public class MudClientDispatcher { public NetObjectServer Server { get; private set; } public MudClientDispatcher(NetObjectServer srv) { Server = srv; DispatcherGUID = Guid.NewGuid().ToString(); Console.WriteLine($"[{DateTime.Now}] Dispatcher started."); } public string DispatcherGUID { get; private set; } public void Broadcast(string msgHeader, object contents) { Server.DispatchAll(new NetObject { Name = "broadcast", Object = new ServerMessage { Name = msgHeader, GUID = DispatcherGUID, Contents = JsonConvert.SerializeObject(contents) } }); } public void DispatchTo(string msgName, string cGuid, object mContents) { if(Server.Clients.Contains(new Guid(cGuid))) { Server.DispatchTo(new Guid(cGuid), new NetObject("dispatch", new ServerMessage { Name = msgName, GUID = DispatcherGUID, Contents = JsonConvert.SerializeObject(mContents) })); Console.WriteLine($"[{DateTime.Now}] Dispatching to {cGuid}: {msgName}."); } else { Console.WriteLine($"[{DateTime.Now}] Client \"{cGuid}\" not found on server. Possibly a connection drop."); } } } } // Uncommenting by Michael