diff options
author | Diva Canto | 2011-04-30 12:23:40 -0700 |
---|---|---|
committer | Diva Canto | 2011-04-30 12:23:40 -0700 |
commit | c062138dad42ef7e52bbcb27c346ddecab94c5af (patch) | |
tree | edff2328b4190e464edeaaebe77c7949b31c5ec1 /OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs | |
parent | Renamed OpenSim.Framework.Capabilities.dll to OpenSim.Capabilities.dll (diff) | |
download | opensim-SC-c062138dad42ef7e52bbcb27c346ddecab94c5af.zip opensim-SC-c062138dad42ef7e52bbcb27c346ddecab94c5af.tar.gz opensim-SC-c062138dad42ef7e52bbcb27c346ddecab94c5af.tar.bz2 opensim-SC-c062138dad42ef7e52bbcb27c346ddecab94c5af.tar.xz |
Moved several cap-based-service-providing modules from where they were into a newly created CoreModules/Caps. Not all.
Diffstat (limited to 'OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs')
-rw-r--r-- | OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs | 374 |
1 files changed, 374 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs b/OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs new file mode 100644 index 0000000..33bffeb --- /dev/null +++ b/OpenSim/Region/CoreModules/Caps/ObjectCaps/UploadObjectAssetModule.cs | |||
@@ -0,0 +1,374 @@ | |||
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; | ||
30 | using System.Collections.Specialized; | ||
31 | using System.Reflection; | ||
32 | using System.IO; | ||
33 | using System.Web; | ||
34 | using Mono.Addins; | ||
35 | using log4net; | ||
36 | using Nini.Config; | ||
37 | using OpenMetaverse; | ||
38 | using OpenMetaverse.StructuredData; | ||
39 | using OpenMetaverse.Messages.Linden; | ||
40 | using OpenSim.Framework; | ||
41 | using OpenSim.Framework.Servers; | ||
42 | using OpenSim.Framework.Servers.HttpServer; | ||
43 | using OpenSim.Region.Framework.Interfaces; | ||
44 | using OpenSim.Region.Framework.Scenes; | ||
45 | using OpenSim.Services.Interfaces; | ||
46 | using Caps = OpenSim.Framework.Capabilities.Caps; | ||
47 | using OSD = OpenMetaverse.StructuredData.OSD; | ||
48 | using OSDMap = OpenMetaverse.StructuredData.OSDMap; | ||
49 | using OpenSim.Framework.Capabilities; | ||
50 | using ExtraParamType = OpenMetaverse.ExtraParamType; | ||
51 | |||
52 | namespace OpenSim.Region.CoreModules.Capabilities | ||
53 | { | ||
54 | [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")] | ||
55 | public class UploadObjectAssetModule : INonSharedRegionModule | ||
56 | { | ||
57 | private static readonly ILog m_log = | ||
58 | LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
59 | private Scene m_scene; | ||
60 | |||
61 | #region IRegionModuleBase Members | ||
62 | |||
63 | |||
64 | public Type ReplaceableInterface | ||
65 | { | ||
66 | get { return null; } | ||
67 | } | ||
68 | |||
69 | public void Initialise(IConfigSource source) | ||
70 | { | ||
71 | |||
72 | } | ||
73 | |||
74 | public void AddRegion(Scene pScene) | ||
75 | { | ||
76 | m_scene = pScene; | ||
77 | } | ||
78 | |||
79 | public void RemoveRegion(Scene scene) | ||
80 | { | ||
81 | |||
82 | m_scene.EventManager.OnRegisterCaps -= RegisterCaps; | ||
83 | m_scene = null; | ||
84 | } | ||
85 | |||
86 | public void RegionLoaded(Scene scene) | ||
87 | { | ||
88 | |||
89 | m_scene.EventManager.OnRegisterCaps += RegisterCaps; | ||
90 | } | ||
91 | |||
92 | #endregion | ||
93 | |||
94 | |||
95 | #region IRegionModule Members | ||
96 | |||
97 | |||
98 | |||
99 | public void Close() { } | ||
100 | |||
101 | public string Name { get { return "UploadObjectAssetModuleModule"; } } | ||
102 | |||
103 | |||
104 | public void RegisterCaps(UUID agentID, Caps caps) | ||
105 | { | ||
106 | UUID capID = UUID.Random(); | ||
107 | |||
108 | // m_log.Debug("[UPLOAD OBJECT ASSET MODULE]: /CAPS/" + capID); | ||
109 | caps.RegisterHandler("UploadObjectAsset", | ||
110 | new RestHTTPHandler("POST", "/CAPS/OA/" + capID + "/", | ||
111 | delegate(Hashtable m_dhttpMethod) | ||
112 | { | ||
113 | return ProcessAdd(m_dhttpMethod, agentID, caps); | ||
114 | })); | ||
115 | /* | ||
116 | caps.RegisterHandler("NewFileAgentInventoryVariablePrice", | ||
117 | |||
118 | new LLSDStreamhandler<LLSDAssetUploadRequest, LLSDNewFileAngentInventoryVariablePriceReplyResponse>("POST", | ||
119 | "/CAPS/" + capID.ToString(), | ||
120 | delegate(LLSDAssetUploadRequest req) | ||
121 | { | ||
122 | return NewAgentInventoryRequest(req,agentID); | ||
123 | })); | ||
124 | */ | ||
125 | |||
126 | } | ||
127 | |||
128 | #endregion | ||
129 | |||
130 | |||
131 | /// <summary> | ||
132 | /// Parses ad request | ||
133 | /// </summary> | ||
134 | /// <param name="request"></param> | ||
135 | /// <param name="AgentId"></param> | ||
136 | /// <param name="cap"></param> | ||
137 | /// <returns></returns> | ||
138 | public Hashtable ProcessAdd(Hashtable request, UUID AgentId, Caps cap) | ||
139 | { | ||
140 | Hashtable responsedata = new Hashtable(); | ||
141 | responsedata["int_response_code"] = 400; //501; //410; //404; | ||
142 | responsedata["content_type"] = "text/plain"; | ||
143 | responsedata["keepalive"] = false; | ||
144 | responsedata["str_response_string"] = "Request wasn't what was expected"; | ||
145 | ScenePresence avatar; | ||
146 | |||
147 | if (!m_scene.TryGetScenePresence(AgentId, out avatar)) | ||
148 | return responsedata; | ||
149 | |||
150 | OSDMap r = (OSDMap)OSDParser.Deserialize((string)request["requestbody"]); | ||
151 | UploadObjectAssetMessage message = new UploadObjectAssetMessage(); | ||
152 | try | ||
153 | { | ||
154 | message.Deserialize(r); | ||
155 | |||
156 | } | ||
157 | catch (Exception ex) | ||
158 | { | ||
159 | m_log.Error("[UPLOAD OBJECT ASSET MODULE]: Error deserializing message " + ex.ToString()); | ||
160 | message = null; | ||
161 | } | ||
162 | |||
163 | if (message == null) | ||
164 | { | ||
165 | responsedata["int_response_code"] = 400; //501; //410; //404; | ||
166 | responsedata["content_type"] = "text/plain"; | ||
167 | responsedata["keepalive"] = false; | ||
168 | responsedata["str_response_string"] = | ||
169 | "<llsd><map><key>error</key><string>Error parsing Object</string></map></llsd>"; | ||
170 | |||
171 | return responsedata; | ||
172 | } | ||
173 | |||
174 | Vector3 pos = avatar.AbsolutePosition + (Vector3.UnitX * avatar.Rotation); | ||
175 | Quaternion rot = Quaternion.Identity; | ||
176 | Vector3 rootpos = Vector3.Zero; | ||
177 | // Quaternion rootrot = Quaternion.Identity; | ||
178 | |||
179 | SceneObjectGroup rootGroup = null; | ||
180 | SceneObjectGroup[] allparts = new SceneObjectGroup[message.Objects.Length]; | ||
181 | for (int i = 0; i < message.Objects.Length; i++) | ||
182 | { | ||
183 | UploadObjectAssetMessage.Object obj = message.Objects[i]; | ||
184 | PrimitiveBaseShape pbs = PrimitiveBaseShape.CreateBox(); | ||
185 | |||
186 | if (i == 0) | ||
187 | { | ||
188 | rootpos = obj.Position; | ||
189 | // rootrot = obj.Rotation; | ||
190 | } | ||
191 | |||
192 | // Combine the extraparams data into it's ugly blob again.... | ||
193 | //int bytelength = 0; | ||
194 | //for (int extparams = 0; extparams < obj.ExtraParams.Length; extparams++) | ||
195 | //{ | ||
196 | // bytelength += obj.ExtraParams[extparams].ExtraParamData.Length; | ||
197 | //} | ||
198 | //byte[] extraparams = new byte[bytelength]; | ||
199 | //int position = 0; | ||
200 | |||
201 | |||
202 | |||
203 | //for (int extparams = 0; extparams < obj.ExtraParams.Length; extparams++) | ||
204 | //{ | ||
205 | // Buffer.BlockCopy(obj.ExtraParams[extparams].ExtraParamData, 0, extraparams, position, | ||
206 | // obj.ExtraParams[extparams].ExtraParamData.Length); | ||
207 | // | ||
208 | // position += obj.ExtraParams[extparams].ExtraParamData.Length; | ||
209 | // } | ||
210 | |||
211 | //pbs.ExtraParams = extraparams; | ||
212 | for (int extparams = 0; extparams < obj.ExtraParams.Length; extparams++) | ||
213 | { | ||
214 | UploadObjectAssetMessage.Object.ExtraParam extraParam = obj.ExtraParams[extparams]; | ||
215 | switch ((ushort)extraParam.Type) | ||
216 | { | ||
217 | case (ushort)ExtraParamType.Sculpt: | ||
218 | Primitive.SculptData sculpt = new Primitive.SculptData(extraParam.ExtraParamData, 0); | ||
219 | |||
220 | pbs.SculptEntry = true; | ||
221 | |||
222 | pbs.SculptTexture = obj.SculptID; | ||
223 | pbs.SculptType = (byte)sculpt.Type; | ||
224 | |||
225 | break; | ||
226 | case (ushort)ExtraParamType.Flexible: | ||
227 | Primitive.FlexibleData flex = new Primitive.FlexibleData(extraParam.ExtraParamData, 0); | ||
228 | pbs.FlexiEntry = true; | ||
229 | pbs.FlexiDrag = flex.Drag; | ||
230 | pbs.FlexiForceX = flex.Force.X; | ||
231 | pbs.FlexiForceY = flex.Force.Y; | ||
232 | pbs.FlexiForceZ = flex.Force.Z; | ||
233 | pbs.FlexiGravity = flex.Gravity; | ||
234 | pbs.FlexiSoftness = flex.Softness; | ||
235 | pbs.FlexiTension = flex.Tension; | ||
236 | pbs.FlexiWind = flex.Wind; | ||
237 | break; | ||
238 | case (ushort)ExtraParamType.Light: | ||
239 | Primitive.LightData light = new Primitive.LightData(extraParam.ExtraParamData, 0); | ||
240 | pbs.LightColorA = light.Color.A; | ||
241 | pbs.LightColorB = light.Color.B; | ||
242 | pbs.LightColorG = light.Color.G; | ||
243 | pbs.LightColorR = light.Color.R; | ||
244 | pbs.LightCutoff = light.Cutoff; | ||
245 | pbs.LightEntry = true; | ||
246 | pbs.LightFalloff = light.Falloff; | ||
247 | pbs.LightIntensity = light.Intensity; | ||
248 | pbs.LightRadius = light.Radius; | ||
249 | break; | ||
250 | case 0x40: | ||
251 | pbs.ReadProjectionData(extraParam.ExtraParamData, 0); | ||
252 | break; | ||
253 | |||
254 | } | ||
255 | |||
256 | |||
257 | } | ||
258 | pbs.PathBegin = (ushort) obj.PathBegin; | ||
259 | pbs.PathCurve = (byte) obj.PathCurve; | ||
260 | pbs.PathEnd = (ushort) obj.PathEnd; | ||
261 | pbs.PathRadiusOffset = (sbyte) obj.RadiusOffset; | ||
262 | pbs.PathRevolutions = (byte) obj.Revolutions; | ||
263 | pbs.PathScaleX = (byte) obj.ScaleX; | ||
264 | pbs.PathScaleY = (byte) obj.ScaleY; | ||
265 | pbs.PathShearX = (byte) obj.ShearX; | ||
266 | pbs.PathShearY = (byte) obj.ShearY; | ||
267 | pbs.PathSkew = (sbyte) obj.Skew; | ||
268 | pbs.PathTaperX = (sbyte) obj.TaperX; | ||
269 | pbs.PathTaperY = (sbyte) obj.TaperY; | ||
270 | pbs.PathTwist = (sbyte) obj.Twist; | ||
271 | pbs.PathTwistBegin = (sbyte) obj.TwistBegin; | ||
272 | pbs.HollowShape = (HollowShape) obj.ProfileHollow; | ||
273 | pbs.PCode = (byte) PCode.Prim; | ||
274 | pbs.ProfileBegin = (ushort) obj.ProfileBegin; | ||
275 | pbs.ProfileCurve = (byte) obj.ProfileCurve; | ||
276 | pbs.ProfileEnd = (ushort) obj.ProfileEnd; | ||
277 | pbs.Scale = obj.Scale; | ||
278 | pbs.State = (byte) 0; | ||
279 | SceneObjectPart prim = new SceneObjectPart(); | ||
280 | prim.UUID = UUID.Random(); | ||
281 | prim.CreatorID = AgentId; | ||
282 | prim.OwnerID = AgentId; | ||
283 | prim.GroupID = obj.GroupID; | ||
284 | prim.LastOwnerID = prim.OwnerID; | ||
285 | prim.CreationDate = Util.UnixTimeSinceEpoch(); | ||
286 | prim.Name = obj.Name; | ||
287 | prim.Description = ""; | ||
288 | |||
289 | prim.PayPrice[0] = -2; | ||
290 | prim.PayPrice[1] = -2; | ||
291 | prim.PayPrice[2] = -2; | ||
292 | prim.PayPrice[3] = -2; | ||
293 | prim.PayPrice[4] = -2; | ||
294 | Primitive.TextureEntry tmp = | ||
295 | new Primitive.TextureEntry(UUID.Parse("89556747-24cb-43ed-920b-47caed15465f")); | ||
296 | |||
297 | for (int j = 0; j < obj.Faces.Length; j++) | ||
298 | { | ||
299 | UploadObjectAssetMessage.Object.Face face = obj.Faces[j]; | ||
300 | |||
301 | Primitive.TextureEntryFace primFace = tmp.CreateFace((uint) j); | ||
302 | |||
303 | primFace.Bump = face.Bump; | ||
304 | primFace.RGBA = face.Color; | ||
305 | primFace.Fullbright = face.Fullbright; | ||
306 | primFace.Glow = face.Glow; | ||
307 | primFace.TextureID = face.ImageID; | ||
308 | primFace.Rotation = face.ImageRot; | ||
309 | primFace.MediaFlags = ((face.MediaFlags & 1) != 0); | ||
310 | |||
311 | primFace.OffsetU = face.OffsetS; | ||
312 | primFace.OffsetV = face.OffsetT; | ||
313 | primFace.RepeatU = face.ScaleS; | ||
314 | primFace.RepeatV = face.ScaleT; | ||
315 | primFace.TexMapType = (MappingType) (face.MediaFlags & 6); | ||
316 | } | ||
317 | pbs.TextureEntry = tmp.GetBytes(); | ||
318 | prim.Shape = pbs; | ||
319 | prim.Scale = obj.Scale; | ||
320 | |||
321 | |||
322 | SceneObjectGroup grp = new SceneObjectGroup(); | ||
323 | |||
324 | grp.SetRootPart(prim); | ||
325 | prim.ParentID = 0; | ||
326 | if (i == 0) | ||
327 | { | ||
328 | rootGroup = grp; | ||
329 | |||
330 | } | ||
331 | grp.AttachToScene(m_scene); | ||
332 | grp.AbsolutePosition = obj.Position; | ||
333 | prim.RotationOffset = obj.Rotation; | ||
334 | |||
335 | grp.RootPart.IsAttachment = false; | ||
336 | // Required for linking | ||
337 | grp.RootPart.UpdateFlag = 0; | ||
338 | |||
339 | if (m_scene.Permissions.CanRezObject(1, avatar.UUID, pos)) | ||
340 | { | ||
341 | m_scene.AddSceneObject(grp); | ||
342 | grp.AbsolutePosition = obj.Position; | ||
343 | } | ||
344 | allparts[i] = grp; | ||
345 | |||
346 | } | ||
347 | |||
348 | for (int j = 1; j < allparts.Length; j++) | ||
349 | { | ||
350 | rootGroup.RootPart.UpdateFlag = 0; | ||
351 | allparts[j].RootPart.UpdateFlag = 0; | ||
352 | rootGroup.LinkToGroup(allparts[j]); | ||
353 | } | ||
354 | |||
355 | rootGroup.ScheduleGroupForFullUpdate(); | ||
356 | pos = m_scene.GetNewRezLocation(Vector3.Zero, rootpos, UUID.Zero, rot, (byte)1, 1, true, allparts[0].GroupScale(), false); | ||
357 | |||
358 | responsedata["int_response_code"] = 200; //501; //410; //404; | ||
359 | responsedata["content_type"] = "text/plain"; | ||
360 | responsedata["keepalive"] = false; | ||
361 | responsedata["str_response_string"] = String.Format("<llsd><map><key>local_id</key>{0}</map></llsd>", ConvertUintToBytes(allparts[0].LocalId)); | ||
362 | |||
363 | return responsedata; | ||
364 | } | ||
365 | |||
366 | private string ConvertUintToBytes(uint val) | ||
367 | { | ||
368 | byte[] resultbytes = Utils.UIntToBytes(val); | ||
369 | if (BitConverter.IsLittleEndian) | ||
370 | Array.Reverse(resultbytes); | ||
371 | return String.Format("<binary encoding=\"base64\">{0}</binary>", Convert.ToBase64String(resultbytes)); | ||
372 | } | ||
373 | } | ||
374 | } \ No newline at end of file | ||