diff options
author | Diva Canto | 2010-04-26 20:28:37 -0700 |
---|---|---|
committer | Diva Canto | 2010-04-26 20:28:37 -0700 |
commit | 76e87181b2cfd7a9dd7a73367fd4fe5c26ccd6ce (patch) | |
tree | 53ada1be143e9bbc9d67b9ef039cf4797749f70f /OpenSim/Services/Connectors/Inventory | |
parent | Fix build break. (diff) | |
download | opensim-SC_OLD-76e87181b2cfd7a9dd7a73367fd4fe5c26ccd6ce.zip opensim-SC_OLD-76e87181b2cfd7a9dd7a73367fd4fe5c26ccd6ce.tar.gz opensim-SC_OLD-76e87181b2cfd7a9dd7a73367fd4fe5c26ccd6ce.tar.bz2 opensim-SC_OLD-76e87181b2cfd7a9dd7a73367fd4fe5c26ccd6ce.tar.xz |
RemoteXInventoryServiceConnector, the plugin region module. Not active in default configs yet.
Diffstat (limited to 'OpenSim/Services/Connectors/Inventory')
-rw-r--r-- | OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs b/OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs index 0cc1978..edf224f 100644 --- a/OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs +++ b/OpenSim/Services/Connectors/Inventory/XInventoryConnector.cs | |||
@@ -455,6 +455,35 @@ namespace OpenSim.Services.Connectors | |||
455 | return int.Parse(ret["RESULT"].ToString()); | 455 | return int.Parse(ret["RESULT"].ToString()); |
456 | } | 456 | } |
457 | 457 | ||
458 | public Dictionary<AssetType, InventoryFolderBase> GetSystemFolders(UUID userID) | ||
459 | { | ||
460 | Dictionary<string, object> ret = MakeRequest("GETSYSTEMFOLDERS", | ||
461 | new Dictionary<string, object> { | ||
462 | { "PRINCIPAL", userID.ToString() }, | ||
463 | }); | ||
464 | |||
465 | if (ret == null) | ||
466 | return new Dictionary<AssetType,InventoryFolderBase>(); | ||
467 | |||
468 | Dictionary<AssetType, InventoryFolderBase> sfolders = new Dictionary<AssetType, InventoryFolderBase>(); | ||
469 | |||
470 | try | ||
471 | { | ||
472 | foreach (KeyValuePair<string, object> kvp in ret) | ||
473 | { | ||
474 | InventoryFolderBase folder = BuildFolder((Dictionary<string, object>)(kvp.Value)); | ||
475 | short type = 0; | ||
476 | if (Int16.TryParse(kvp.Key, out type)) | ||
477 | sfolders.Add((AssetType)type, folder); | ||
478 | } | ||
479 | } | ||
480 | catch (Exception e) | ||
481 | { | ||
482 | m_log.DebugFormat("[XINVENTORY CONNECTOR STUB]: exception {0}", e.Message); | ||
483 | } | ||
484 | |||
485 | return sfolders; | ||
486 | } | ||
458 | 487 | ||
459 | // These are either obsolete or unused | 488 | // These are either obsolete or unused |
460 | // | 489 | // |