aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services (follow)
Commit message (Collapse)AuthorAgeFilesLines
* minor: Comment out 2 error level debugging message in authentication codeJustin Clark-Casey (justincc)2014-05-271-1/+1
|
* When creating a new user, create the folders "Current Outfit", "Favorites", ↵Oren Hurvitz2014-05-252-9/+14
| | | | | | and the standard subfolders of "Calling Cards". (If we don't create them now then they'll be created later by the viewer, but why wait.)
* Adds optional HTTP Basic Authentication to Robust service connectors.Diva Canto2014-05-2311-59/+130
|
* Tell QueryAccess explicitly whether the user is coming in via Teleport or ↵Oren Hurvitz2014-05-192-2/+4
| | | | | | Cross, because the permission checks are different. Previously we used a heuristic of checking if the entry position is 0 to differentiate between Teleport and Cross, but that doesn't work anymore since we've started providing the precise entry position for cross, too. That's required in order to ensure that the user is allowed to enter the parcel that he's walking into.
* Log the user when an inventory operation is blocked because the item/folder ↵Oren Hurvitz2014-05-191-14/+14
| | | | isn't in the Suitcase
* Return more specific error messages if an attempt to enter a region fails ↵Oren Hurvitz2014-05-191-1/+1
| | | | due to permissions (in QueryAccess and IsAuthorizedForRegion)
* Fix recent asset request timeout issue by commenting out (for now) the ↵Justin Clark-Casey (justincc)2014-05-141-10/+14
| | | | | | | | | m_maxAssetRequestConcurrency mistakenly passed in as a timeout to SynchronousRestObjectRequester.MakeRequest() For a long time, possibly forever, the m_maxAssetRequestConcurrency was mistakenly passed in as a 30 ms timeout rather than as a concurrent connection limiter. This didn't come to light until the timeout was actually used in recent commit faf9ba53 Since this hasn't been operational for a long time and in release candidate phase, commenting it out for now though will need to revisit this. Relates to http://opensimulator.org/mantis/view.php?id=7165
* Fixed error if a user didn't have a "Current Outfit" folder in their suitcase.Oren Hurvitz2014-05-121-9/+12
| | | | This fixes http://opensimulator.org/mantis/view.php?id=7161
* minor: Capitalize Hypergrid help category like othersJustin Clark-Casey (justincc)2014-05-081-5/+5
|
* Log whenever an inventory operation is blocked because the item/folder isn't ↵Oren Hurvitz2014-05-061-8/+52
| | | | in the Suitcase
* - When sending the "My Suitcase" folder to the client, always claim it has ↵Oren Hurvitz2014-05-062-9/+9
| | | | Folder Type 8. (Previously we had used Folder Type -1 in one place, and LLClientView didn't even bother changing Folder Type 100 to anything else.)
* Improved HTTP loggingOren Hurvitz2014-04-291-1/+6
|
* Removed dependency on Linq in OpenProfileClientOren Hurvitz2014-04-281-1/+0
|
* Revert "When linking a Hypergrid region, set the region's flags on the ↵Oren Hurvitz2014-04-241-4/+4
| | | | | | in-memory GridRegion immediately." This reverts commit 463d0b2f8f0cd5f02c14391b763680b23c16e438.
* When linking a Hypergrid region, set the region's flags on the in-memory ↵Oren Hurvitz2014-04-241-8/+4
| | | | | | GridRegion immediately. (When using llTeleportAgent() this *specific* object is used for the teleport, so it should have the correct flags.)
* - Created a standard function to send XML-RPC requests, which logs them like ↵Oren Hurvitz2014-04-241-63/+6
| | | | | | | we do for other types of HTTP activity. - Changed OpenProfileClient to use the new XML-RPC sending function - Improved logging in WebUtil
* Refactored: moved OpenProfileClient to a location where it can be used by ↵Oren Hurvitz2014-04-241-0/+193
| | | | both the Simulators and Robust
* When sending JSON-RPC calls (for UserProfile), use WebUtil instead of ↵Oren Hurvitz2014-04-241-5/+5
| | | | constructing the HTTP requests manually. This allows the calls to be logged when using "debug http all 6".
* Fixed: hypergrid-linking stopped accepting the following format: ↵Oren Hurvitz2014-04-241-11/+21
| | | | | | "http://grid.example.com" (without a region name) Fixes http://opensimulator.org/mantis/view.php?id=7128
* Removed GetUserInventory(). It wasn't being used, and was creating warnings ↵Oren Hurvitz2014-04-236-175/+1
| | | | because it's Obsolete.
* Eliminated many warningsOren Hurvitz2014-04-233-2/+4
|
* Workaround for SRAS: if Store Asset returns 'null' then assume the asset ↵Oren Hurvitz2014-04-231-0/+7
| | | | already exists, and this isn't an error
* Removed an attempt to set a user's presence to "Region 0" when they HG ↵Oren Hurvitz2014-04-211-3/+0
| | | | | | teleport to another grid. a) This shouldn't have been done because at that point the user is still logged-in to the current grid. b) It's not necessary because the user will soon be logged-out completely. c) And it didn't even work because the MySQL database layer prevents setting the region to 0.
* Better logging in PresenceService, to help diagnose presence problems.Oren Hurvitz2014-04-211-25/+63
|
* Better error-handling when storing assets: recognize that 'null' is an error ↵Oren Hurvitz2014-04-202-13/+12
| | | | value
* Stopped setting the Service URL "GatekeeperURI" on users' accounts. It isn't ↵Oren Hurvitz2014-04-201-1/+0
| | | | actually used.
* Better error checking when creating hyperlinks: a) Reject invalid strings; ↵Oren Hurvitz2014-04-131-17/+36
| | | | | | b) Default port is 80, not 0 The change of default port may fix http://opensimulator.org/mantis/view.php?id=7108 , where a user was able to create a Hyperlink to OSGrid from inside OSGrid.
* In teleports, pass the source region to the destination (similar to an HTTP ↵Oren Hurvitz2014-04-098-72/+61
| | | | referrer)
* Log when the presence service logs-out all the users in a regionOren Hurvitz2014-04-091-1/+2
|
* Allow invalidating the users cacheOren Hurvitz2014-04-085-1/+21
|
* Better (amend to previous commit)Diva Canto2014-04-071-12/+19
|
* Avoid calling HELO service on malformed URLs. This is in response to an ↵Diva Canto2014-04-071-0/+6
| | | | exception reported by danbanner.
* When sending QueryAccess to a region, also send the user's Home URIOren Hurvitz2014-04-073-5/+28
|
* When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz2014-04-064-8/+19
| | | | | | entering the grid. This can affect which region to use. E.g., returning users may be allowed to enter any region, whereas users from other grids will have to enter a gateway region. Previously per-user decisions were only made later, but by then it's too late to change which region the user enters.
* When teleporting using Hypergrid, show more informative error messages in ↵Oren Hurvitz2014-04-034-4/+27
| | | | case of error
* Added assets service method AssetsExist(), which returns whether the given ↵Oren Hurvitz2014-04-026-42/+140
| | | | | | list of assets exist. This method is used to optimize sending assets with embedded assets: e.g., when a Hypergrid visitor takes an item into the inventory.
* Profiles local StorageProvider fix, round 3BlueWall2014-03-271-1/+1
|
* Fix to local StorageProvider overrideBlueWall2014-03-271-3/+1
|
* Add support for specifying non-default StorageProviderBlueWall2014-03-271-0/+3
|
* Reinsert code to extract size_x and size_y parameters from GetHomeRegion ↵Justin Clark-Casey (justincc)2014-03-261-0/+12
| | | | | | | | response in UserAgentServiceConnector. This is actually code from commits afb2e07 and cf61cdf For as yet unexplained reasons, the section of these commits which changed UserAgentServiceConnector.cs disappeared from its history between approx Feb 5 2014 and Feb 13 2014. This ought to be impossible. More details to follow in opensim-dev mailing list
* If prim region crossing fails then don't delete the prim from the original ↵Oren Hurvitz2014-03-241-1/+8
| | | | | | region Resolves http://opensimulator.org/mantis/view.php?id=6946
* HGAssetService searches for the "HomeURI" setting in several sections: ↵Oren Hurvitz2014-03-241-4/+4
| | | | | | Startup, Hypergrid, HGAssetService Resolves http://opensimulator.org/mantis/view.php?id=6940
* Moved the linkage between LoginService and HGInventoryService to the config fileOren Hurvitz2014-03-241-4/+5
|
* When a user logs-in, automatically create the Suitcase folderOren Hurvitz2014-03-242-15/+23
| | | | | This is only done if the Suitcase Inventory Service is used. Previously the Suitcase was created at a later time, which meant that it wasn't shown in the viewer until the viewer was restarted.
* When logging in UserAgentServiceConnector, always log the original server ↵Oren Hurvitz2014-03-241-20/+22
| | | | | | URL (the hostname), not the IP This resolves http://opensimulator.org/mantis/view.php?id=6955 (that patch was modified a bit)
* Get the full viewer name even if it's (incorrectly) sent in the 'Channel' fieldOren Hurvitz2014-03-241-5/+7
| | | | | | Recent versions of Firestorm and Singularity have started sending the viewer name in the 'Channel' field, leaving only their version number in the 'Viewer' field. So we need to search both of these fields for the viewer name. This resolves http://opensimulator.org/mantis/view.php?id=6952
* Better error messagesOren Hurvitz2014-03-241-15/+15
| | | | This resolves http://opensimulator.org/mantis/view.php?id=6936
* If we find an existing suitcase folder in ↵Justin Clark-Casey (justincc)2014-03-201-0/+4
| | | | | | | | HGSuitcaseInventoryService.GetRootFolder(), then return that as a response rather than null. Fixes a regression from commit 346644016c529db6ed63aa866c7cf91cec1b635f (Fri Nov 15 23:10:59 2013) This is actually the reverse of zadark's patch in http://opensimulator.org/mantis/view.php?id=6969 But I'm assuming that was a mistake since clearly we should be returning this data - this was original behaviour
* Add delete maptile ability to MapImageService - yet untestedMelanie Thielker2014-03-183-2/+92
|
* 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.