mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 03:45:35 +08:00
Added a method to access a named folder in a users inventory, to the inventory Database interfaces. This could be useful for adding a item to a users inventory from say a web front end application or some other third party application. [note the method is only currently implemented in the sqlite provider]
This commit is contained in:
@@ -100,6 +100,23 @@ namespace OpenSim.Region.Communications.Local
|
||||
}
|
||||
}
|
||||
|
||||
public override InventoryFolderBase RequestNamedFolder(LLUUID userID, string folderName)
|
||||
{
|
||||
List<InventoryFolderBase> folders = RequestFirstLevelFolders(userID);
|
||||
InventoryFolderBase requestedFolder = null;
|
||||
|
||||
//need to make sure we send root folder first
|
||||
foreach (InventoryFolderBase folder in folders)
|
||||
{
|
||||
if (folder.name == folderName)
|
||||
{
|
||||
requestedFolder = folder;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
return requestedFolder;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Send the given inventory folder and its item contents back to the requester.
|
||||
|
||||
@@ -175,6 +175,11 @@ namespace OpenSim.Region.Communications.OGS1
|
||||
return null;
|
||||
}
|
||||
|
||||
public virtual InventoryFolderBase RequestNamedFolder(LLUUID userID, string folderName)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
public void CreateNewUserInventory(LLUUID user)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user