123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262 |
- /*
- * Copyright (c) Contributors, http://opensimulator.org/
- * See CONTRIBUTORS.TXT for a full list of copyright holders.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * * Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * * Neither the name of the OpenSimulator Project nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
- * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- using System;
- using System.Collections;
- using System.IO;
- using System.Reflection;
- using System.Net;
- using System.Text;
- using OpenSim.Server.Base;
- using OpenSim.Server.Handlers.Base;
- using OpenSim.Services.Interfaces;
- using GridRegion = OpenSim.Services.Interfaces.GridRegion;
- using OpenSim.Framework;
- using OpenSim.Framework.Servers.HttpServer;
- using OpenMetaverse;
- using OpenMetaverse.StructuredData;
- using Nini.Config;
- using log4net;
- namespace OpenSim.Server.Handlers.Simulation
- {
- public class ObjectHandler
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private ISimulationService m_SimulationService;
- public ObjectHandler() { }
- public ObjectHandler(ISimulationService sim)
- {
- m_SimulationService = sim;
- }
- public Hashtable Handler(Hashtable request)
- {
- //m_log.Debug("[CONNECTION DEBUGGING]: ObjectHandler Called");
- //m_log.Debug("---------------------------");
- //m_log.Debug(" >> uri=" + request["uri"]);
- //m_log.Debug(" >> content-type=" + request["content-type"]);
- //m_log.Debug(" >> http-method=" + request["http-method"]);
- //m_log.Debug("---------------------------\n");
- Hashtable responsedata = new Hashtable();
- responsedata["content_type"] = "text/html";
- UUID objectID;
- UUID regionID;
- string action;
- if (!Utils.GetParams((string)request["uri"], out objectID, out regionID, out action))
- {
- m_log.InfoFormat("[OBJECT HANDLER]: Invalid parameters for object message {0}", request["uri"]);
- responsedata["int_response_code"] = 404;
- responsedata["str_response_string"] = "false";
- return responsedata;
- }
- try
- {
- // Next, let's parse the verb
- string method = (string)request["http-method"];
- if (method.Equals("POST"))
- {
- DoObjectPost(request, responsedata, regionID);
- return responsedata;
- }
- else if (method.Equals("PUT"))
- {
- DoObjectPut(request, responsedata, regionID);
- return responsedata;
- }
- //else if (method.Equals("DELETE"))
- //{
- // DoObjectDelete(request, responsedata, agentID, action, regionHandle);
- // return responsedata;
- //}
- else
- {
- m_log.InfoFormat("[OBJECT HANDLER]: method {0} not supported in object message", method);
- responsedata["int_response_code"] = HttpStatusCode.MethodNotAllowed;
- responsedata["str_response_string"] = "Method not allowed";
- return responsedata;
- }
- }
- catch (Exception e)
- {
- m_log.WarnFormat("[OBJECT HANDLER]: Caught exception {0}", e.StackTrace);
- responsedata["int_response_code"] = HttpStatusCode.InternalServerError;
- responsedata["str_response_string"] = "Internal server error";
- return responsedata;
- }
- }
- protected void DoObjectPost(Hashtable request, Hashtable responsedata, UUID regionID)
- {
- OSDMap args = Utils.GetOSDMap((string)request["body"]);
- if (args == null)
- {
- responsedata["int_response_code"] = 400;
- responsedata["str_response_string"] = "false";
- return;
- }
- // retrieve the input arguments
- int x = 0, y = 0;
- UUID uuid = UUID.Zero;
- string regionname = string.Empty;
- if (args.ContainsKey("destination_x") && args["destination_x"] != null)
- Int32.TryParse(args["destination_x"].AsString(), out x);
- if (args.ContainsKey("destination_y") && args["destination_y"] != null)
- Int32.TryParse(args["destination_y"].AsString(), out y);
- if (args.ContainsKey("destination_uuid") && args["destination_uuid"] != null)
- UUID.TryParse(args["destination_uuid"].AsString(), out uuid);
- if (args.ContainsKey("destination_name") && args["destination_name"] != null)
- regionname = args["destination_name"].ToString();
- GridRegion destination = new GridRegion();
- destination.RegionID = uuid;
- destination.RegionLocX = x;
- destination.RegionLocY = y;
- destination.RegionName = regionname;
- string sogXmlStr = "", extraStr = "", stateXmlStr = "";
- if (args.ContainsKey("sog") && args["sog"] != null)
- sogXmlStr = args["sog"].AsString();
- if (args.ContainsKey("extra") && args["extra"] != null)
- extraStr = args["extra"].AsString();
- IScene s = m_SimulationService.GetScene(destination.RegionHandle);
- ISceneObject sog = null;
- try
- {
- //m_log.DebugFormat("[OBJECT HANDLER]: received {0}", sogXmlStr);
- sog = s.DeserializeObject(sogXmlStr);
- sog.ExtraFromXmlString(extraStr);
- }
- catch (Exception ex)
- {
- m_log.InfoFormat("[OBJECT HANDLER]: exception on deserializing scene object {0}", ex.Message);
- responsedata["int_response_code"] = HttpStatusCode.BadRequest;
- responsedata["str_response_string"] = "Bad request";
- return;
- }
- if (args.ContainsKey("modified"))
- sog.HasGroupChanged = args["modified"].AsBoolean();
- else
- sog.HasGroupChanged = false;
- if ((args["state"] != null) && s.AllowScriptCrossings)
- {
- stateXmlStr = args["state"].AsString();
- if (stateXmlStr != "")
- {
- try
- {
- sog.SetState(stateXmlStr, s);
- }
- catch (Exception ex)
- {
- m_log.InfoFormat("[OBJECT HANDLER]: exception on setting state for scene object {0}", ex.Message);
- // ignore and continue
- }
- }
- }
- bool result = false;
- try
- {
- // This is the meaning of POST object
- result = CreateObject(destination, sog);
- }
- catch (Exception e)
- {
- m_log.DebugFormat("[OBJECT HANDLER]: Exception in CreateObject: {0}", e.StackTrace);
- }
- responsedata["int_response_code"] = HttpStatusCode.OK;
- responsedata["str_response_string"] = result.ToString();
- }
- // subclasses can override this
- protected virtual bool CreateObject(GridRegion destination, ISceneObject sog)
- {
- return m_SimulationService.CreateObject(destination, sog, false);
- }
- protected virtual void DoObjectPut(Hashtable request, Hashtable responsedata, UUID regionID)
- {
- OSDMap args = Utils.GetOSDMap((string)request["body"]);
- if (args == null)
- {
- responsedata["int_response_code"] = 400;
- responsedata["str_response_string"] = "false";
- return;
- }
- // retrieve the input arguments
- int x = 0, y = 0;
- UUID uuid = UUID.Zero;
- string regionname = string.Empty;
- if (args.ContainsKey("destination_x") && args["destination_x"] != null)
- Int32.TryParse(args["destination_x"].AsString(), out x);
- if (args.ContainsKey("destination_y") && args["destination_y"] != null)
- Int32.TryParse(args["destination_y"].AsString(), out y);
- if (args.ContainsKey("destination_uuid") && args["destination_uuid"] != null)
- UUID.TryParse(args["destination_uuid"].AsString(), out uuid);
- if (args.ContainsKey("destination_name") && args["destination_name"] != null)
- regionname = args["destination_name"].ToString();
- GridRegion destination = new GridRegion();
- destination.RegionID = uuid;
- destination.RegionLocX = x;
- destination.RegionLocY = y;
- destination.RegionName = regionname;
- UUID userID = UUID.Zero, itemID = UUID.Zero;
- if (args.ContainsKey("userid") && args["userid"] != null)
- userID = args["userid"].AsUUID();
- if (args.ContainsKey("itemid") && args["itemid"] != null)
- itemID = args["itemid"].AsUUID();
- // This is the meaning of PUT object
- bool result = m_SimulationService.CreateObject(destination, userID, itemID);
- responsedata["int_response_code"] = 200;
- responsedata["str_response_string"] = result.ToString();
- }
- }
- }
|