aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/LoginService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
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
2008-10-01Add a user server XMLRPC method to set the MOTD and the minimum GodLevelMelanie Thielker1-0/+9
required to log in. set_login_params accepts avatar_uuid and password of a user with god level 200 or more, and allows setting either or both the login_motd or login_level
2008-09-26* Patch from JHurlimanTeravus Ovares1-7/+7
* Updates to libomv r2243, * Remove lots of unnecessary typecasts * Improves SendWindData() Thanks jhurliman. * Will update OpenSim-libs in 10 minutes..
2008-09-19* Only allow logins on standalone when the sim has completed it's initial ↵Justin Clarke Casey1-2/+2
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-6/+6
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-26/+9
* 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-3/+3
2008-09-07* Improve login failure handling.Justin Clarke Casey1-21/+20
* 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-14/+14
* 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-19Attachment persistence (Mantis #1711)Melanie Thielker1-0/+6
Change user server to handle attachment assets record properly. Ensure that attachments are not re-rezzed on region crossing. Persistence will NOT WORK with earliser UGAI!! Change region server to match.
2008-08-18Formatting cleanup.Jeff Ames1-5/+4
2008-08-16Mantis#1960. Thank you kindly, Tyre for a patch that:Charles Krinke1-0/+3
This small patch enables updates to the lastLogin information in the `users` table
2008-07-29Mantis#1849. Thank you kindly, Kinoc for a patch that:Charles Krinke1-29/+64
- LLSDLoginMethod should error out in similar way to XMLRPC login for already logged in condition - Have LLSDLoginMethod mirror the sequence of the XMLRPC for easier side by side compare - Log messages report which process XML or LLSD generated them for easier debugging
2008-07-24* refactor: Remove now redundant inventory server url being passed to ↵Justin Clarke Casey1-17/+4
GetInventorySkeleton
2008-06-29disabled the multiple inventory server support in login service again.MW1-8/+8
And reverted CachedUserInfo back to revision 5262. I don't think most of the inventory problems that people are reporting are due to these, but its easier to deal with one set of potential problems at a time, and I'm not going to get any time in the week to work on this anyway.
2008-06-29couple of small fixes to try to fix support for multiple inventory servers ↵MW1-2/+14
in the loginservice
2008-06-28more disabling multiple inventory server support in LoginServiceMW1-2/+2
2008-06-28more work on the support for multiple inventory servers. MW1-3/+3
The Login service should now read/create new inventory on the inventory server that is set in a users profile. Also added "Add-InventoryHost" console command to add a support for a new server to a region. So it would be good if someone could test this. Set up the grid as normal, but then also run extra inventory server on a different computer (well actually it just has to be on a different network hostname, so one using "http://localhost:8004" and one using "http://127.0.0.1:8005" should work) then you need to manually edit the user profile database to set the new servers url in a user's "userInventoryURI" field. Then on a region server, use the Add-InventoryHost to add the new server url (always include the full url, including http, but don't add a final /) Login with that account and see if the inventory works. Of course these needs to be made more user friendly.
2008-05-31* Implements UserServer logoff in a few situationsTeravus Ovares1-1/+14
* User tries to log-in but is already logged in. Userserver will send message to simulator user was in to log the user out there. * From the UserServer, admin types 'logoff-user firstname lastname message'. * Some regions may not get the message because they're not updated yet.
2008-05-16Formatting cleanup.Jeff Ames1-54/+54
2008-05-01* Breaking all the code, breaking all the code..!Adam Frisby1-1/+1
* Made a bunch more members static, removed some dead code, general cleaning.
2008-05-01* Cleaned namespaces of entire solution. OpenSim directories now correspond ↵Adam Frisby1-15/+15
with namespaces.
2008-04-23* Fix for mantis #1025 - Region always reports that location is unavailable. ↵Adam Frisby1-2/+3
Thanks Lulurun.
2008-04-21* Optimised using statements and namespace references across entire project ↵Adam Frisby1-5/+6
(this took a while to run).
2008-04-20* On grid mode, if the inventory service is responding but returning an ↵Justin Clarke Casey1-2/+2
empty response to a whole agent inventory request, then post an inventory login failure message. IMO, this is better than allowing the agent to login with an apparantly blank inventory.
2008-04-15* Make it easier to follow logins on the user server by changing and tidying ↵Justin Clarke Casey1-18/+22
up log messages
2008-04-15* Send a meaningful response to both the user server console and the client ↵Justin Clarke Casey1-13/+28
if a login fails because the inventory service has failed.
2008-04-10changing UserAgentData to use properties. This caused moreSean Dague1-7/+7
grief than expected, as monodevelop doesn't like to refactor properties of properties.
2008-04-10further renaming of properties for claritySean Dague1-5/+5
2008-04-10moved fields to properties for UserDataProfile, which wasSean Dague1-23/+23
actually a little more work than I expected given the copious use of out params.
2008-04-07more refactoring, this time on InventoryFolderBaseSean Dague1-5/+5
* wrap attributes in properties * clean up names a little bit * clean up name styles
2008-03-31* Set Svn Properties eol-style: |337Teravus Ovares1-1/+1
2008-03-29* Various 1.19.0.5 grid inventory request fixes. These will only take ↵Justin Clarke Casey1-1/+1
affect once the region and the grid servers have upgraded to this revision * You may also need to clear your cache before seeing any effect. * These fixes may or may not affect inventory on the RC client. * These fixes should make non-root folders work better, stop inventory failure on first login, allow trash to be emptied and make texture picker in object edit view work properly * Fixes are 1) make initial root folder request wait for async inventory delivery, 2) deliver all folders in the initial login skeleton, not just the root child ones and 3) deal with situations where we receive child folders from the inventory service before their parent is received.
2008-03-28* Refactor: Rename CreateInventoryData() to GetInventorySkeleton()Justin Clarke Casey1-33/+17
* Replace the unused default GetInventorySkeleton() impleemntation with an abstract declaration - less confusing this way imho * Add some comments
2008-03-28* Remove pointless boolean on AgentInventory.CreateRootFolder()Justin Clarke Casey1-1/+1
2008-03-23* minor: check in the rest of a comment I forgot to finish off in the last ↵Justin Clarke Casey1-1/+1
revision
2008-03-23* Start passing around a region server's http port in RegionInfo.Justin Clarke Casey1-18/+39
* This means that caps methods (editing scripts, poss map functions, etc) on non-home regions should now work with servers which are listening for http ports on a non default (9000) port. * If you are running a region server, this may only work properly once your grid server upgrades to this revision * PLEASE NOTE: This shouldn't cause inter-region problems if one end of the connection hasn't upgraded to this revision. However if it does, the instability will persist until the grid and region (and possibly all the region's neighbours) have upgraded to this revision. * This revision also adds extra login related messages, both for success and failure conditions
2008-03-18Formatting cleanup. Minor refactoring.Jeff Ames1-2/+5
2008-03-18Since we don't yet have a reliable way to release the lock that prevents a ↵Teravus Ovares1-1/+1
user from logging in a second time if they're already registered as logged in; * If a user logs in and they are noted as agentOnline. Set agentOnline = false and send a 'you're already logged in' message to the user asking them to wait 5 minutes. These 5 minutes are not enforced (because there's no foolproof interlock release yet without the grid operator getting a support call for every little sim crash). When the user gets the message, they can log-in immediately after it, but the user can expect weird results if they don't wait 5 minutes and log-in to the region they were in previously.
2008-03-18Formatting cleanup.Jeff Ames1-26/+25
2008-03-18Formatting cleanup.Jeff Ames1-87/+76
2008-03-18Building on Joha's update...Teravus Ovares1-3/+19
* Server now listens to the client's start location request for 'home' or 'last' and sends the user to the home location or the last location.
2008-03-18Last position will be stored in the DB on logout, and the avatar can ↵Johan Berntsson1-0/+4
continue from the same position in the next login (only with MySQL at the moment)
2008-02-20Minor cleanup.Jeff Ames1-1/+1
2008-02-13Clean up more unnecessary String.Format callsJeff Ames1-4/+2
2008-02-05Converted logging to use log4net.Jeff Ames1-26/+18
Changed LogBase to ConsoleBase, which handles console I/O. This is mostly an in-place conversion, so lots of refactoring can still be done.
2008-02-04Refactor only: serve stats objects directly through StatsManager singletonJustin Clarke Casey1-12/+6
2008-01-25* Add very basic initial login stats to the user serverJustin Clarke Casey1-2/+24
* Typing 'stats' on the command line will given total number of successful logins today and yesterday * A little bit more to come, probably * Refactoring will follow next