aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications/OGS1/OGS1SecureInventoryService.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-07-24 15:27:21 +0000
committerJustin Clarke Casey2008-07-24 15:27:21 +0000
commite5e1666c8467f1b2375367150288832648ee8682 (patch)
tree01cd10fde2e890cabb8b1b4ed49afb4914730a1b /OpenSim/Region/Communications/OGS1/OGS1SecureInventoryService.cs
parent* minor: Rename IInterGridInventoryServices since it's inter service rather t... (diff)
downloadopensim-SC_OLD-e5e1666c8467f1b2375367150288832648ee8682.zip
opensim-SC_OLD-e5e1666c8467f1b2375367150288832648ee8682.tar.gz
opensim-SC_OLD-e5e1666c8467f1b2375367150288832648ee8682.tar.bz2
opensim-SC_OLD-e5e1666c8467f1b2375367150288832648ee8682.tar.xz
* Fix spelling mistake in OGS1SecureInvenotryService
Diffstat (limited to 'OpenSim/Region/Communications/OGS1/OGS1SecureInventoryService.cs')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1SecureInventoryService.cs324
1 files changed, 324 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1SecureInventoryService.cs b/OpenSim/Region/Communications/OGS1/OGS1SecureInventoryService.cs
new file mode 100644
index 0000000..bb94c20
--- /dev/null
+++ b/OpenSim/Region/Communications/OGS1/OGS1SecureInventoryService.cs
@@ -0,0 +1,324 @@
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 OpenSim 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.Generic;
30using System.Net;
31using System.Reflection;
32using libsecondlife;
33using log4net;
34using OpenSim.Framework;
35using OpenSim.Framework.Communications;
36using OpenSim.Framework.Communications.Cache;
37using OpenSim.Framework.Servers;
38using OpenSim.Framework.Statistics;
39
40namespace OpenSim.Region.Communications.OGS1
41{
42 public class OGS1SecureInventoryService : ISecureInventoryService, IInterServiceInventoryServices
43 {
44 private static readonly ILog m_log
45 = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
46
47 private string _inventoryServerUrl;
48 private Uri m_Uri;
49 private Dictionary<LLUUID, InventoryReceiptCallback> m_RequestingInventory
50 = new Dictionary<LLUUID, InventoryReceiptCallback>();
51
52 public OGS1SecureInventoryService(string inventoryServerUrl)
53 {
54 _inventoryServerUrl = inventoryServerUrl;
55 m_Uri = new Uri(_inventoryServerUrl);
56 }
57
58 #region IInventoryServices Members
59
60 public string Host
61 {
62 get { return m_Uri.Host; }
63 }
64
65 /// <summary>
66 /// <see cref="OpenSim.Framework.Communications.IInventoryServices"></see>
67 /// </summary>
68 /// <param name="userID"></param>
69 /// <param name="callback"></param>
70 public void RequestInventoryForUser(LLUUID userID, LLUUID session_id, InventoryReceiptCallback callback)
71 {
72 if (!m_RequestingInventory.ContainsKey(userID))
73 {
74 m_RequestingInventory.Add(userID, callback);
75
76 try
77 {
78 m_log.InfoFormat(
79 "[OGS1 INVENTORY SERVICE]: Requesting inventory from {0}/GetInventory/ for user {1}",
80 _inventoryServerUrl, userID);
81
82 RestSessionObjectPosterResponse<Guid, InventoryCollection> requester
83 = new RestSessionObjectPosterResponse<Guid, InventoryCollection>();
84 requester.ResponseCallback = InventoryResponse;
85
86 requester.BeginPostObject(_inventoryServerUrl + "/GetInventory/", userID.UUID, session_id.ToString(), userID.ToString());
87 }
88 catch (WebException e)
89 {
90 if (StatsManager.SimExtraStats != null)
91 StatsManager.SimExtraStats.AddInventoryServiceRetrievalFailure();
92
93 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Request inventory operation failed, {0} {1}",
94 e.Source, e.Message);
95 }
96 }
97 else
98 {
99 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: RequestInventoryForUser() - could you not find user profile for {0}", userID);
100 }
101 }
102
103 /// <summary>
104 /// Callback used by the inventory server GetInventory request
105 /// </summary>
106 /// <param name="userID"></param>
107 private void InventoryResponse(InventoryCollection response)
108 {
109 LLUUID userID = response.UserID;
110 if (m_RequestingInventory.ContainsKey(userID))
111 {
112 m_log.InfoFormat("[OGS1 INVENTORY SERVICE]: " +
113 "Received inventory response for user {0} containing {1} folders and {2} items",
114 userID, response.Folders.Count, response.Items.Count);
115
116 InventoryFolderImpl rootFolder = null;
117 InventoryReceiptCallback callback = m_RequestingInventory[userID];
118
119 ICollection<InventoryFolderImpl> folders = new List<InventoryFolderImpl>();
120 ICollection<InventoryItemBase> items = new List<InventoryItemBase>();
121
122 foreach (InventoryFolderBase folder in response.Folders)
123 {
124 if (folder.ParentID == LLUUID.Zero)
125 {
126 rootFolder = new InventoryFolderImpl(folder);
127 folders.Add(rootFolder);
128
129 break;
130 }
131 }
132
133 if (rootFolder != null)
134 {
135 foreach (InventoryFolderBase folder in response.Folders)
136 {
137 if (folder.ID != rootFolder.ID)
138 {
139 folders.Add(new InventoryFolderImpl(folder));
140 }
141 }
142
143 foreach (InventoryItemBase item in response.Items)
144 {
145 items.Add(item);
146 }
147 }
148 else
149 {
150 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Did not get back an inventory containing a root folder for user {0}", userID);
151 }
152
153 callback(folders, items);
154
155 m_RequestingInventory.Remove(userID);
156 }
157 else
158 {
159 m_log.WarnFormat(
160 "[OGS1 INVENTORY SERVICE]: " +
161 "Received inventory response for {0} for which we do not have a record of requesting!",
162 userID);
163 }
164 }
165
166 /// <summary>
167 /// <see cref="OpenSim.Framework.Communications.IInventoryServices"></see>
168 /// </summary>
169 public bool AddFolder(InventoryFolderBase folder, LLUUID session_id)
170 {
171 try
172 {
173 return SynchronousRestSessionObjectPoster<InventoryFolderBase, bool>.BeginPostObject(
174 "POST", _inventoryServerUrl + "/NewFolder/", folder, session_id.ToString(), folder.Owner.ToString());
175 }
176 catch (WebException e)
177 {
178 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Add new inventory folder operation failed, {0} {1}",
179 e.Source, e.Message);
180 }
181
182 return false;
183 }
184
185 /// <summary>
186 /// <see cref="OpenSim.Framework.Communications.IInventoryServices"></see>
187 /// </summary>
188 /// <param name="folder"></param>
189 public bool UpdateFolder(InventoryFolderBase folder, LLUUID session_id)
190 {
191 try
192 {
193 return SynchronousRestSessionObjectPoster<InventoryFolderBase, bool>.BeginPostObject(
194 "POST", _inventoryServerUrl + "/UpdateFolder/", folder, session_id.ToString(), folder.Owner.ToString());
195 }
196 catch (WebException e)
197 {
198 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Update inventory folder operation failed, {0} {1}",
199 e.Source, e.Message);
200 }
201
202 return false;
203 }
204
205 /// <summary>
206 /// <see cref="OpenSim.Framework.Communications.IInventoryServices"></see>
207 /// </summary>
208 /// <param name="folder"></param>
209 public bool MoveFolder(InventoryFolderBase folder, LLUUID session_id)
210 {
211 try
212 {
213 return SynchronousRestSessionObjectPoster<InventoryFolderBase, bool>.BeginPostObject(
214 "POST", _inventoryServerUrl + "/MoveFolder/", folder, session_id.ToString(), folder.Owner.ToString());
215 }
216 catch (WebException e)
217 {
218 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Move inventory folder operation failed, {0} {1}",
219 e.Source, e.Message);
220 }
221
222 return false;
223 }
224
225 /// <summary>
226 /// <see cref="OpenSim.Framework.Communications.IInventoryServices"></see>
227 /// </summary>
228 public bool PurgeFolder(InventoryFolderBase folder, LLUUID session_id)
229 {
230 try
231 {
232 return SynchronousRestSessionObjectPoster<InventoryFolderBase, bool>.BeginPostObject(
233 "POST", _inventoryServerUrl + "/PurgeFolder/", folder, session_id.ToString(), folder.Owner.ToString());
234 }
235 catch (WebException e)
236 {
237 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Move inventory folder operation failed, {0} {1}",
238 e.Source, e.Message);
239 }
240
241 return false;
242 }
243
244 /// <summary>
245 /// <see cref="OpenSim.Framework.Communications.IInventoryServices"></see>
246 /// </summary>
247 public bool AddItem(InventoryItemBase item, LLUUID session_id)
248 {
249 try
250 {
251 return SynchronousRestSessionObjectPoster<InventoryItemBase, bool>.BeginPostObject(
252 "POST", _inventoryServerUrl + "/NewItem/", item, session_id.ToString(), item.Owner.ToString());
253 }
254 catch (WebException e)
255 {
256 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Add new inventory item operation failed, {0} {1}",
257 e.Source, e.Message);
258 }
259
260 return false;
261 }
262
263 // TODO: this is a temporary workaround, the UpdateInventoryItem method need to be implemented
264 public bool UpdateItem(InventoryItemBase item, LLUUID session_id)
265 {
266 try
267 {
268 return SynchronousRestSessionObjectPoster<InventoryItemBase, bool>.BeginPostObject(
269 "POST", _inventoryServerUrl + "/NewItem/", item, session_id.ToString(), item.Owner.ToString());
270 }
271 catch (WebException e)
272 {
273 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Update new inventory item operation failed, {0} {1}",
274 e.Source, e.Message);
275 }
276
277 return false;
278 }
279
280 /// <summary>
281 /// <see cref="OpenSim.Framework.Communications.IInventoryServices"></see>
282 /// </summary>
283 public bool DeleteItem(InventoryItemBase item, LLUUID session_id)
284 {
285 try
286 {
287 return SynchronousRestSessionObjectPoster<InventoryItemBase, bool>.BeginPostObject(
288 "POST", _inventoryServerUrl + "/DeleteItem/", item, session_id.ToString(), item.Owner.ToString());
289 }
290 catch (WebException e)
291 {
292 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: Delete inventory item operation failed, {0} {1}",
293 e.Source, e.Message);
294 }
295
296 return false;
297 }
298
299 public bool HasInventoryForUser(LLUUID userID)
300 {
301 return false;
302 }
303
304 public InventoryFolderBase RequestRootFolder(LLUUID userID)
305 {
306 return null;
307 }
308
309 public bool CreateNewUserInventory(LLUUID user)
310 {
311 return false;
312 }
313
314 // See IInventoryServices
315 public List<InventoryFolderBase> GetInventorySkeleton(LLUUID userId)
316 {
317 m_log.ErrorFormat("[OGS1 INVENTORY SERVICE]: The GetInventorySkeleton() method here should never be called!");
318
319 return new List<InventoryFolderBase>();
320 }
321
322 #endregion
323 }
324}