aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/InventoryServer (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-09-17Remove The legacy inventory and asset servers. Bump interface version to 6Melanie4-1090/+0
2009-08-22Changed the namespace of old InventoryServiceBase amd AuthedSessionCache.Diva Canto2-2/+4
2009-08-22Moved AuthedSessionCache to where it is used -- Grid/InventoryServer.Diva Canto2-0/+650
2009-08-10Last piece of cleaning up old inventory. Old IInventoryServices and ↵Diva Canto1-4/+0
ISecureInventoryService interfaces removed.
2009-08-09Re-removing 2 lines that got added back on Melanie's commits. git hickup.Diva Canto1-2/+0
2009-08-09Rename UserData to UserAccount dataMelanie1-0/+2
2009-08-09Removed HGInventory out of core. This is part of HG2, which it now being ↵Diva Canto1-2/+0
developed outside.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames2-2/+2
LICENSE.txt.
2009-05-30Added a AvatarCreationModule to the user server. This handles the "cloning" ↵MW1-0/+4
of a existing avatar's inventory to another avatar's inventory (the base method will also create the inventory for a new avatar if the avatar doesn't alreayd have any inventory). The code also sets the target avatar as wearing whatever the template avatar was wearing (including attachments). The idea is to allow the use of this to give new avatars a more interesting avatar (and inventory set) than the current default. I have include a console command that will clone the inventory from one existing user (template avatar) to another existing avatar (target avatar). The format of the command is : "clone avatar <templateAvatarFirstName> <templateAvatarLastName> <targetAvatarFirstName> <targetAvatarLastName>" (to use this console command on new accounts, the "create user" command will need to be used first) While the code was designed for hooking up to a remote call from a web interface, I have left the hookup code out of this commit, as I believe most use cases will want to handle it differently. Also added a "trusted handler" to the inventory server to allow the user server to create new folders in a user's inventory. All this is in the old UGAIM servers so will need porting to the new servers.
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-05-20Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker1-1/+1
2009-05-14Small fix uncommenting something that got commented too much.diva1-1/+1
2009-05-04Intermediate commit. WILL NOT COMPILE!Melanie Thielker1-0/+1
2009-05-04Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker1-1/+1
console capable of processing commands. Create LocalConsole as a console that uses cursor control and context help. Precursor to a distributed console system for the new grid services. No functional change intended :)
2009-04-07* minor: remove some mono compiler warningsJustin Clarke Casey1-2/+2
2009-04-05Added CreateObject(regionhandle, userID, itemID) to post objects that are to ↵diva1-35/+39
be fetched from the user's inventory server and rezzed in the region. Added all code necessary to fetch the item and the asset, and rez it inworld. The access to the item is uncap-ed and unverified -- I may place it later either under a cap or with auth verification. But in this model regions don't have the user's inventory, so they would have to guess the item IDs. Added safemode config to Standalone Hypergrid, similar effect to AllowRegionAccessToInventory in Inventory Server. Everyone should have these vars set to their default values except me!
2009-03-30Adds support at the inventory server for direct inventory manipulation from ↵diva1-1/+8
authorized clients using capabilities. Provided keys are verified with the designated authority. The added code is only executed for clients following HGLoginAuth procedure or similar. It does not remove any existing behavior.
2009-03-23Committing partial work on passing folders across instances. This may crash.Melanie Thielker1-0/+4
2009-03-21Add a QueryItem method to the inventory subsystem. Currently implemented forMelanie Thielker1-0/+4
MySQL only, stubs for the others. This allows updating the cache with a single item from the database.
2009-02-12* optimized usings.lbsa712-6/+3
2009-02-10Add proper handling for shared vs. unshared modules to the commandMelanie Thielker1-1/+1
interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
2009-02-07Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker1-11/+10
line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
2008-12-02Added two new "trusted" url handlers to the Inventory server, to allow the ↵MW2-10/+34
user server to get a list of items in a folder and add a new item.
2008-10-03* refactor: make startup a template methodJustin Clarke Casey1-3/+1
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz2-0/+14
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 Ovares2-7/+7
* 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 Ames2-8/+8
2008-08-13Mantis #1936Melanie Thielker1-1/+0
Thank you, gsky, for a patch that corrects the threading model to use the multithreaded apartment in the grid servers and region server.
2008-08-09* minor: get rid of send and receive keys from inventory serverJustin Clarke Casey1-6/+5
* these are not used
2008-08-09* minor: remove redundant welcome message from inventory grid server ↵Justin Clarke Casey1-1/+0
configuration
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 ↵MW2-27/+51
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 Berntsson2-19/+61
inventory server (see http://opensimulator.org/wiki/Security_vulnerability_brought_by_non-check_inventory_service)
2008-07-15cleanup: fixing CamelCase issue with RestDeserialiseHandler.Dr Scofield1-9/+9
2008-06-11Mantis#1514. Thank you kindly, Boscata for an InventoryServer patchCharles Krinke1-0/+4
to allow the InventoryServer to work with MSSQL..
2008-06-01* Fix build break by eliminating remaining IScenePermissions references - ↵Justin Clarke Casey1-2/+3
must remember to nant clean * Hook all server startups into base opensim server startup method
2008-05-16* Minor: For no particularly good reason, make all console prompts conform ↵Justin Clarke Casey1-1/+1
to the same prompt scheme
2008-05-16Formatting cleanup.Jeff Ames2-27/+27
2008-05-13* Remove old historical grid inventory codeJustin Clarke Casey2-212/+1
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-07* Move shutdown processing to base OpenSimServer, overriding the method ↵Justin Clarke Casey1-4/+0
where appropriate * This also means that the command quit (as well as shutdown) will now close down grid servers (instead of only being in place for the region server)
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 Casey2-88/+6
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 Frisby3-70/+63