aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/HypergridService/GatekeeperService.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* In teleports, pass the source region to the destination (similar to an HTTP ↵Oren Hurvitz2014-04-091-6/+8
| | | | referrer)
* When preparing a Hypergrid teleport, tell the receiving grid which user is ↵Oren Hurvitz2014-04-061-2/+4
| | | | | | 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-031-1/+12
| | | | case of error
* 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
* Allow one to specify a DefaultHGRegion flag in [GridService] in order to ↵Justin Clark-Casey (justincc)2013-09-021-1/+1
| | | | | | | | | | allow different default regions for HG and direct grid logins. This requires a new GridService.GetDefaultHypergridRegions() so ROBUST services require updating but not simulators. This method still returns regions flagged with just DefaultRegion after any DefaultHGRegions, so if no DefaultHGRegions are specified then existing configured defaults will still work. Immediate use is for conference where we need to be able to specify different defaults However, this is also generally useful to send experienced HG users to one default location and local users whose specified region fails (e.g. no "home" or "last") to another.
* Revert "Make HG logins fall back to fallback regions if the desired region ↵Justin Clark-Casey (justincc)2013-08-261-24/+3
| | | | | | | | fails." This is very similar to my earlier revert in bcb8605f8428a9009a2badf9c9eed06d9f59962c and fails for the same reasons. Reverting this change because it causes a problem if access is denied to the user. This reverts commit c7a8afbb8da40e09252d58d95c89b8a99a684157.
* Revert "Added some more debug messages."Justin Clark-Casey (justincc)2013-08-261-4/+1
| | | | | | | | Fallback doesn't work at this level as the change of destination isn't communicated to the source region/viewer Reverting because this introduces a bug when access does fail. More detail in revert of main commit. This reverts commit ec32c1d4b69e4219fe44a38bcbc411e7996641f1.
* Added some more debug messages.Diva Canto2013-08-241-1/+4
|
* Make HG logins fall back to fallback regions if the desired region fails.Diva Canto2013-08-241-3/+24
|
* minor: Make logging in GatekeeperService.LoginAgent() a bit more detailed so ↵Justin Clark-Casey (justincc)2013-08-221-4/+8
| | | | that we can distinguish between simultaneous logins
* Revert "Implement ability for hg logins to try fallback regions just like ↵Justin Clark-Casey (justincc)2013-08-221-39/+5
| | | | | | | | | | | local logins." This approach does not work - it is taking place too far down the login process where really the region checking could only be done when the hg map tiles are linked on the main map (messy and probably impossible) or possibly when the final destination is fetched at the very first stage of teleport (which couldn't be done without a protocol change to pass the agentID as well as the requested regionID) This reverts commit 3d9b73c47a15cf00150ac80570fea88de8cecbdf.
* Implement ability for hg logins to try fallback regions just like local logins.Justin Clark-Casey (justincc)2013-08-211-5/+39
| | | | | These would be specified in the [GridService] section of Robust.HG.ini, which already lists these in the example text. Untested patch so that Neb can easily pull in for testing, though shouldn't disrupt existing hg logins since fallback processing is a bit of code stuck on the end of the login sequence.
* Gatekeeper: stop bogus agents earlier, here at the Gatekeeper. No need to ↵Diva Canto2013-07-131-0/+6
| | | | bother the sim.
* Added an interface to an external ban service. With this commit, the ↵Diva Canto2013-04-271-4/+21
| | | | interface is used only in Hypergrided worlds (Gatekeeper), although in those, it applies to both local and foreign users. The Ban service itself is not in core; it is to be provided externally.
* Switched to using the other Util function with a default value.Diva Canto2013-02-271-1/+2
|
* Moved the HG default variables out of [Startup] and into their own section ↵Diva Canto2013-02-271-1/+1
| | | | [Hypergrid] in *Common.ini.example. Backwards compatible for now.
* Added new Util function for reading config vars that's more generic than the ↵Diva Canto2013-02-221-1/+1
| | | | one I added yesterday -- this is for helping move config vars out of [Startup]
* Simplification of HG configs: HomeURI and GatekeeperURI now are defined as ↵Diva Canto2013-02-211-1/+2
| | | | default under [Startup]. They can then be overwritten in the other sections (but probably shouldn't). I kept the existing code for backwards compatibility, so this should not cause any breaks from people's current configurations. But people should move to have these 2 vars under [Startup] -- see OpenSim.ini.example and Robust.HG.ini.example. And yes, both names now end with "URI" for consistency.
* HG: Hopefully this fixes the issues with port 80 once and for all.Diva Canto2012-11-071-1/+22
|
* Use GridUser properly for foreign users.Diva Canto2012-09-261-4/+27
|
* More HG 2.0: access control at the Gatekeeper. \o/Diva Canto2012-09-211-8/+54
|
* Remove some mono compiler warningsJustin Clark-Casey (justincc)2012-06-301-2/+0
|
* User level based restrictions for HyperGrid teleports, asset uploads, group ↵Snoopy Pfeffer2012-03-271-0/+13
| | | | creations and getting contacted from other grids. Incoming HyperGrid teleports can also be restricted to local users.
* Fixes mantis #5923Diva Canto2012-03-081-2/+3
|
* Propagate our teleport flags on loginsBlueWall2012-02-181-2/+6
|
* HG: Renamed one methodDiva Canto2011-12-041-1/+1
|
* Dont' bother with a userAgentService != null check right after we've ↵Justin Clark-Casey (justincc)2011-11-151-11/+10
| | | | constructed it
* Thank you Snoopy for a patch that adds some filtering to client versions ↵Diva Canto2011-04-271-2/+37
| | | | allowed at login and HG-login times. NOTE: additional (optional) configuration variables in [LoginService] and [GatekeeperService]. See .examples.
* minor: resolve some mono compiler warningsJustin Clark-Casey (justincc)2011-01-181-1/+1
|
* fixes a problem with ending slashes in GatekeeperService to verify ↵Myan Thor2010-12-291-3/+5
| | | | session-addresses
* Show map tile for hyperlinks. Perform Check4096 before adding a hyperlink.Marck2010-12-131-16/+13
| | | | | | Configuration option AssetService in section [GridService] must be set to enable this functionality. Map tiles do currently not show for hyperlinks set in simulators that are connected to grids, see Mantis #5270.
* Fixed some inconsistency with trailing /. Made debug messages consistent. ↵Diva Canto2010-12-051-1/+3
| | | | Changed the stored region names of HG regions. Increased the size of regionName in DB.
* Merge branch 'master-core' into mantis5110Jonathan Freedman2010-12-051-1/+2
|\
| * Make gatekeeper's address check case-insensitive.Marck2010-11-271-1/+2
| |
| * Revert "Merge remote branch 'otakup0pe/mantis5110'"Justin Clark-Casey (justincc)2010-10-221-1/+1
|/ | | | | This reverts commit 21187f459ea2ae590dda4249fa15ebf116d04fe0, reversing changes made to 8f34e46d7449be1c29419a232a8f7f1e5918f03c.
* * refactor refactor refactor ServerURI 4 lyfeJonathan Freedman2010-10-021-1/+1
|
* Finished implementing ViaLogin vs ViaHGLogin. Removed lookup on ↵Diva Canto2010-08-191-10/+18
| | | | myipaddress.com. Also removed client IP verification upon UDP connection that had been left there -- we can't do that in general.
* Thanks Marck for the patch to mantis #4941 (shortening avies' names on HG)Diva Canto2010-08-151-1/+10
|
* this is so bad, brain is beyond fried. must stop.Diva Canto2010-08-031-1/+1
|
* sigh. fried brain.Diva Canto2010-08-031-1/+1
|
* One more buglet related to the issue at hand.Diva Canto2010-08-031-1/+1
|
* One more thing related to the previous commit. Must avoid all in-process ↵Diva Canto2010-08-031-10/+15
| | | | remote calls.
* Bug fix (HG): mantis #4891. This doesn't actually fix the underlying bug, ↵Diva Canto2010-08-031-50/+53
| | | | | | but it clears up the circular dependency issue between Gatekeeper and UserAgents that had made me resort to in-process remote calls, which, in turn, were hitting bugs down there somewhere in mono. NOTE: CONFIGURATION CHANGE IN ROBUST.HG.INI.EXAMPLE !!!###!!!
* Assorted bug fixes in hypergrid linking.Diva Canto2010-05-031-1/+2
|
* List of friends now retrieved upon login. Configured and tested in ↵Diva Canto2010-02-251-0/+1
| | | | standalone only.
* Batter debug messages.Diva Canto2010-01-311-1/+2
|
* Assorted bug fixes related to hyperlinkingDiva Canto2010-01-311-7/+2
|
* HG 1.5 is in place. Tested in standalone only.Diva Canto2010-01-281-45/+32
|
* Added ExternalName config on Gatekeeper.Diva Canto2010-01-271-1/+4
|
* Check for impersonations at the Gatekeeper.Diva Canto2010-01-181-29/+52
|