aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Services/HGLoginAuthService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-05-23* Implements automatic loopback handling for standalone regions. Adam Frisby1-2/+8
* This /should/ make OpenSim behave properly when hosting behind a NAT router and utilizing port forwarding (but the router doesn't support Loopback)
2009-05-23* Pipes IPEndPoint through all Login methods, including LLSD/OSD login paths.Adam Frisby1-1/+1
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby1-4/+4
needed to be able to 'NAT-wrap' the login sequence. * If you have something using XmlRpc that isn't in core, change your method signature from: (XmlRpcRequest request) to: (XmlRpcRequest request, IPEndPoint remoteClient)
2009-04-22* Fix hypergrid standalone login by overriding AddNewUserAgent in HGUserServicesJustin Clarke Casey1-4/+1
2009-04-01Added AllowLoginWithoutInventory to LoginService, to be overwritten in ↵diva1-0/+6
subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults.
2009-03-30HGInventoryService now uses the actual authority portion of the user's key ↵diva1-328/+328
to verify the key.
2009-03-30Sigh. Manual data typing grief.diva1-10/+3
2009-03-29Added Authorization client code that interfaces with HGLoginAuthService. ↵diva1-13/+19
Improved error handling in HGLoginAuthService. Instrumented HGInventoryService so that it can interface both with local and remote user and asset services.
2009-03-29Moved some files around, so that it's easier to share code between ↵diva1-1/+1
standalone and the grid services. Should not affect any functionality.
2009-03-24Added the login region's http to the login response.diva1-32/+10
2009-03-24Preparing the loginauth service for gridmode logins.diva1-0/+5
2009-03-22Moving the LoginAuth service up, so that it can be shared among standalones ↵diva1-6/+3
and the User Server.
2009-03-21Initial support for authentication/authorization keys in UserManagerBase, ↵diva1-232/+349
and use of it in HGStandaloneLoginService (producer of initial key for user, and of subsequent keys) and HGStandaloneInventoryService (consumer of a key). Keys are of the form http://<authority>/<random uuid> and they are sent over http header "authorization".
2009-03-20* Normalized and pulled GetInventorySkeleton up.lbsa711-34/+0
2009-03-20* De-duplicated login service some morelbsa711-36/+4
* Normalized m_inventoryService * Pulled AddActiveGestures up
2009-03-12* Another stab at refactoring up the CustomiseResponse function. Two fixes:lbsa711-138/+5
* Sometimes, null is a valid return value to indicate 'none found'. doh. * Sometimes, the Grid server does not send simURI - this you need to reconstruct yourself. Euw. (I believe) this solves mantis issue #3287
2009-03-11* Reverted r8750 to do another round of debugging on mantis #3287lbsa711-5/+138
2009-03-10*** POTENTIAL BREAKAGE ***lbsa711-138/+5
* Finally got to the point where I could pull up the CustomiseResponse function. Major de-duplication. * Introduced FromRegionInfo on RegionProfileData * This revision needs both grid and standalone testing galore. Work in progress!
2009-03-10* Re-aligned CustomiseResponse function for imminent up-pullinglbsa711-16/+14
2009-03-03Renamed ILoginRegionsConnector to ILoginServiceToRegionsConnector and moved ↵MW1-2/+2
it from OpenSim.Client.Linden to OpenSim.Framework.
2009-03-03Moved Linden protocol login handling to modules in OpenSim.Client.Linden. ↵MW1-59/+61
There are two region modules in there LLStandaloneLoginModule (for standalone mode) and LLProxyLoginModule (for grid mode which just handles incoming expect_user and logoff_user messages from the remote login server) Changed OpenSim.Framework.Communications.Tests.LoginServiceTests to use the LLStandaloneLoginService (from the LLStandaloneLoginModule) rather than LocalLoginService. Really these login tests should most likely be somewhere else as they are testing specific implementations of login services. Commented out the old LocalLoginService as its no longer used, but want to check there are no problems before it gets deleted.
2009-02-17Major change to how appearance is managed, including changes in login and ↵diva1-0/+3
user service/server. Appearance is now sent by the user service/server along with all other loginparams. Regions don't query the user service for appearance anymore. The appearance is passed along from region to region as the avie moves around. And, as before, it's stored back with the user service as the client changes the avie's appearance. Child agents have default appearances that are set to the actual appearance when the avie moves to that region. (as before, child agents are invisible and non-physical).
2009-02-13Add copyright headers. Minor formatting cleanup. Fix some compiler ↵Jeff Ames1-1/+1
warnings. Fix some m_log declarations.
2009-02-12* optimized usings.lbsa711-1/+1
2009-02-07* Refactored UserLoginService.CustomiseResponse to be (almost) text-wide ↵lbsa711-8/+31
identical to LocalLoginService.CustomiseResponse in order to be able to pull them up.
2009-02-07Thank you dslake for a patch that:lbsa711-1/+1
* fixes mantis #3092: User Server sets agent starting position to passed x/y/x instead of x/y/z
2009-01-06* prune and regrade log messages relating to client login and logoutJustin Clarke Casey1-1/+1
2009-01-06* Rename GetRandomCapsPath() to GetRandomCapsObjectPath() to fit in with ↵Justin Clarke Casey1-1/+1
terminology used elsewhere * Last build break was probably a Bamboo failure - hopefully this should succeed
2009-01-06* Move common string aggregation for caps seed path to a method in CapsUtilJustin Clarke Casey1-3/+4
2009-01-06* minor: Move GetRandomCapsPath() to a CapsUtil classJustin Clarke Casey1-1/+2
2009-01-05* Add seed cap check to login testJustin Clarke Casey1-1/+1
2009-01-05* Check in login service tests beachheadJustin Clarke Casey1-3/+3
2008-12-17Kicking child agents off on the first login after a client crash. The child ↵diva1-1/+24
agents kickoff was missing from when this is run in grid mode. But, worse, turns out that this whole feature of kicking off the user after a crash was entirely missing from standalone mode.
2008-12-11Correct the last checkin.Homer Horwitz1-1/+1
2008-12-11Move from IP to hostname for seed caps on login, for gridmode and standalone.Homer Horwitz1-2/+2
All the other caps (except the initial one) are already sent with hostname instead of IP. NOTE: This changes gridserver and userserver
2008-11-28* refactor: move CreateUser into UserServiceAdminJustin Clarke Casey1-8/+3
2008-11-23Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke1-1/+1
This patch adds the option of adding the email when you create a new user. This works in Gridmode as none Gridmode. This option is also added to RemoteAdminPlugin. With a new handler you can create a user with a email.
2008-11-14* test: Add scene root agent test stub, since I'll be picking up with ↵Justin Clarke Casey1-3/+1
something else the next time I start coding on OpenSim
2008-10-01* Fixed a mangled Seed caps handler definition on login to region in ↵Teravus Ovares1-1/+22
standalone where port wasn't the http port. * Removed spurious warning message * More debug in EventQueueGet Module to figure out why we're loosing the handlers.
2008-09-26* Patch from JHurlimanTeravus Ovares1-3/+3
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-24Add persistence of active gestures. This needs an UGAIM update to work.Homer Horwitz1-0/+30
Active gestures are sent as part of the login-response. Added fetchActiveGestures to SQLite and MySQL; added an empty one for MSSQL and NHibernate. Using the empty ones won't cause errors, but doesn't provide persistence either, of course.
2008-09-19* Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey1-23/+41
startup (script startup doesn't count here) * There was a small window where region logins were allowed before modules were loaded - avatars logins that hit this window could have caused bad things to happen. * A similar change will follow for grid mode sometime soon
2008-09-14* Converted a number of methods within the login processes from private to ↵Adam Frisby1-8/+8
protected. * Made several methods virtual to allow derivative overrides. * Minor cleanups.
2008-09-12* Check in first part of http://opensimulator.org/mantis/view.php?id=2073Justin Clarke Casey1-129/+128
* This patch aims to introduce look at direction persistence between logins. It won't be active until the second part of the patch is committed in about two weeks time. At this point, region servers that haven't upgraded past this revision may run into problems * This checkin upgrades the user database. As always, we recommend you have backups in case something goes wrong. * Many thanks to tyre for this patch.
2008-09-09Update svn properties, formatting cleanup.Jeff Ames1-1/+1
2008-09-07* Improve login failure handling.Justin Clarke Casey1-2/+4
* Now it should properly inform the user and stop a login if a region server could not be contacted in order to expect a user (the last commit didn't actually quite work correctly)
2008-09-06* This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares1-6/+6
* This is a HUGE OMG update and will definitely have unknown side effects.. so this is really only for the strong hearted at this point. Regular people should let the dust settle. * This has been tested to work with most basic functions. However.. make sure you back up 'everything' before using this. It's that big! * Essentially we're back at square 1 in the testing phase.. so lets identify things that broke.
2008-08-26* Fixed a bug that occurred if your home region wasn't logged in, in ↵Teravus Ovares1-12/+30
standalone. It wouldn't let you in even if your destination region is online with a 'region x not found' message. * The purpose of the check was to ensure that your home region was sent to your client properly when you connected. However, the desired result is that if the home region is down, but the destination region is online, the user should still get in. * Changes: if the home region isn't available, set the message to the client so that the home region is the destination region.
2008-08-21Mantis#904. Thank you kindly, Jonc for a patch that solves:Charles Krinke1-3/+9
LocalLoginService does not send the last position coords in the login response. This patch fixes the issue.
2008-07-24* refactor: Remove now redundant inventory server url being passed to ↵Justin Clarke Casey1-1/+1
GetInventorySkeleton