aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces/IInventoryService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Finally remove the requirement for an InventoryItem/FolderBase object toMelanie Thielker2016-07-041-2/+2
| | | | | | | | be passed into inventory queries. This makes the API more homogenous and also will more clearly show coding errors related to HG inventory where the .Owner field has a meaning for a query but wasn't always set.
* WARNING: massive refactor to follow libomv's latest changes regarding ↵Diva Canto2015-08-081-1/+1
| | | | | | | inventory folders. The newest version of libomv itself is committed here. Basically, everything that was using the AssetType enum has been combed through; many of those uses were changed to the new FolderType enum. This means that from now on, [new] root folders have code 8 (FolderType.Root), as the viewers expect, as opposed to 9, which was what we had been doing. Normal folders are as they were, -1. Also now sending folder code 100 for Suitcase folders to viewers, with no filter. All tests pass, but fingers crossed!
* Another major overhaul of inventory downloading, this time pertaining to ↵Diva Canto2015-05-081-1/+8
| | | | inventory links. Added yet another function to IInventoryService to get multiple items at once, so that fetching collections of linked items is done once per folder instead of once per item.
* Major change in the way inventory is downloaded: added a method throughout ↵Diva Canto2015-05-071-0/+8
| | | | IIventoryService that fetches sets of folders at once. Also added folder id in the InventoryCollection data structure, so that we don't need to go to inventory server again just for that. This reduces the chatter between sims and inventory server by... a lot. On my tests, this reduces initial inventory download down to 30% of what it currently is.
* Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵Oren Hurvitz2014-04-231-17/+0
| | | | because it's Obsolete.
* If GetFolderContent called by WebFetchInvDescHandler.Fetch() fails for some ↵Justin Clark-Casey (justincc)2014-02-201-1/+1
| | | | reason and returns null, log and return empty contents rather than throwing an exception that ends up terminating the simulator.
* minor: add a bit more method doc to IInventoryService.GetItem()Justin Clark-Casey (justincc)2011-04-111-1/+1
|
* Fix bug in llGiveInventory() where items were disappearing on relogJustin Clark-Casey (justincc)2010-08-231-2/+5
| | | | | This was a regression - the code to look up the correct type folder was no longer being called if items were added without a parent folder set This may have been broken since commit bd49985a on 2010-05-02
* Mark GetUserInventory as obsolete. It is still used in the defaultMelanie2010-01-041-0/+2
| | | | | | | | avatars module and in the REST inventory service, but future inventory services and/or connector will not include this method anymore, because it is dangerous on large inventory servers. Marking as obsolete to give an incentive to rewrite these services to use the recursive fetching or more targeted retrieval.
* * Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto2009-08-221-0/+8
| | | | | | folders were never being removed from trash when they were singled out for purging in trash. They were being removed when Trash was purged as a whole. That behavior is now fixed for the new InventoryService set. * Removed left-overs from AssetInventoryServer.
* Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto2009-08-191-0/+2
| | | | operation. Moving a batch of items is a 1-time operation. Made it async anyway, so that the viewer doesn't wait in case the DB layer is dumb (which is the case currently).
* A better purge of trash folder.Diva Canto2009-08-191-1/+2
|
* Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto2009-08-131-0/+20
|
* Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto2009-08-131-2/+2
| | | | starting to get on my nerves.
* Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto2009-08-101-7/+23
| | | | GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
* Changed RequestRootFolder to GetRootFolderDiva Canto2009-08-101-1/+1
|
* Fixes mantis #3803. Thanks jhurliman.diva2009-06-111-1/+2
|
* Added more functions to IInventoryService. Unsure about whether all of these ↵diva2009-06-081-0/+35
| | | | are really necessary.
* First draft of inventory service connectors, and service implementation. No ↵diva2009-06-071-0/+118
handlers yet, this is just the OUT part for now. It's not active and nothing in the simulator uses this yet. Just checking it in to start sharing with others. There are a couple of interesting software design points that could use other devs opinions. Hopefully I added all needed files.