aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Authorization (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-02Another attempt at sorting out the auto group chicken and egg problems.onefang3-6/+11
Are you a local? Asking for a friend.
2019-06-03Add DefaultRegionAccess in [AuthorizationService] section.onefang1-1/+2
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang2-10/+10
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-13/+21
2012-11-13Last 27 modules' directives (service connectors out).Diva Canto2-0/+4
2012-05-03minor: resolve some mono compiler warningsJustin Clark-Casey (justincc)1-2/+2
2012-03-19Fix a bug where logins to standalones would fail if the RegionReady module ↵Justin Clark-Casey (justincc)1-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
2012-03-17Region access control! Region operators can now specify things like ↵Diva Canto2-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.
2011-09-24Don't try and resolve user account for authorization if the agent has come ↵Justin Clark-Casey (justincc)1-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.
2011-08-23remove mono compiler warningsJustin Clark-Casey (justincc)1-4/+0
2011-07-23Pass the first name and last name from the agent circuit data to the ↵Justin Clark-Casey (justincc)2-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
2011-02-07Thanks Tokeiito for noticing this bug. mantis #5366Diva Canto1-1/+1
2010-01-07* Finished SimulationServiceConnectorDiva Canto1-3/+3
* Started rerouting calls to UserService. * Compiles. May run.
2009-12-07Same for the remote auth connectorMelanie1-1/+1
2009-10-01Formatting cleanup.Jeff Ames2-2/+2
2009-09-16updated the IAuthorizationService interface so that a message is passed back ↵Rob Smart2-4/+5
and can be displayed at the client when an avatar is denied access to a region
2009-09-13Formatting cleanup.Jeff Ames1-1/+1
2009-09-11Minor indentation cleanup.Diva Canto1-2/+3
2009-09-11Changed RemoteAuthorizationServiceConnector so that it implements the ↵Rob Smart1-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.
2009-09-10Changed the interface of IAuthorizationService to get less data.Diva Canto1-3/+3
2009-09-10adding in working functionality for the remote connectorRob Smart1-1/+1
2009-09-10The stubs for an authorization service, at the moment the service will ↵Rob Smart2-0/+254
always grant access to an avatar entering the region if requested.