123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- using System;
- 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 OpenSim.Framework;
- using OpenSim.Framework.Servers.HttpServer;
- using GridRegion = OpenSim.Services.Interfaces.GridRegion;
- using OpenMetaverse;
- using OpenMetaverse.StructuredData;
- using Nini.Config;
- using log4net;
- namespace OpenSim.Server.Handlers.Neighbour
- {
- public class NeighbourGetHandler : BaseStreamHandler
- {
-
-
- public NeighbourGetHandler(INeighbourService service, IAuthenticationService authentication) :
- base("GET", "/region")
- {
-
-
- }
- protected override byte[] ProcessRequest(string path, Stream request,
- IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
- {
-
- Console.WriteLine("--- Get region --- " + path);
- httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented;
- return new byte[] { };
- }
- }
- public class NeighbourPostHandler : BaseStreamHandler
- {
- private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- private INeighbourService m_NeighbourService;
- private IAuthenticationService m_AuthenticationService;
-
- public NeighbourPostHandler(INeighbourService service, IAuthenticationService authentication) :
- base("POST", "/region")
- {
- m_NeighbourService = service;
- m_AuthenticationService = authentication;
-
- }
- protected override byte[] ProcessRequest(string path, Stream request,
- IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
- {
- byte[] result = new byte[0];
- UUID regionID;
- string action;
- ulong regionHandle;
- if (RestHandlerUtils.GetParams(path, out regionID, out regionHandle, out action))
- {
- m_log.InfoFormat("[RegionPostHandler]: Invalid parameters for neighbour message {0}", path);
- httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
- httpResponse.StatusDescription = "Invalid parameters for neighbour message " + path;
- return result;
- }
- if (m_AuthenticationService != null)
- {
-
- string authority = string.Empty;
- string authToken = string.Empty;
- if (!RestHandlerUtils.GetAuthentication(httpRequest, out authority, out authToken))
- {
- m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path);
- httpResponse.StatusCode = (int)HttpStatusCode.Unauthorized;
- return result;
- }
-
-
-
-
-
-
-
- m_log.DebugFormat("[RegionPostHandler]: Authentication succeeded for {0}", regionID);
- }
- OSDMap args = Util.GetOSDMap(request, (int)httpRequest.ContentLength);
- if (args == null)
- {
- httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
- httpResponse.StatusDescription = "Unable to retrieve data";
- m_log.DebugFormat("[RegionPostHandler]: Unable to retrieve data for post {0}", path);
- return result;
- }
-
- ulong regionhandle = 0;
- if (args["destination_handle"] != null)
- UInt64.TryParse(args["destination_handle"].AsString(), out regionhandle);
- RegionInfo aRegion = new RegionInfo();
- try
- {
- aRegion.UnpackRegionInfoData(args);
- }
- catch (Exception ex)
- {
- m_log.InfoFormat("[RegionPostHandler]: exception on unpacking region info {0}", ex.Message);
- httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
- httpResponse.StatusDescription = "Problems with data deserialization";
- return result;
- }
-
- GridRegion thisRegion = m_NeighbourService.HelloNeighbour(regionhandle, aRegion);
-
- OSDMap resp = new OSDMap(1);
- if (thisRegion != null)
- resp["success"] = OSD.FromBoolean(true);
- else
- resp["success"] = OSD.FromBoolean(false);
- httpResponse.StatusCode = (int)HttpStatusCode.OK;
- return Util.UTF8.GetBytes(OSDParser.SerializeJsonString(resp));
- }
- }
- public class NeighbourPutHandler : BaseStreamHandler
- {
-
-
- public NeighbourPutHandler(INeighbourService service, IAuthenticationService authentication) :
- base("PUT", "/region")
- {
-
-
- }
- protected override byte[] ProcessRequest(string path, Stream request,
- IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
- {
-
- httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented;
- return new byte[] { };
- }
- }
- public class NeighbourDeleteHandler : BaseStreamHandler
- {
-
-
- public NeighbourDeleteHandler(INeighbourService service, IAuthenticationService authentication) :
- base("DELETE", "/region")
- {
-
-
- }
- protected override byte[] ProcessRequest(string path, Stream request,
- IOSHttpRequest httpRequest, IOSHttpResponse httpResponse)
- {
-
- httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented;
- return new byte[] { };
- }
- }
- }
|