aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs')
-rw-r--r--OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs406
1 files changed, 203 insertions, 203 deletions
diff --git a/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs b/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs
index 6336f4f..83fa995 100644
--- a/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs
+++ b/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs
@@ -1,203 +1,203 @@
1/* 1/*
2 * Copyright (c) Contributors, http://opensimulator.org/ 2 * Copyright (c) Contributors, http://opensimulator.org/
3 * See CONTRIBUTORS.TXT for a full list of copyright holders. 3 * See CONTRIBUTORS.TXT for a full list of copyright holders.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright 7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright 9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the OpenSimulator Project nor the 12 * * Neither the name of the OpenSimulator Project nor the
13 * names of its contributors may be used to endorse or promote products 13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission. 14 * derived from this software without specific prior written permission.
15 * 15 *
16 * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY 16 * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19 * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY 19 * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 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 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 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 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. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28using System; 28using System;
29using System.IO; 29using System.IO;
30using System.Reflection; 30using System.Reflection;
31using System.Net; 31using System.Net;
32using System.Text; 32using System.Text;
33 33
34using OpenSim.Server.Base; 34using OpenSim.Server.Base;
35using OpenSim.Server.Handlers.Base; 35using OpenSim.Server.Handlers.Base;
36using OpenSim.Services.Interfaces; 36using OpenSim.Services.Interfaces;
37using OpenSim.Framework; 37using OpenSim.Framework;
38using OpenSim.Framework.Servers.HttpServer; 38using OpenSim.Framework.Servers.HttpServer;
39 39
40using OpenMetaverse; 40using OpenMetaverse;
41using OpenMetaverse.StructuredData; 41using OpenMetaverse.StructuredData;
42using Nini.Config; 42using Nini.Config;
43using log4net; 43using log4net;
44 44
45 45
46namespace OpenSim.Server.Handlers.Neighbour 46namespace OpenSim.Server.Handlers.Neighbour
47{ 47{
48 public class NeighbourGetHandler : BaseStreamHandler 48 public class NeighbourGetHandler : BaseStreamHandler
49 { 49 {
50 // TODO: unused: private ISimulationService m_SimulationService; 50 // TODO: unused: private ISimulationService m_SimulationService;
51 // TODO: unused: private IAuthenticationService m_AuthenticationService; 51 // TODO: unused: private IAuthenticationService m_AuthenticationService;
52 52
53 public NeighbourGetHandler(INeighbourService service, IAuthenticationService authentication) : 53 public NeighbourGetHandler(INeighbourService service, IAuthenticationService authentication) :
54 base("GET", "/region") 54 base("GET", "/region")
55 { 55 {
56 // TODO: unused: m_SimulationService = service; 56 // TODO: unused: m_SimulationService = service;
57 // TODO: unused: m_AuthenticationService = authentication; 57 // TODO: unused: m_AuthenticationService = authentication;
58 } 58 }
59 59
60 public override byte[] Handle(string path, Stream request, 60 public override byte[] Handle(string path, Stream request,
61 OSHttpRequest httpRequest, OSHttpResponse httpResponse) 61 OSHttpRequest httpRequest, OSHttpResponse httpResponse)
62 { 62 {
63 // Not implemented yet 63 // Not implemented yet
64 Console.WriteLine("--- Get region --- " + path); 64 Console.WriteLine("--- Get region --- " + path);
65 httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented; 65 httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented;
66 return new byte[] { }; 66 return new byte[] { };
67 } 67 }
68 } 68 }
69 69
70 public class NeighbourPostHandler : BaseStreamHandler 70 public class NeighbourPostHandler : BaseStreamHandler
71 { 71 {
72 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 72 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
73 private INeighbourService m_NeighbourService; 73 private INeighbourService m_NeighbourService;
74 private IAuthenticationService m_AuthenticationService; 74 private IAuthenticationService m_AuthenticationService;
75 // TODO: unused: private bool m_AllowForeignGuests; 75 // TODO: unused: private bool m_AllowForeignGuests;
76 76
77 public NeighbourPostHandler(INeighbourService service, IAuthenticationService authentication) : 77 public NeighbourPostHandler(INeighbourService service, IAuthenticationService authentication) :
78 base("POST", "/region") 78 base("POST", "/region")
79 { 79 {
80 m_NeighbourService = service; 80 m_NeighbourService = service;
81 m_AuthenticationService = authentication; 81 m_AuthenticationService = authentication;
82 // TODO: unused: m_AllowForeignGuests = foreignGuests; 82 // TODO: unused: m_AllowForeignGuests = foreignGuests;
83 } 83 }
84 84
85 public override byte[] Handle(string path, Stream request, 85 public override byte[] Handle(string path, Stream request,
86 OSHttpRequest httpRequest, OSHttpResponse httpResponse) 86 OSHttpRequest httpRequest, OSHttpResponse httpResponse)
87 { 87 {
88 byte[] result = new byte[0]; 88 byte[] result = new byte[0];
89 89
90 UUID regionID; 90 UUID regionID;
91 string action; 91 string action;
92 ulong regionHandle; 92 ulong regionHandle;
93 if (RestHandlerUtils.GetParams(path, out regionID, out regionHandle, out action)) 93 if (RestHandlerUtils.GetParams(path, out regionID, out regionHandle, out action))
94 { 94 {
95 m_log.InfoFormat("[RegionPostHandler]: Invalid parameters for neighbour message {0}", path); 95 m_log.InfoFormat("[RegionPostHandler]: Invalid parameters for neighbour message {0}", path);
96 httpResponse.StatusCode = (int)HttpStatusCode.BadRequest; 96 httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
97 httpResponse.StatusDescription = "Invalid parameters for neighbour message " + path; 97 httpResponse.StatusDescription = "Invalid parameters for neighbour message " + path;
98 98
99 return result; 99 return result;
100 } 100 }
101 101
102 if (m_AuthenticationService != null) 102 if (m_AuthenticationService != null)
103 { 103 {
104 // Authentication 104 // Authentication
105 string authority = string.Empty; 105 string authority = string.Empty;
106 string authToken = string.Empty; 106 string authToken = string.Empty;
107 if (!RestHandlerUtils.GetAuthentication(httpRequest, out authority, out authToken)) 107 if (!RestHandlerUtils.GetAuthentication(httpRequest, out authority, out authToken))
108 { 108 {
109 m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path); 109 m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path);
110 httpResponse.StatusCode = (int)HttpStatusCode.Unauthorized; 110 httpResponse.StatusCode = (int)HttpStatusCode.Unauthorized;
111 return result; 111 return result;
112 } 112 }
113 if (!m_AuthenticationService.VerifyUserKey(regionID, authToken)) 113 if (!m_AuthenticationService.VerifyUserKey(regionID, authToken))
114 { 114 {
115 m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path); 115 m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path);
116 httpResponse.StatusCode = (int)HttpStatusCode.Forbidden; 116 httpResponse.StatusCode = (int)HttpStatusCode.Forbidden;
117 return result; 117 return result;
118 } 118 }
119 m_log.DebugFormat("[RegionPostHandler]: Authentication succeeded for {0}", regionID); 119 m_log.DebugFormat("[RegionPostHandler]: Authentication succeeded for {0}", regionID);
120 } 120 }
121 121
122 OSDMap args = Util.GetOSDMap(request, (int)httpRequest.ContentLength); 122 OSDMap args = Util.GetOSDMap(request, (int)httpRequest.ContentLength);
123 if (args == null) 123 if (args == null)
124 { 124 {
125 httpResponse.StatusCode = (int)HttpStatusCode.BadRequest; 125 httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
126 httpResponse.StatusDescription = "Unable to retrieve data"; 126 httpResponse.StatusDescription = "Unable to retrieve data";
127 m_log.DebugFormat("[RegionPostHandler]: Unable to retrieve data for post {0}", path); 127 m_log.DebugFormat("[RegionPostHandler]: Unable to retrieve data for post {0}", path);
128 return result; 128 return result;
129 } 129 }
130 130
131 // retrieve the regionhandle 131 // retrieve the regionhandle
132 ulong regionhandle = 0; 132 ulong regionhandle = 0;
133 if (args["destination_handle"] != null) 133 if (args["destination_handle"] != null)
134 UInt64.TryParse(args["destination_handle"].AsString(), out regionhandle); 134 UInt64.TryParse(args["destination_handle"].AsString(), out regionhandle);
135 135
136 RegionInfo aRegion = new RegionInfo(); 136 RegionInfo aRegion = new RegionInfo();
137 try 137 try
138 { 138 {
139 aRegion.UnpackRegionInfoData(args); 139 aRegion.UnpackRegionInfoData(args);
140 } 140 }
141 catch (Exception ex) 141 catch (Exception ex)
142 { 142 {
143 m_log.InfoFormat("[RegionPostHandler]: exception on unpacking region info {0}", ex.Message); 143 m_log.InfoFormat("[RegionPostHandler]: exception on unpacking region info {0}", ex.Message);
144 httpResponse.StatusCode = (int)HttpStatusCode.BadRequest; 144 httpResponse.StatusCode = (int)HttpStatusCode.BadRequest;
145 httpResponse.StatusDescription = "Problems with data deserialization"; 145 httpResponse.StatusDescription = "Problems with data deserialization";
146 return result; 146 return result;
147 } 147 }
148 148
149 // Finally! 149 // Finally!
150 bool success = m_NeighbourService.HelloNeighbour(regionhandle, aRegion); 150 bool success = m_NeighbourService.HelloNeighbour(regionhandle, aRegion);
151 151
152 OSDMap resp = new OSDMap(1); 152 OSDMap resp = new OSDMap(1);
153 153
154 resp["success"] = OSD.FromBoolean(success); 154 resp["success"] = OSD.FromBoolean(success);
155 155
156 httpResponse.StatusCode = (int)HttpStatusCode.OK; 156 httpResponse.StatusCode = (int)HttpStatusCode.OK;
157 157
158 return Encoding.UTF8.GetBytes(OSDParser.SerializeJsonString(resp)); 158 return Encoding.UTF8.GetBytes(OSDParser.SerializeJsonString(resp));
159 } 159 }
160 } 160 }
161 161
162 public class NeighbourPutHandler : BaseStreamHandler 162 public class NeighbourPutHandler : BaseStreamHandler
163 { 163 {
164 // TODO: unused: private ISimulationService m_SimulationService; 164 // TODO: unused: private ISimulationService m_SimulationService;
165 // TODO: unused: private IAuthenticationService m_AuthenticationService; 165 // TODO: unused: private IAuthenticationService m_AuthenticationService;
166 166
167 public NeighbourPutHandler(INeighbourService service, IAuthenticationService authentication) : 167 public NeighbourPutHandler(INeighbourService service, IAuthenticationService authentication) :
168 base("PUT", "/region") 168 base("PUT", "/region")
169 { 169 {
170 // TODO: unused: m_SimulationService = service; 170 // TODO: unused: m_SimulationService = service;
171 // TODO: unused: m_AuthenticationService = authentication; 171 // TODO: unused: m_AuthenticationService = authentication;
172 } 172 }
173 173
174 public override byte[] Handle(string path, Stream request, 174 public override byte[] Handle(string path, Stream request,
175 OSHttpRequest httpRequest, OSHttpResponse httpResponse) 175 OSHttpRequest httpRequest, OSHttpResponse httpResponse)
176 { 176 {
177 // Not implemented yet 177 // Not implemented yet
178 httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented; 178 httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented;
179 return new byte[] { }; 179 return new byte[] { };
180 } 180 }
181 } 181 }
182 182
183 public class NeighbourDeleteHandler : BaseStreamHandler 183 public class NeighbourDeleteHandler : BaseStreamHandler
184 { 184 {
185 // TODO: unused: private ISimulationService m_SimulationService; 185 // TODO: unused: private ISimulationService m_SimulationService;
186 // TODO: unused: private IAuthenticationService m_AuthenticationService; 186 // TODO: unused: private IAuthenticationService m_AuthenticationService;
187 187
188 public NeighbourDeleteHandler(INeighbourService service, IAuthenticationService authentication) : 188 public NeighbourDeleteHandler(INeighbourService service, IAuthenticationService authentication) :
189 base("DELETE", "/region") 189 base("DELETE", "/region")
190 { 190 {
191 // TODO: unused: m_SimulationService = service; 191 // TODO: unused: m_SimulationService = service;
192 // TODO: unused: m_AuthenticationService = authentication; 192 // TODO: unused: m_AuthenticationService = authentication;
193 } 193 }
194 194
195 public override byte[] Handle(string path, Stream request, 195 public override byte[] Handle(string path, Stream request,
196 OSHttpRequest httpRequest, OSHttpResponse httpResponse) 196 OSHttpRequest httpRequest, OSHttpResponse httpResponse)
197 { 197 {
198 // Not implemented yet 198 // Not implemented yet
199 httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented; 199 httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented;
200 return new byte[] { }; 200 return new byte[] { };
201 } 201 }
202 } 202 }
203} 203}