aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authorization (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Another attempt at sorting out the auto group chicken and egg problems.onefang2019-08-023-6/+11
| | | | Are you a local? Asking for a friend.
* Add DefaultRegionAccess in [AuthorizationService] section.onefang2019-06-031-1/+2
|
* Dump OpenSim 0.9.0.1 into it's own branch.onefang2019-05-192-10/+10
|
* Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel2016-11-031-13/+21
|
* Last 27 modules' directives (service connectors out).Diva Canto2012-11-132-0/+4
|
* minor: resolve some mono compiler warningsJustin Clark-Casey (justincc)2012-05-031-2/+2
|
* Fix a bug where logins to standalones would fail if the RegionReady module ↵Justin Clark-Casey (justincc)2012-03-191-7/+2
| | | | | | | was not active Unfortunately, the OnLoginsEnabled event is currently only guaranteed to fire if the RegionReady module is active. However, we can instantiate the AuthorizationService in the module RegionLoaded method since by this time all other modules will have been loaded
* Region access control! Region operators can now specify things like ↵Diva Canto2012-03-172-27/+140
| | | | DisallowForeigners (means what it says) and DisallowResidents (means that only admins and managers can get into the region). This puts the never-completed AuthorizationService to good use. Note that I didn't implement a grid-wide Authorization service; this service implementation is done entirely locally on the simulator. This can be changed as usual by pluging in a different AuthorizationServicesConnector.
* 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-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
* 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-012-2/+2
|
* updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart2009-09-162-4/+5
| | | | 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.
* Changed the interface of IAuthorizationService to get less data.Diva Canto2009-09-101-3/+3
|
* 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-102-0/+254
always grant access to an avatar entering the region if requested.