aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove the "[LOCAL SIMULATION CONNECTOR]: Did not find region {0} for ↵Justin Clark-Casey (justincc)2011-11-191-1/+0
| | | | | | | SendCreateChildAgent" message This is misleading since a simulator will call this method before successfully trying remote regions. Also comments out spammy "[SIMULATION]: Stream handler called" AgentHandlers messages for now.
* minor: Make HelloNeighbour messages more informativeJustin Clark-Casey (justincc)2011-11-191-5/+10
|
* minor: remove some mono compiler warningsJustin Clark-Casey (justincc)2011-11-141-2/+1
|
* Add optional getauthinfo and setauthinfo authentication service calls.Justin Clark-Casey (justincc)2011-10-241-1/+10
| | | | | These are disabled by default, as before. Please only turn these on in secure grids, since they allow the same facilities as the existing SetPassword call (also disabled by default) These facilities can be helpful when integrating external systems, in addition to the existing option of adapting an IAuthenticationService or using WebLoginKey
* Don't try and resolve user account for authorization if the agent has come ↵Justin Clark-Casey (justincc)2011-09-241-1/+11
| | | | | | | | | | in via hypergrid. If a user account isn't available, this just passes on the name given by the agent instead. I'm not sure this is particularly useful since I believe that agent names could be faked in this context - it might be no more useful than a viewer agent string. In fact, there might even be an argument that passing on this name provides a false expectation of authenticity. However, I will apply for now. Patch applied from http://opensimulator.org/mantis/view.php?id=5696 Thanks Michelle Argus.
* refactor: move estate owner setup code into separate methodJustin Clark-Casey (justincc)2011-09-161-0/+2
|
* Correctly create a freshly created estate owner's default items and avatar ↵Justin Clark-Casey (justincc)2011-09-161-11/+15
| | | | entries on standalone if applicable.
* Shuffle order of code in invnetory connector GetFolderContent() calls to ↵Justin Clark-Casey (justincc)2011-09-152-12/+18
| | | | avoid a possible race condition
* Use a copy of the inventory items list to register users in the thread ↵Justin Clark-Casey (justincc)2011-09-092-2/+8
| | | | | | started by GetFolderContent(), to protect ourselves against callers modifying lists Hopefully this addresses http://opensimulator.org/mantis/view.php?id=5681
* When a region is added to the HG Inventory Broker, also pass this through to ↵Justin Clark-Casey (justincc)2011-09-073-21/+41
| | | | | | | | the embedded local inventory connector to prevent an NRE when that connector tries to lookup the UserManager through the scene. This is to address http://opensimulator.org/mantis/view.php?id=5669 However, if this failure was happening I'm kind of surprised that local HG inventory was working at all..... We probably weren't seeing these exceptions previously because we weren't logging them when the reached the top of a FireAndForget thread.
* Add temporary debugging in HGInventoryBroker and ↵Justin Clark-Casey (justincc)2011-09-062-17/+33
| | | | | | | RemoveXInventoryServiceConnector This is for http://opensimulator.org/mantis/view.php?id=5669 If we can't retrieve an IUserManagement module we complain, and we also warn in the log when its manually set in XISC by HGInventoryBroker
* Allow the HGInventoryBroker to set the UserManager when it instantiates a ↵Justin Clark-Casey (justincc)2011-09-052-3/+15
| | | | | | | RemoteXInventoryServiceConnector for a visiting HG user. Not doing this causes NREs whenever that user tries to access inventory when Hypergrid is turned on since the Remote connector does not have a scene (which is only used to fetch the UserManager) Aims to address http://opensimulator.org/mantis/view.php?id=5669
* Don't set a GridUser entry for NPCs.Justin Clark-Casey (justincc)2011-08-311-1/+4
| | | | Resolves http://opensimulator.org/mantis/view.php?id=5665
* Fix bug in persisting saved appearances for npcsJustin Clark-Casey (justincc)2011-08-301-5/+20
| | | | | Assets have to be marked non-local as well as non-temporary to persist. This is now done. Hopefully addresses http://opensimulator.org/mantis/view.php?id=5660
* remove mono compiler warningsJustin Clark-Casey (justincc)2011-08-234-7/+2
|
* For now, supress 'OH NOES' warnings given by ↵Justin Clark-Casey (justincc)2011-08-171-5/+5
| | | | | | | HGInventoryBroker.CacheInventoryServiceURL when it tries to cache it for an NPC This concept is meaningless for NPCs. However, it might be better to make NPCism an actual property on ScenePresence and check. Addresses http://opensimulator.org/mantis/view.php?id=5643
* comment out some of the currently less useful debug log messagesJustin Clark-Casey (justincc)2011-08-112-2/+3
|
* Change GridService.GetRegionByName() to only return info if there is an ↵Justin Clark-Casey (justincc)2011-08-021-2/+5
| | | | | | | exact region name match, unlike GetRegionsByName() This should fix the first part of http://opensimulator.org/mantis/view.php?id=5606, and maybe 5605. Thanks to Melanie for helping with this.
* Pass the first name and last name from the agent circuit data to the ↵Justin Clark-Casey (justincc)2011-07-232-17/+24
| | | | | | | | | | authorization service rather than from the account. This is to accomodate situations where the authorization service is being used by the hypergrid, where visitors have no user account. See http://opensimulator.org/mantis/view.php?id=5517, this code is somewhat adapted/cleaned up from Michelle's patch I'm a little ambivalent about this since visitors could put anything in firstname/lastname so it's not much of an auth measure. It's up to the auth service to decide which data it actually uses. Possibly we should be passing through other info such as agent circuit ip
* stop the local inventory services connector from logging an error when an ↵Justin Clark-Casey (justincc)2011-07-081-3/+3
| | | | | | item id isn't found. making this query is legitimate and so the log line can cause false positivies. It is up to callers to log an error if appropriate.
* Merge branch 'master' of ssh://opensimulator.org/var/git/opensimDiva Canto2011-06-162-2/+169
|\
| * Added an expiring cache for region information to theMic Bowman2011-06-152-2/+169
| | | | | | | | | | | | | | | | RemoteGridService connector. Timeout is currently set at five minutes. Negative results are not cached. The result is that operations like send an instant message do not have to go through the grid service every time.
* | Added a couple of guards and warnings to the MapImage/MapImageServiceModule.Diva Canto2011-06-161-2/+12
|/
* First pass at making the V2 map work. Standalones only for now. There are ↵Diva Canto2011-06-121-0/+232
| | | | some issues with the zoom level -- TBD.
* HG inventory transfers over the profile working.Diva Canto2011-05-271-2/+9
|
* Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto2011-05-241-0/+16
| | | | window, but can't test because this mechanism doesn't seem to work without a profile service.
* Get rid of OpenSim.Tests.Common.Setup subpackage in favour of just ↵Justin Clark-Casey (justincc)2011-05-212-2/+0
| | | | OpenSim.Tests.Common instead
* Check for RegionID instead of RegionHandle. Other minor tweaksDiva Canto2011-04-301-2/+2
|
* Fatpack message on agent transfers: 1 message only (UpdateAgent) containing ↵Diva Canto2011-04-282-4/+9
| | | | the agent and all attachments. Preserves backwards compatibility -- older sims get passed attachments one by one. Meaning that I finally introduced versioning in the simulation service.
* Made things consistent between LocalInventoryServiceConnector and ↵Diva Canto2011-04-252-11/+32
| | | | RemoteXInventoryServiceConnector on GetFolderContent.
* Make all the objects in a coalescence reappears after being loaded from an ↵Justin Clark-Casey (justincc)2011-04-151-0/+2
| | | | | | | IAR. This still doesn't work proprerly since some required textures/contained item assets might be missing. From pure code inspection, it looks like the uuid gatherer may get most asset uuids because the scene object serializer naively pulls non-root parts from all contained scene objects into one mega-object. However, root part uuids may well still be missing, and there may be other odd artifacts from this bug. It appears that storing the size of the coalescence and the offsets is redundant, since one can work out this information from the position data already in the scene object groups.
* Upgrade nunit.framework.dll to version 2.5.9. Fix up tests appropriately.Justin Clark-Casey (justincc)2011-03-092-2/+0
| | | | This version removes the NUnit.Framework.SyntaxHelpers namespace, so any modules with their own tests will need to delete this using statement.
* Changed order of checks for local regions when processingMic Bowman2011-03-041-16/+6
| | | | | AgentUpdate messages. Should improve throttles and reprioritization when an avatar is moving.
* Change the QUERYACCESS method to eliminate spurious access denied messagesMelanie2011-02-162-5/+7
|
* Thanks Tokeiito for noticing this bug. mantis #5366Diva Canto2011-02-071-1/+1
|
* Better output for show neighboursDiva Canto2011-02-061-2/+6
|
* Added an additional debug message, and removed a bunch of files that weren't ↵Diva Canto2011-02-042-362/+5
| | | | being used anymore -- the old RemotsInventory connectors stuff.
* Change UpdateAgent (for changes in agent position) to be sentMic Bowman2011-02-031-7/+7
| | | | | | once to each simulator rather than once to each region. This should help with some of the delays caused by multiple outstanding requests to a single service point.
* minor: remove a few mono compiler warningsJustin Clark-Casey (justincc)2011-01-281-3/+4
|
* Fix up QueryAccess to also check parcelsMelanie2011-01-282-9/+6
|
* Spawn a threadlet upon receiving requests to close agents. The operation may ↵Diva Canto2011-01-071-1/+4
| | | | take too long, and we don't need to keep the caller waiting.
* Implement Scope ID lookup on GetLandData. Stacked regions were not handledMelanie2011-01-032-4/+6
| | | | properly
* Bug fix in neighbors: serverURI now always has a trailing '/'... neighbors ↵Diva Canto2010-12-291-1/+1
| | | | were not getting notified.
* WARNING: simulator config var change! This affects only system-facing ↵Diva Canto2010-12-271-2/+12
| | | | | | configs. Nothing to do if you follow the rules of not messing with Grid.ini and GridHypergrid.ini. Change the remote Grid region module so that it takes the network connector as a config variable. This allows the region plugin to be reused for both Robust and Simian network connectors.
* Fixes mantis #5270 -- Map tiles for hyperlinks not showing in world map for ↵Diva Canto2010-12-141-22/+87
| | | | grided sims.
* Plumb a code path for the entity transfer module to ask a destination sceneMelanie2010-12-092-0/+34
| | | | whether or not an agent is allowed there as a root agent.
* Added creator info across the board -- TaskInventoryItems and InventoryItems ↵Diva Canto2010-11-212-3/+46
| | | | | | themselves. Tested. Seems to be working, main tests pass. Nothing done for IARs or HG transfers yet -- this only works for OARs for the time being. New migration in inventory table in order to make CreatorID varchar(255).
* Removed a couple of very verbose debug messages.Diva Canto2010-10-311-2/+2
|
* Merge branch 'justincc-dev'Justin Clark-Casey (justincc)2010-10-292-4/+4
|\
| * for now, comment out some older or redundant log debug lines to make ↵Justin Clark-Casey (justincc)2010-10-292-4/+4
| | | | | | | | diagnostics easier