From 55dc0dc2670f0db384d7ff5bad3d810a08ffbd34 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Tue, 29 Jan 2008 14:43:45 +0000 Subject: * Patch from Ansi (IBM) * Allows the creation of a user via the RemoteAdminPlugin. * Many thanks! --- .../RemoteController/RemoteAdminPlugin.cs | 56 +++++++++++++++++++++- 1 file changed, 54 insertions(+), 2 deletions(-) (limited to 'OpenSim/ApplicationPlugins/RemoteController') diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index fa76078..770abe7 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs @@ -67,6 +67,7 @@ namespace OpenSim.ApplicationPlugins.LoadRegions m_httpd.AddXmlRPCHandler("admin_broadcast", XmlRpcAlertMethod); m_httpd.AddXmlRPCHandler("admin_restart", XmlRpcRestartMethod); m_httpd.AddXmlRPCHandler("admin_load_heightmap", XmlRpcLoadHeightmapMethod); + m_httpd.AddXmlRPCHandler("admin_create_user", XmlRpcCreateUserMethod); } } catch (NullReferenceException) @@ -281,9 +282,60 @@ namespace OpenSim.ApplicationPlugins.LoadRegions return response; } - public void Close() + public XmlRpcResponse XmlRpcCreateUserMethod(XmlRpcRequest request) { + MainLog.Instance.Verbose("RADMIN", "Received Create User Administrator Request"); + XmlRpcResponse response = new XmlRpcResponse(); + Hashtable requestData = (Hashtable) request.Params[0]; + Hashtable responseData = new Hashtable(); + if (requiredPassword != System.String.Empty && + (!requestData.Contains("password") || (string) requestData["password"] != requiredPassword)) + { + responseData["created"] = "false"; + response.Value = responseData; + } + else + { + try + { + string tempfirstname = (string) requestData["user_firstname"]; + string templastname = (string) requestData["user_lastname"]; + string tempPasswd = (string) requestData["user_password"]; + uint regX = Convert.ToUInt32((Int32) requestData["start_region_x"]); + uint regY = Convert.ToUInt32((Int32) requestData["start_region_y"]); + + LLUUID tempuserID = m_app.CreateUser(tempfirstname, templastname, tempPasswd, regX, regY); + + if (tempuserID == LLUUID.Zero) + { + responseData["created"] = "false"; + responseData["error"] = "Error creating user"; + responseData["avatar_uuid"] = LLUUID.Zero; + response.Value = responseData; + MainLog.Instance.Error("RADMIN", "Error creating user (" + tempfirstname + " " + templastname + ") :"); + } + else + { + responseData["created"] = "true"; + responseData["avatar_uuid"] = tempuserID; + response.Value = responseData; + MainLog.Instance.Verbose("RADMIN", "User " + tempfirstname + " " + templastname + " created. Userid " + tempuserID + " assigned."); + } + } + catch (Exception e) + { + responseData["created"] = "false"; + responseData["error"] = e.ToString(); + responseData["avatar_uuid"] = LLUUID.Zero; + response.Value = responseData; + } + } + + return response; } + public void Close() + { + } } -} \ No newline at end of file +} -- cgit v1.1