aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/InventoryService/InventoryService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-06-04Fix give inventory tests to use different users rather than (accidentally) ↵Justin Clark-Casey (justincc)1-2/+6
the same user. Extend TestGiveInventoryItem() to test giving back the same item.
2010-09-12Formatting cleanup.Jeff Ames1-2/+2
2010-08-24Add automated test at the opensim 'api' level to check that a given item ↵Justin Clark-Casey (justincc)1-1/+8
goes to the correct directory Also removes some mono compiler warnings
2010-06-11Revert "Allow IInventoryService.GetFolder(folderId, userId) as well as ↵Justin Clark-Casey (justincc)1-11/+6
GetFolder(InventoryFolderBase folder)" This reverts commit 3525195bc9b5fdfd9799411edd452981ef1f4ebd.
2010-06-11Allow IInventoryService.GetFolder(folderId, userId) as well as ↵Justin Clark-Casey (justincc)1-6/+11
GetFolder(InventoryFolderBase folder) This involves no wire changes since the methods often just construct an InventoryFolderBase under the hood. This is in line with other methods that alraedy allow requests via uuid
2010-04-28Removed unused var from InventoryService.cs (-1 warning)AlexRa1-1/+1
2010-02-14Added UserAccount, Avatar and Authentication to Data.Null, so that OpenSim ↵Diva Canto1-0/+1
can run out-of-the-box. #WaitingForSQLite
2010-01-12Fixed more appearance woes that showed up using remote connectors. ↵Diva Canto1-0/+1
Appearance is now being passed with AgentCircuitData, as it should be.
2010-01-01Prevent the creation of duplicate inventory folders in the case of a loginMelanie1-1/+12
database issue. Now the login will instaead fail later.
2009-11-22* Request from Adam to add InfoFormat logging to the InventoryService for ↵Teravus Ovares (Dan Olivares)1-0/+1
when deleting folders by folderID occurs
2009-10-01Formatting cleanup.Jeff Ames1-1/+1
2009-09-03Fixes seven leaky .BeginInvoke() callsJohn Hurliman1-1/+1
2009-08-28Pull out distinct cache system folders and drop cache methods in InventoryCacheJustin Clark-Casey (justincc)1-0/+2
2009-08-22Moved a debug message.Diva Canto1-1/+1
2009-08-22* Fixes mantis http://opensimulator.org/mantis/view.php?id=4044. Turns out ↵Diva Canto1-2/+14
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.
2009-08-20Made HandleFetchInventoryDescendents async, so that the client thread ↵Diva Canto1-3/+1
doesn't wait for the download of the entire inventory.
2009-08-19Fixes GetItem and GetFolder for SQLite. Turns out some methods were no-op in ↵Diva Canto1-3/+3
SQlite. Fixes most grief in http://opensimulator.org/mantis/view.php?id=4035 http://opensimulator.org/mantis/view.php?id=4027
2009-08-19Added MoveItems, which is most useful upon viewer-delete inventory ↵Diva Canto1-0/+18
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).
2009-08-19A better purge of trash folder.Diva Canto1-4/+8
2009-08-13Added GetAssetPermissions. Few last bugs nixed. This is ready for testing.Diva Canto1-0/+23
2009-08-13Renamed QueryItem/QueryFolder to GetItem/GetFolder. The word 'query' ↵Diva Canto1-2/+2
starting to get on my nerves.
2009-08-11Improved test for system folders. Removed log messages.Diva Canto1-1/+2
2009-08-11System folders inventory cache added to OUT inventory modules. This tracks ↵Diva Canto1-0/+20
agents in and out of *sims* in order to fetch/drop their system folders from the cache. Also added region-side support for fetching the system folders from the inventory service. Nothing of this is called yet.
2009-08-10Added two new methods to IIventoryService -- GetFolderForType and ↵Diva Canto1-0/+40
GetFolderContent. Some meat to it, but not completed. None of this code is called anywhere yet.
2009-08-10Changed RequestRootFolder to GetRootFolderDiva Canto1-3/+3
2009-08-06Disable all IAR tests for now due to possible failure-causing race conditionJustin Clark-Casey (justincc)1-1/+0
2009-06-11Fixes mantis #3803. Thanks jhurliman.diva1-5/+5
2009-06-11Changed the inventory service so that is uses exactly one DB plugin, not ↵diva1-75/+27
many. The composition of plugins can be done at the service and connector levels. This fixes the unit tests that were failing yesterday, but I'm not committing those yet, because I'm seeing 2 of those tests having pass and fail outcomes randomly which suggests that the tests are buggy.
2009-06-10Heart surgery no.2: the inventory service hooks. diva1-20/+21
Several improvements in the connectors themselves. Several improvements in configurations. Needed to add a hack in IUserService and UserManagerBase, to be removed when that service is refactored.
2009-06-08Added more functions to IInventoryService. Unsure about whether all of these ↵diva1-6/+67
are really necessary.
2009-06-07First draft of inventory service connectors, and service implementation. No ↵diva1-31/+56
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.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-04* Initial infrastructure for ospa only uuid hashing of retrieved inventory itemsJustin Clarke Casey1-1/+1
2009-05-04* Enhance some internal inventory data plugin behaviour to match what was ↵Justin Clarke Casey1-12/+19
probably intended * (e.g returning combined results of plugin rather than always the first result) * This will not affect any existing functionality
2009-03-23Committing partial work on passing folders across instances. This may crash.Melanie Thielker1-0/+14
2009-03-21Add a QueryItem method to the inventory subsystem. Currently implemented forMelanie Thielker1-0/+14
MySQL only, stubs for the others. This allows updating the cache with a single item from the database.
2009-03-19Moving GetInventoryItem up to InventoryServiceBase, since this seems like a ↵diva1-0/+10
pretty fundamental function.
2009-02-12* optimized usings.lbsa711-5/+1
2009-02-09The DataPluginFactory is now a set of generic methods instead ofMike Mazur1-1/+1
multiple duplicates of the same code.
2009-02-03- moved data plugin loading code from various places toMike Mazur1-11/+9
OpenSim/Data/DataPluginFactory.cs - removed dependencies on a few executable assemblies in bin/OpenSim.Data.addin.xml - trim trailing whitespace
2009-02-03- move OpenSim/Framework/IInventoryData.cs toMike Mazur1-2/+4
OpenSim/Data/IInventoryData.cs - trim trailing whitespace
2008-11-28* refactor: move CreateUser into UserServiceAdminJustin Clarke Casey1-1/+0
2008-11-27* test: Add the ability to add a plugin directory to the user and inventory ↵Justin Clarke Casey1-5/+14
services in order to extend unit tests for user and inventory information * I can't spend any longer in trying to get Mono.Addins to work with the unit tests, so this is not a proper plugin at this time
2008-11-03Thanks diva for patch that makes a bunch of methods in InventoryServiceBase ↵Dahlia Trimble1-8/+8
virtual, so that they can be overriden in subclasses.
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz1-0/+9
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-06Mantis #2133Melanie Thielker1-1/+1
Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-29/+29
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-18Formatting cleanup.Jeff Ames1-3/+3
2008-07-31Thanks, sempuki, for a patch that moves all Grid Server's plugins toMike Mazur1-47/+34
PluginLoader. Fix issue 1871.
2008-07-24* minor: Rename IInterGridInventoryServices since it's inter service rather ↵Justin Clarke Casey1-1/+1
than inter grid