aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authorization/RemoteAuthorizationServiceConnector.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Another attempt at sorting out the auto group chicken and egg problems.onefang2019-08-021-1/+3
| | | | Are you a local? Asking for a friend.
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-191-8/+8
|
* Last 27 modules' directives (service connectors out).Diva Canto2012-11-131-0/+2
|
* 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.
* remove mono compiler warningsJustin Clark-Casey (justincc)2011-08-231-4/+0
|
* Pass the first name and last name from the agent circuit data to the ↵Justin Clark-Casey (justincc)2011-07-231-8/+16
| | | | | | | | | | 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
* Thanks Tokeiito for noticing this bug. mantis #5366Diva Canto2011-02-071-1/+1
|
* * Finished SimulationServiceConnectorDiva Canto2010-01-071-3/+3
| | | | | * Started rerouting calls to UserService. * Compiles. May run.
* Same for the remote auth connectorMelanie2009-12-071-1/+1
|
* Formatting cleanup.Jeff Ames2009-10-011-1/+1
|
* updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart2009-09-161-2/+3
| | | | and can be displayed at the client when an avatar is denied access to a region
* Formatting cleanup.Jeff Ames2009-09-131-1/+1
|
* Minor indentation cleanup.Diva Canto2009-09-111-2/+3
|
* Changed RemoteAuthorizationServiceConnector so that it implements the ↵Rob Smart2009-09-111-4/+45
| | | | | | IAuthorization interface method isAuthorizedForRegion looks up user and region data and delegates the remote authorization check to the AuthorizationServiceConnector This keeps the IAuthorization as clean as possible and moves the dependency of using a UserProfileData object out to the connector from the scene.
* adding in working functionality for the remote connectorRob Smart2009-09-101-1/+1
|
* The stubs for an authorization service, at the moment the service will ↵Rob Smart2009-09-101-0/+113
always grant access to an avatar entering the region if requested.