HomeAgentHandlers.cs 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using System.Collections;
  29. using System.IO;
  30. using System.Reflection;
  31. using System.Net;
  32. using System.Text;
  33. using OpenSim.Server.Base;
  34. using OpenSim.Server.Handlers.Base;
  35. using OpenSim.Services.Interfaces;
  36. using GridRegion = OpenSim.Services.Interfaces.GridRegion;
  37. using OpenSim.Framework;
  38. using OpenSim.Framework.Servers.HttpServer;
  39. using OpenSim.Server.Handlers.Simulation;
  40. using Utils = OpenSim.Server.Handlers.Simulation.Utils;
  41. using OpenMetaverse;
  42. using OpenMetaverse.StructuredData;
  43. using Nini.Config;
  44. using log4net;
  45. namespace OpenSim.Server.Handlers.Hypergrid
  46. {
  47. public class HomeAgentHandler
  48. {
  49. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  50. private IUserAgentService m_UserAgentService;
  51. public HomeAgentHandler(IUserAgentService userAgentService)
  52. {
  53. m_UserAgentService = userAgentService;
  54. }
  55. public Hashtable Handler(Hashtable request)
  56. {
  57. // m_log.Debug("[CONNECTION DEBUGGING]: HomeAgentHandler Called");
  58. //
  59. // m_log.Debug("---------------------------");
  60. // m_log.Debug(" >> uri=" + request["uri"]);
  61. // m_log.Debug(" >> content-type=" + request["content-type"]);
  62. // m_log.Debug(" >> http-method=" + request["http-method"]);
  63. // m_log.Debug("---------------------------\n");
  64. Hashtable responsedata = new Hashtable();
  65. responsedata["content_type"] = "text/html";
  66. responsedata["keepalive"] = false;
  67. UUID agentID;
  68. UUID regionID;
  69. string action;
  70. if (!Utils.GetParams((string)request["uri"], out agentID, out regionID, out action))
  71. {
  72. m_log.InfoFormat("[HOME AGENT HANDLER]: Invalid parameters for agent message {0}", request["uri"]);
  73. responsedata["int_response_code"] = 404;
  74. responsedata["str_response_string"] = "false";
  75. return responsedata;
  76. }
  77. // Next, let's parse the verb
  78. string method = (string)request["http-method"];
  79. if (method.Equals("POST"))
  80. {
  81. DoAgentPost(request, responsedata, agentID);
  82. return responsedata;
  83. }
  84. else
  85. {
  86. m_log.InfoFormat("[HOME AGENT HANDLER]: method {0} not supported in agent message", method);
  87. responsedata["int_response_code"] = HttpStatusCode.MethodNotAllowed;
  88. responsedata["str_response_string"] = "Method not allowed";
  89. return responsedata;
  90. }
  91. }
  92. protected void DoAgentPost(Hashtable request, Hashtable responsedata, UUID id)
  93. {
  94. OSDMap args = Utils.GetOSDMap((string)request["body"]);
  95. if (args == null)
  96. {
  97. responsedata["int_response_code"] = HttpStatusCode.BadRequest;
  98. responsedata["str_response_string"] = "Bad request";
  99. return;
  100. }
  101. // retrieve the input arguments
  102. int x = 0, y = 0;
  103. UUID uuid = UUID.Zero;
  104. string regionname = string.Empty;
  105. string gatekeeper_host = string.Empty;
  106. int gatekeeper_port = 0;
  107. if (args.ContainsKey("gatekeeper_host") && args["gatekeeper_host"] != null)
  108. gatekeeper_host = args["gatekeeper_host"].AsString();
  109. if (args.ContainsKey("gatekeeper_port") && args["gatekeeper_port"] != null)
  110. Int32.TryParse(args["gatekeeper_port"].AsString(), out gatekeeper_port);
  111. GridRegion gatekeeper = new GridRegion();
  112. gatekeeper.ExternalHostName = gatekeeper_host;
  113. gatekeeper.HttpPort = (uint)gatekeeper_port;
  114. gatekeeper.InternalEndPoint = new IPEndPoint(IPAddress.Parse("0.0.0.0"), 0);
  115. if (args.ContainsKey("destination_x") && args["destination_x"] != null)
  116. Int32.TryParse(args["destination_x"].AsString(), out x);
  117. else
  118. m_log.WarnFormat(" -- request didn't have destination_x");
  119. if (args.ContainsKey("destination_y") && args["destination_y"] != null)
  120. Int32.TryParse(args["destination_y"].AsString(), out y);
  121. else
  122. m_log.WarnFormat(" -- request didn't have destination_y");
  123. if (args.ContainsKey("destination_uuid") && args["destination_uuid"] != null)
  124. UUID.TryParse(args["destination_uuid"].AsString(), out uuid);
  125. if (args.ContainsKey("destination_name") && args["destination_name"] != null)
  126. regionname = args["destination_name"].ToString();
  127. GridRegion destination = new GridRegion();
  128. destination.RegionID = uuid;
  129. destination.RegionLocX = x;
  130. destination.RegionLocY = y;
  131. destination.RegionName = regionname;
  132. AgentCircuitData aCircuit = new AgentCircuitData();
  133. try
  134. {
  135. aCircuit.UnpackAgentCircuitData(args);
  136. }
  137. catch (Exception ex)
  138. {
  139. m_log.InfoFormat("[HOME AGENT HANDLER]: exception on unpacking ChildCreate message {0}", ex.Message);
  140. responsedata["int_response_code"] = HttpStatusCode.BadRequest;
  141. responsedata["str_response_string"] = "Bad request";
  142. return;
  143. }
  144. OSDMap resp = new OSDMap(2);
  145. string reason = String.Empty;
  146. bool result = m_UserAgentService.LoginAgentToGrid(aCircuit, gatekeeper, destination, out reason);
  147. resp["reason"] = OSD.FromString(reason);
  148. resp["success"] = OSD.FromBoolean(result);
  149. // TODO: add reason if not String.Empty?
  150. responsedata["int_response_code"] = HttpStatusCode.OK;
  151. responsedata["str_response_string"] = OSDParser.SerializeJsonString(resp);
  152. }
  153. }
  154. }