aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
diff options
context:
space:
mode:
authorTeravus Ovares (Dan Olivares)2010-10-14 03:22:14 -0400
committerTeravus Ovares (Dan Olivares)2010-10-14 03:22:44 -0400
commitb4a5ce148cf209b1bc0a1ca302275f44abf1040f (patch)
tree1f342a3cbff3be457520dd9f879cf372f0683609 /OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
parent* Partially complete stuff for Mesh support that Melanie wanted to see before... (diff)
downloadopensim-SC_OLD-b4a5ce148cf209b1bc0a1ca302275f44abf1040f.zip
opensim-SC_OLD-b4a5ce148cf209b1bc0a1ca302275f44abf1040f.tar.gz
opensim-SC_OLD-b4a5ce148cf209b1bc0a1ca302275f44abf1040f.tar.bz2
opensim-SC_OLD-b4a5ce148cf209b1bc0a1ca302275f44abf1040f.tar.xz
Rename file + more testing and tweaking
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs256
1 files changed, 256 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs b/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
new file mode 100644
index 0000000..0bba7d4
--- /dev/null
+++ b/OpenSim/Region/CoreModules/Avatar/Assets/NewFileAgentInventoryVariablePriceModule.cs
@@ -0,0 +1,256 @@
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
28using System;
29using System.Collections;
30using System.Collections.Specialized;
31using System.Reflection;
32using System.IO;
33using System.Web;
34using Mono.Addins;
35using log4net;
36using Nini.Config;
37using OpenMetaverse;
38using OpenMetaverse.StructuredData;
39using OpenSim.Framework;
40using OpenSim.Framework.Servers;
41using OpenSim.Framework.Servers.HttpServer;
42using OpenSim.Region.Framework.Interfaces;
43using OpenSim.Region.Framework.Scenes;
44using OpenSim.Services.Interfaces;
45using Caps = OpenSim.Framework.Capabilities.Caps;
46using OpenSim.Framework.Capabilities;
47
48namespace OpenSim.Region.CoreModules.Avatar.Assets
49{
50 [Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule")]
51 public class NewFileAgentInventoryVariablePriceModule : INonSharedRegionModule
52 {
53 private static readonly ILog m_log =
54 LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
55 private Scene m_scene;
56 private IAssetService m_assetService;
57 private bool m_dumpAssetsToFile = false;
58
59 #region IRegionModuleBase Members
60
61
62 public Type ReplaceableInterface
63 {
64 get { return null; }
65 }
66
67 public void Initialise(IConfigSource source)
68 {
69
70 }
71
72 public void AddRegion(Scene pScene)
73 {
74 m_scene = pScene;
75 }
76
77 public void RemoveRegion(Scene scene)
78 {
79
80 m_scene.EventManager.OnRegisterCaps -= RegisterCaps;
81 m_scene = null;
82 }
83
84 public void RegionLoaded(Scene scene)
85 {
86
87 m_assetService = m_scene.RequestModuleInterface<IAssetService>();
88 m_scene.EventManager.OnRegisterCaps += RegisterCaps;
89 }
90
91 #endregion
92
93
94 #region IRegionModule Members
95
96
97
98 public void Close() { }
99
100 public string Name { get { return "NewFileAgentInventoryVariablePriceModule"; } }
101
102
103 public void RegisterCaps(UUID agentID, Caps caps)
104 {
105 UUID capID = UUID.Random();
106
107 m_log.Info("[GETMESH]: /CAPS/" + capID);
108 caps.RegisterHandler("NewFileAgentInventoryVariablePrice",
109
110 new LLSDStreamhandler<LLSDAssetUploadRequest, LLSDAssetUploadResponse>("POST",
111 "/CAPS/" + capID.ToString(),
112 delegate(LLSDAssetUploadRequest req)
113 {
114 return NewAgentInventoryRequest(req,agentID);
115 }));
116
117 }
118
119 #endregion
120
121 public LLSDAssetUploadResponse NewAgentInventoryRequest(LLSDAssetUploadRequest llsdRequest, UUID agentID)
122 {
123 //if (llsdRequest.asset_type == "texture" ||
124 // llsdRequest.asset_type == "animation" ||
125 // llsdRequest.asset_type == "sound")
126 // {
127 IClientAPI client = null;
128
129
130 IMoneyModule mm = m_scene.RequestModuleInterface<IMoneyModule>();
131
132 if (mm != null)
133 {
134 if (m_scene.TryGetClient(agentID, out client))
135 {
136 if (!mm.UploadCovered(client, mm.UploadCharge))
137 {
138 if (client != null)
139 client.SendAgentAlertMessage("Unable to upload asset. Insufficient funds.", false);
140
141 LLSDAssetUploadResponse errorResponse = new LLSDAssetUploadResponse();
142 errorResponse.uploader = "";
143 errorResponse.state = "error";
144 return errorResponse;
145 }
146 }
147 }
148 // }
149
150
151
152 string assetName = llsdRequest.name;
153 string assetDes = llsdRequest.description;
154 string capsBase = "/CAPS/NewFileAgentInventoryVariablePrice/";
155 UUID newAsset = UUID.Random();
156 UUID newInvItem = UUID.Random();
157 UUID parentFolder = llsdRequest.folder_id;
158 string uploaderPath = Util.RandomClass.Next(5000, 8000).ToString("0000") + "/";
159
160 Caps.AssetUploader uploader =
161 new Caps.AssetUploader(assetName, assetDes, newAsset, newInvItem, parentFolder, llsdRequest.inventory_type,
162 llsdRequest.asset_type, capsBase + uploaderPath, MainServer.Instance, m_dumpAssetsToFile);
163 MainServer.Instance.AddStreamHandler(
164 new BinaryStreamHandler("POST", capsBase + uploaderPath, uploader.uploaderCaps));
165
166 string protocol = "http://";
167
168 if (MainServer.Instance.UseSSL)
169 protocol = "https://";
170
171 string uploaderURL = protocol + m_scene.RegionInfo.ExternalHostName + ":" + MainServer.Instance.Port.ToString() + capsBase +
172 uploaderPath;
173
174 LLSDAssetUploadResponse uploadResponse = new LLSDAssetUploadResponse();
175 uploadResponse.uploader = uploaderURL;
176 uploadResponse.state = "upload";
177
178 uploader.OnUpLoad += UploadCompleteHandler;
179
180 /*delegate(
181 string passetName, string passetDescription, UUID passetID,
182 UUID pinventoryItem, UUID pparentFolder, byte[] pdata, string pinventoryType,
183 string passetType)
184 {
185 UploadCompleteHandler(passetName, passetDescription, passetID,
186 pinventoryItem, pparentFolder, pdata, pinventoryType,
187 passetType,agentID);
188 };*/
189 return uploadResponse;
190 }
191
192
193 public void UploadCompleteHandler(string assetName, string assetDescription, UUID assetID,
194 UUID inventoryItem, UUID parentFolder, byte[] data, string inventoryType,
195 string assetType)
196 {
197 UUID AgentID = UUID.Zero;
198 sbyte assType = 0;
199 sbyte inType = 0;
200
201 if (inventoryType == "sound")
202 {
203 inType = 1;
204 assType = 1;
205 }
206 else if (inventoryType == "animation")
207 {
208 inType = 19;
209 assType = 20;
210 }
211 else if (inventoryType == "wearable")
212 {
213 inType = 18;
214 switch (assetType)
215 {
216 case "bodypart":
217 assType = 13;
218 break;
219 case "clothing":
220 assType = 5;
221 break;
222 }
223 }
224 else if (inventoryType == "mesh")
225 {
226 inType = 45; // TODO: Replace with appropriate type
227 assType = 45;// TODO: Replace with appropriate type
228 }
229
230 AssetBase asset;
231 asset = new AssetBase(assetID, assetName, assType, AgentID.ToString());
232 asset.Data = data;
233
234 if (m_scene.AssetService != null)
235 m_scene.AssetService.Store(asset);
236
237 InventoryItemBase item = new InventoryItemBase();
238 item.Owner = AgentID;
239 item.CreatorId = AgentID.ToString();
240 item.ID = inventoryItem;
241 item.AssetID = asset.FullID;
242 item.Description = assetDescription;
243 item.Name = assetName;
244 item.AssetType = assType;
245 item.InvType = inType;
246 item.Folder = parentFolder;
247 item.CurrentPermissions = 2147483647;
248 item.BasePermissions = 2147483647;
249 item.EveryOnePermissions = 0;
250 item.NextPermissions = 2147483647;
251 item.CreationDate = Util.UnixTimeSinceEpoch();
252 m_scene.AddInventoryItem(item);
253
254 }
255 }
256}