aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/InventoryServer/GridInventoryService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-09-17Remove The legacy inventory and asset servers. Bump interface version to 6Melanie1-256/+0
2009-08-10Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto1-4/+0
ISecureInventoryService interfaces removed.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-25* reseparate inventory item creator id and creator uuidJustin Clarke Casey1-2/+3
* unfortunately, while the client requires uuids and we want to be able to have arbitrary string ids, these cannot be kept in sync * I think the problems last time were due to a serialization change * So the major inteface version has been bumped to take care of any lingering issues here. * This means that region servers beyond this revision can only connect to similarly uptodate grid services, and vice versa
2009-02-12* optimized usings.lbsa711-5/+2
2008-12-02Added two new "trusted" url handlers to the Inventory server, to allow the ↵MW1-10/+26
user server to get a list of items in a folder and add a new item.
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-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-5/+5
* 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-7/+7
2008-08-09* Add line to log notifying of inventory -> user grid server trust failureJustin Clarke Casey1-3/+22
* add code comments
2008-07-25enabled a config option to inventory server to be able to stop it doing the ↵MW1-27/+50
SessionId lookup to the user server. As this ties a inventory server to one userserver/grid. doing the look up is still enabled by default.
2008-07-25Thanks, lulurun, for a patch that adds an authenticated session cache to reduceMike Mazur1-11/+27
"check_auth_session" requests from inventory server to user server.
2008-07-24Thanks, cmickeyb, for a patch that addresses secure inventory assuming IP ↵Mike Mazur1-3/+5
addresses in configuration. Fix issue 1812.
2008-07-23thanks lulurun for a security patch that blocks unathorized access to the ↵Johan Berntsson1-0/+41
inventory server (see http://opensimulator.org/wiki/Security_vulnerability_brought_by_non-check_inventory_service)
2008-05-16Formatting cleanup.Jeff Ames1-19/+19
2008-05-09* Removing polling delay for non-CAPS inventory fetch if the client has not ↵Justin Clarke Casey1-1/+4
yet received data from the inventory service * Replaced instead with the system now used by other requests where the fetch request is placed on a queue and service when the data comes in
2008-05-08* Reduced sleep durations in a number of files.Adam Frisby1-6/+1
2008-05-03* Add ability to defer item actions for AddItem() and DeleteItem(). This ↵Justin Clarke Casey1-1/+1
won't be useful until we let the client cache (again?)
2008-05-03* Refactor RemoveItem()Justin Clarke Casey1-1/+1
2008-05-03* Refactor: move UpdateFolder into CachedUserInfoJustin Clarke Casey1-1/+1
2008-05-03* Refactor: Move bulk of CreateFolder from UserProfileCacheService into ↵Justin Clarke Casey1-58/+8
CachedUserInfo * Remove unused/superseded methods from GridInventoryService
2008-05-01* Refactor: Remove the unused userID parameter that was being passed into ↵Justin Clarke Casey1-83/+1
almost every inventory method * This allows lots of redundant inventory methods with only slightly different names to be eliminated.
2008-05-01* Rolled back a few changes.Adam Frisby1-25/+25
2008-05-01* Cleaning code still.Adam Frisby1-25/+25
2008-05-01* Assorted spring cleanings.Adam Frisby1-2/+0
2008-04-30* Long awaited patch from A_Biondi Mantis 923. Kept alive by Melanie. ↵Teravus Ovares1-0/+5
Thanks A_Biondi and Melanie! * This builds but might not work. JustinCC will examine.. it may work out of the box.
2008-04-23* Implement full grid mode Trash emptyJustin Clarke Casey1-9/+15
* Now, emptying the trash should remove folders and the items they contain as well as items which were not in a subfolder. * This will only work once both the region and grid servers have reached this revision. * You may also need to clear your cache before this will work * Refactoring to follow.
2008-04-23* Implement proper emptying of trashcan on standaloneJustin Clarke Casey1-0/+10
* On standalone, folders (and their items) should now be persistently deleted on trash emptying, as well as immediate child items * An implementation for grid mode will follow.
2008-04-22* Allow folder renaming to complete after an agent inventory has been ↵Justin Clarke Casey1-1/+5
received by a region from the inventory service * This replaces the old behaviour of failing straight away, which could cause lost updates if the inventory service was slow in responding * This is the first baby step to making all inventory requests behave this way, to reduce inventory lossage
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-6/+4
(this took a while to run).
2008-04-20* Remove user profile from cache when they log out from a region.Justin Clarke Casey1-1/+1
* A much more significant fix is required to clean up the cache when a user moves out of a region, but really better handling of delayed inventory cache updates needs to be written first, and possibly better affinity to cut down agent inventory requests when the move is between two regions hosted on the same server.
2008-04-11* Reduce publicly exposed fields on InventoryCollection, which was causing ↵Justin Clarke Casey1-32/+27
duplicate sets of inventory data to be sent over the grid * Won't actually fix anything, since we were handling the problem anyway * Also add more doc, fix up debugging messages, etc
2008-04-11* Change inventory async response deliver to deliver all items and folders ↵Justin Clarke Casey1-2/+1
at once, rather than each individual * This is required in order to work towards eliminating some inventory race conditions and to better deal with situations where a grid inventory server is slow or not responding.
2008-04-10* Minor: really just comment and subsequent indentation adjustment. ↵Justin Clarke Casey1-0/+6
Preparation for handling inventory problems where the inventory server receives a request and never responds, or is late in responding
2008-04-10* Refactor GetUsersInventory()Justin Clarke Casey1-9/+33
2008-04-10* Minor inventory message cleanup and documentationJustin Clarke Casey1-1/+10
2008-04-08further refactor and rename of InventoryFolderBase propertiesSean Dague1-1/+1
to reflect what they really are.
2008-04-07more refactoring, this time on InventoryFolderBaseSean Dague1-7/+7
* wrap attributes in properties * clean up names a little bit * clean up name styles
2008-04-07Refactor InventoryItemBase to do the following:Sean Dague1-6/+6
* wrap fields as Properties * rename some fields/properties to more sensible names * set style to PropName to match more standard C# approach
2008-03-30* Stop the grid inventory service sending all folder and item details twiceJustin Clarke Casey1-23/+9
* This change will have no functional impact - we were already filtering out the dupes on the other end.
2008-03-29* Refactor: Remove unused inventory methods, some of which weren't properly ↵Justin Clarke Casey1-0/+11
implemented anyway.
2008-03-29* Various 1.19.0.5 grid inventory request fixes. These will only take ↵Justin Clarke Casey1-2/+16
affect once the region and the grid servers have upgraded to this revision * You may also need to clear your cache before seeing any effect. * These fixes may or may not affect inventory on the RC client. * These fixes should make non-root folders work better, stop inventory failure on first login, allow trash to be emptied and make texture picker in object edit view work properly * Fixes are 1) make initial root folder request wait for async inventory delivery, 2) deliver all folders in the initial login skeleton, not just the root child ones and 3) deal with situations where we receive child folders from the inventory service before their parent is received.
2008-03-18Formatting cleanup.Jeff Ames1-27/+26
2008-02-05Converted logging to use log4net.Jeff Ames1-11/+13
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2007-12-27* Optimized usingslbsa711-23/+22
* shortened references * Removed redundant 'this' * Normalized EOF
2007-12-22Remove a now unnecessary bit of inventory log verbosityJustin Clarke Casey1-1/+2
2007-12-20Added patch from Johan. First attempt to solve the LibSL.Packet GC problem. ↵Jeff Ames1-6/+6
Works with LibSL rev>1532
2007-12-15* Make inventory operations sync rather than async. This is to alleviate ↵Justin Clarke Casey1-5/+31
race conditions such as that in mantis #190 * Make inventory messages more verbose. Hopefully they aren't now too verbose * This may resolve some grid instability but it's likely there's much more out there.
2007-12-15Grid Inventory feature upgrade: renaming folders should now be correct, ↵Brian McBee1-9/+50
subfolders work, moving folders works. Tested only in MYSQL, but may work in MSSQL and sqlite. Probably not working in standalone mode.
2007-12-14Added some extra debug console output to Inventory Server and region OGS1 ↵MW1-0/+2
inventory requests.