aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Services/LoginService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-08-28minor: formatting and commentsJustin Clark-Casey (justincc)1-1/+12
2009-08-17Added one conditional missing on login, for creating inventory if it doesn't ↵Diva Canto1-1/+13
exist already. This hopefully fixes the master avatar problems on standalone.
2009-08-16uh. how about *really* removing it, and not just write a comment above, hey ↵Diva Canto1-1/+1
diva?
2009-08-16Remove the call to ResetAttachments upon login. The info in the DB should ↵Diva Canto1-1/+3
always have {itemID, assetID}.
2009-07-10* minor: Make GridCommon.ini.example refer to inventory service rather than ↵Justin Clarke Casey1-9/+27
asset where appropriate * Send debug level notice to console if a user fails authentication
2009-07-07* Allowing LLSD logins to do silent logout of last hung session on ↵Arthur Valadares1-8/+17
standalone only, following the already implemented XMLRPC behavior
2009-06-27Make cleartext authentication case sensitive. Thanks jhurliman for spotting ↵Dahlia Trimble1-2/+2
this.
2009-06-11InterServiceInventoryService references *almost* completely removed from the ↵diva1-5/+22
simulator. Only a couple left, not important. Also updated the login tests -- Justin, this time I was able to fix this by myself :)
2009-06-01* Making silent logoff of old hung sessions for new connections default forArthur Valadares1-2/+2
StandAlone users. Not touching grid.
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-29* Allows standalone region users to skip the "You must wait 5 minutes to log ↵Arthur Valadares1-4/+15
again" message and allow the region to kick the old user and log the new one without reporting any failure. Default is still to show message and fail login
2009-05-29* refactor: Remove redundent prim id attribute on Scene.AddSceneObject()Justin Clarke Casey1-2/+1
2009-05-23* Pipes IPEndPoint through all Login methods, including LLSD/OSD login paths.Adam Frisby1-7/+7
2009-05-23* Pipes requestors IP address through all XmlRpcRequest delegates. This is ↵Adam Frisby1-2/+3
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-05-05- moving banned check and public/private check toDr Scofield1-2/+4
Scene.NewUserConnection() - adding reason reporting this enforces estate bans very early on and prevents us from circulating client objects that we'd then have to retract once we realize that the client is not allowed into the region
2009-04-23* Add user data plugin to store temporary profiles (which are distinct from ↵Justin Clarke Casey1-1/+1
cached) * Plugin not yet used * Existing functionality should not be affected in any way
2009-04-22* Fission OGS1UserServices into user service and OGS1 user data plugin ↵Justin Clarke Casey1-6/+7
components * Make OGS1UserServices inherit from UserManagerBase * This allows grid mode regions to use the same user data plugin infrastructure as grid servers and standalone OpenSims
2009-04-18Commit agent to DB immediately after creation, for LLSD logins too. ↵diva1-0/+6
Addresses mantis #3471. Requires upgrade of User Server in grid mode for this fix to kick in.
2009-04-17* Change inventory archiver module to use profile cacheJustin Clarke Casey1-1/+2
* Clean up some log messages
2009-04-14Adds session authentication upon NewUserConnections. Adds user key ↵diva1-0/+46
authentication (in safemode only) upon CreateChildAgents. All of this for Hypergrid users too. This addresses assorted spoofing vulnerabilities.
2009-04-01Added AllowLoginWithoutInventory to LoginService, to be overwritten in ↵diva1-11/+30
subclasses. Default is false. HGLoginAuthService sets it true. Better error handling dealing with inventory service faults.
2009-03-31Update svn properties, add copyright header, formatting cleanup.Jeff Ames1-1093/+1093
2009-03-29Another bit of refactoring to try to make sense of ↵diva1-1093/+1093
OpenSim.Framework.Communications. Everything that looks like a service, with service handlers, moved to .Services -- i.e. LoginService and Response, and GridInfoService. The rest of the changes were to adapt to the new locations of those files.
2009-03-20* Normalized and pulled GetInventorySkeleton up.lbsa711-31/+79
2009-03-20* De-duplicated login service some morelbsa711-1/+32
* Normalized m_inventoryService * Pulled AddActiveGestures up
2009-03-12Update svn properties, formatting cleanup.Jeff Ames1-3/+3
2009-03-12* Another stab at refactoring up the CustomiseResponse function. Two fixes:lbsa711-9/+147
* 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-141/+9
2009-03-10*** POTENTIAL BREAKAGE ***lbsa711-9/+141
* 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-0/+3
2009-03-09* minor: remove some mono compiler warningsJustin Clarke Casey1-5/+5
2009-03-08Making the web_login_key code work, even if the LL Viewer doesn't support ↵diva1-4/+19
it. Other clients can launch the LL Viewer with something like this, for example: Process.Start("C:\\Program Files\\SecondLife\\SecondLife.exe", "-loginuri " + loginuri + "?web_login_key=" + web_login_key + " -login " + firstName + " " + lastName + " -multiple"); This requires a prior step for actually getting the key, which can be done like this: http://localhost:9000/?method=login&firstname=barak&lastname=obama&password=123&show_login_form=FALSE
2009-02-21Add copyright headers. Minor formatting cleanup.Jeff Ames1-1/+1
2009-02-12* optimized usings.lbsa711-2/+2
2009-01-23* Extend archive test to check for the presence of a control file in a saved ↵Justin Clarke Casey1-0/+1
archive
2009-01-21- remove extra "; in http_loginform.html.example; fix issue 3025Mike Mazur1-2/+2
- sync up default HTML generated in LoginService.cs with that in http_loginform.html.example
2009-01-05* Extend stub to test the successful login of a user on the local login serviceJustin Clarke Casey1-2/+0
* Test does not do authentication
2009-01-05* Check in login service tests beachheadJustin Clarke Casey1-6/+6
2008-12-27* Eliminate a possible null reference from the LLSDLogin method.Teravus Ovares1-0/+4
2008-12-05killing warnings, reformatting RemoteAdminPluginDr Scofield1-1/+1
2008-12-05some small refactoring of the LoginService to allow sub classes to override ↵MW1-11/+18
the LLSD login authentication
2008-11-30Update svn properties. Add copyright header. Minor formatting cleanup.Jeff Ames1-1/+1
2008-11-28* Changed name of auth function to better reflect actual uselbsa711-2/+3
2008-11-25Add copyright headers. Minor formatting cleanup.Jeff Ames1-1/+1
2008-11-25* minor: eliminate mono compiler warningsJustin Clarke Casey1-1/+1
2008-11-25* First step in refactoring the login code - extracting the authenticationlbsa711-43/+49
2008-11-19Reapply r7369 r7367 r7366 r7370 r7381. This brings it back up to the newMelanie Thielker1-4/+4
libOMV.
2008-11-19Reverting the texture sending patch and the new libOMV. This makes thisMelanie Thielker1-4/+4
release a direct descendant of the stable 7364, with all the features and none of the issues. This omits the following patch chain: r7383 r7382 r7381 r7377 r7375 r7373 r7372 r7370 r7369 r7368 r7367 r7366
2008-11-18* Added and removed debug information relating to client connectionsAdam Frisby1-1/+1
* Minor client fixes * Added the ability for a client to login without a UserProfile, allowing certain alternate clients to connect to the region.
2008-11-17* Update libOMV to r2359. This is necessary for the progressive texture patchJustin Clarke Casey1-4/+4
* Update libopenjpeg as well for this patch. * Appears to be okay on a very short sniff test * Source code will be placed in opensim-libs shortly