diff options
Diffstat (limited to 'OpenSim/Server/Handlers/Neighbour')
-rw-r--r-- | OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs | 203 | ||||
-rw-r--r-- | OpenSim/Server/Handlers/Neighbour/NeighbourServiceInConnector.cs | 68 |
2 files changed, 271 insertions, 0 deletions
diff --git a/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs b/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs new file mode 100644 index 0000000..6336f4f --- /dev/null +++ b/OpenSim/Server/Handlers/Neighbour/NeighbourHandlers.cs | |||
@@ -0,0 +1,203 @@ | |||
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 | |||
28 | using System; | ||
29 | using System.IO; | ||
30 | using System.Reflection; | ||
31 | using System.Net; | ||
32 | using System.Text; | ||
33 | |||
34 | using OpenSim.Server.Base; | ||
35 | using OpenSim.Server.Handlers.Base; | ||
36 | using OpenSim.Services.Interfaces; | ||
37 | using OpenSim.Framework; | ||
38 | using OpenSim.Framework.Servers.HttpServer; | ||
39 | |||
40 | using OpenMetaverse; | ||
41 | using OpenMetaverse.StructuredData; | ||
42 | using Nini.Config; | ||
43 | using log4net; | ||
44 | |||
45 | |||
46 | namespace OpenSim.Server.Handlers.Neighbour | ||
47 | { | ||
48 | public class NeighbourGetHandler : BaseStreamHandler | ||
49 | { | ||
50 | // TODO: unused: private ISimulationService m_SimulationService; | ||
51 | // TODO: unused: private IAuthenticationService m_AuthenticationService; | ||
52 | |||
53 | public NeighbourGetHandler(INeighbourService service, IAuthenticationService authentication) : | ||
54 | base("GET", "/region") | ||
55 | { | ||
56 | // TODO: unused: m_SimulationService = service; | ||
57 | // TODO: unused: m_AuthenticationService = authentication; | ||
58 | } | ||
59 | |||
60 | public override byte[] Handle(string path, Stream request, | ||
61 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) | ||
62 | { | ||
63 | // Not implemented yet | ||
64 | Console.WriteLine("--- Get region --- " + path); | ||
65 | httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented; | ||
66 | return new byte[] { }; | ||
67 | } | ||
68 | } | ||
69 | |||
70 | public class NeighbourPostHandler : BaseStreamHandler | ||
71 | { | ||
72 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
73 | private INeighbourService m_NeighbourService; | ||
74 | private IAuthenticationService m_AuthenticationService; | ||
75 | // TODO: unused: private bool m_AllowForeignGuests; | ||
76 | |||
77 | public NeighbourPostHandler(INeighbourService service, IAuthenticationService authentication) : | ||
78 | base("POST", "/region") | ||
79 | { | ||
80 | m_NeighbourService = service; | ||
81 | m_AuthenticationService = authentication; | ||
82 | // TODO: unused: m_AllowForeignGuests = foreignGuests; | ||
83 | } | ||
84 | |||
85 | public override byte[] Handle(string path, Stream request, | ||
86 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) | ||
87 | { | ||
88 | byte[] result = new byte[0]; | ||
89 | |||
90 | UUID regionID; | ||
91 | string action; | ||
92 | ulong regionHandle; | ||
93 | if (RestHandlerUtils.GetParams(path, out regionID, out regionHandle, out action)) | ||
94 | { | ||
95 | m_log.InfoFormat("[RegionPostHandler]: Invalid parameters for neighbour message {0}", path); | ||
96 | httpResponse.StatusCode = (int)HttpStatusCode.BadRequest; | ||
97 | httpResponse.StatusDescription = "Invalid parameters for neighbour message " + path; | ||
98 | |||
99 | return result; | ||
100 | } | ||
101 | |||
102 | if (m_AuthenticationService != null) | ||
103 | { | ||
104 | // Authentication | ||
105 | string authority = string.Empty; | ||
106 | string authToken = string.Empty; | ||
107 | if (!RestHandlerUtils.GetAuthentication(httpRequest, out authority, out authToken)) | ||
108 | { | ||
109 | m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path); | ||
110 | httpResponse.StatusCode = (int)HttpStatusCode.Unauthorized; | ||
111 | return result; | ||
112 | } | ||
113 | if (!m_AuthenticationService.VerifyUserKey(regionID, authToken)) | ||
114 | { | ||
115 | m_log.InfoFormat("[RegionPostHandler]: Authentication failed for neighbour message {0}", path); | ||
116 | httpResponse.StatusCode = (int)HttpStatusCode.Forbidden; | ||
117 | return result; | ||
118 | } | ||
119 | m_log.DebugFormat("[RegionPostHandler]: Authentication succeeded for {0}", regionID); | ||
120 | } | ||
121 | |||
122 | OSDMap args = Util.GetOSDMap(request, (int)httpRequest.ContentLength); | ||
123 | if (args == null) | ||
124 | { | ||
125 | httpResponse.StatusCode = (int)HttpStatusCode.BadRequest; | ||
126 | httpResponse.StatusDescription = "Unable to retrieve data"; | ||
127 | m_log.DebugFormat("[RegionPostHandler]: Unable to retrieve data for post {0}", path); | ||
128 | return result; | ||
129 | } | ||
130 | |||
131 | // retrieve the regionhandle | ||
132 | ulong regionhandle = 0; | ||
133 | if (args["destination_handle"] != null) | ||
134 | UInt64.TryParse(args["destination_handle"].AsString(), out regionhandle); | ||
135 | |||
136 | RegionInfo aRegion = new RegionInfo(); | ||
137 | try | ||
138 | { | ||
139 | aRegion.UnpackRegionInfoData(args); | ||
140 | } | ||
141 | catch (Exception ex) | ||
142 | { | ||
143 | m_log.InfoFormat("[RegionPostHandler]: exception on unpacking region info {0}", ex.Message); | ||
144 | httpResponse.StatusCode = (int)HttpStatusCode.BadRequest; | ||
145 | httpResponse.StatusDescription = "Problems with data deserialization"; | ||
146 | return result; | ||
147 | } | ||
148 | |||
149 | // Finally! | ||
150 | bool success = m_NeighbourService.HelloNeighbour(regionhandle, aRegion); | ||
151 | |||
152 | OSDMap resp = new OSDMap(1); | ||
153 | |||
154 | resp["success"] = OSD.FromBoolean(success); | ||
155 | |||
156 | httpResponse.StatusCode = (int)HttpStatusCode.OK; | ||
157 | |||
158 | return Encoding.UTF8.GetBytes(OSDParser.SerializeJsonString(resp)); | ||
159 | } | ||
160 | } | ||
161 | |||
162 | public class NeighbourPutHandler : BaseStreamHandler | ||
163 | { | ||
164 | // TODO: unused: private ISimulationService m_SimulationService; | ||
165 | // TODO: unused: private IAuthenticationService m_AuthenticationService; | ||
166 | |||
167 | public NeighbourPutHandler(INeighbourService service, IAuthenticationService authentication) : | ||
168 | base("PUT", "/region") | ||
169 | { | ||
170 | // TODO: unused: m_SimulationService = service; | ||
171 | // TODO: unused: m_AuthenticationService = authentication; | ||
172 | } | ||
173 | |||
174 | public override byte[] Handle(string path, Stream request, | ||
175 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) | ||
176 | { | ||
177 | // Not implemented yet | ||
178 | httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented; | ||
179 | return new byte[] { }; | ||
180 | } | ||
181 | } | ||
182 | |||
183 | public class NeighbourDeleteHandler : BaseStreamHandler | ||
184 | { | ||
185 | // TODO: unused: private ISimulationService m_SimulationService; | ||
186 | // TODO: unused: private IAuthenticationService m_AuthenticationService; | ||
187 | |||
188 | public NeighbourDeleteHandler(INeighbourService service, IAuthenticationService authentication) : | ||
189 | base("DELETE", "/region") | ||
190 | { | ||
191 | // TODO: unused: m_SimulationService = service; | ||
192 | // TODO: unused: m_AuthenticationService = authentication; | ||
193 | } | ||
194 | |||
195 | public override byte[] Handle(string path, Stream request, | ||
196 | OSHttpRequest httpRequest, OSHttpResponse httpResponse) | ||
197 | { | ||
198 | // Not implemented yet | ||
199 | httpResponse.StatusCode = (int)HttpStatusCode.NotImplemented; | ||
200 | return new byte[] { }; | ||
201 | } | ||
202 | } | ||
203 | } | ||
diff --git a/OpenSim/Server/Handlers/Neighbour/NeighbourServiceInConnector.cs b/OpenSim/Server/Handlers/Neighbour/NeighbourServiceInConnector.cs new file mode 100644 index 0000000..a708b37 --- /dev/null +++ b/OpenSim/Server/Handlers/Neighbour/NeighbourServiceInConnector.cs | |||
@@ -0,0 +1,68 @@ | |||
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 | |||
28 | using System; | ||
29 | using System.Collections.Generic; | ||
30 | using System.Reflection; | ||
31 | using log4net; | ||
32 | using Nini.Config; | ||
33 | using OpenSim.Server.Base; | ||
34 | using OpenSim.Services.Interfaces; | ||
35 | using OpenSim.Framework; | ||
36 | using OpenSim.Framework.Servers.HttpServer; | ||
37 | using OpenSim.Server.Handlers.Base; | ||
38 | |||
39 | namespace OpenSim.Server.Handlers.Neighbour | ||
40 | { | ||
41 | public class NeighbourServiceInConnector : ServiceConnector | ||
42 | { | ||
43 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
44 | |||
45 | private INeighbourService m_NeighbourService; | ||
46 | private IAuthenticationService m_AuthenticationService = null; | ||
47 | |||
48 | public NeighbourServiceInConnector(IConfigSource source, IHttpServer server, INeighbourService nService, IScene scene) : | ||
49 | base(source, server) | ||
50 | { | ||
51 | |||
52 | m_NeighbourService = nService; | ||
53 | if (m_NeighbourService == null) | ||
54 | { | ||
55 | m_log.Error("[NEIGHBOUR IN CONNECTOR]: neighbour service was not provided"); | ||
56 | return; | ||
57 | } | ||
58 | |||
59 | //bool authentication = neighbourConfig.GetBoolean("RequireAuthentication", false); | ||
60 | //if (authentication) | ||
61 | // m_AuthenticationService = scene.RequestModuleInterface<IAuthenticationService>(); | ||
62 | |||
63 | |||
64 | server.AddStreamHandler(new NeighbourPostHandler(m_NeighbourService, m_AuthenticationService)); | ||
65 | server.AddStreamHandler(new NeighbourGetHandler(m_NeighbourService, m_AuthenticationService)); | ||
66 | } | ||
67 | } | ||
68 | } | ||