aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/LLLoginService/LLLoginService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-15Bandaid for ghost users, check and remove them from Presence when they log on.onefang1-1/+24
Once again OOP proves it's worse that spaghetti, but cutting up the spaghetti and hiding it all over the kitchen. Note the commented out bits from GateKeeperService.cs, this stuff is checked TWICE, though this time is for HGers, or not.
2019-07-24For the "teleport from above" case, do the right thing.onefang1-13/+15
Which includes looking for designated floor prims, which have ^ as the first character of their description. Don't do "teleport from above" when we have proper coords.
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-58/+153
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-42/+124
2012-10-02string format arguments in wrong orderSignpostMarv1-1/+1
2012-07-05minor: add client name to various login service log messages to disambiguate ↵Justin Clark-Casey (justincc)1-13/+43
messages from concurrent logins. Also adds destination resolution debug log message showing region endpoint. Adding endpoint to the log helps to find issues where the region external host information has been wrongly configured
2012-05-04Calculate the Daylight Savings Time information sent to the viewer based on ↵Justin Clark-Casey (justincc)1-3/+14
US Pacific Standard Time rather than whatever timezone the login server is set to. This is because the viewer doesn't receive a timezone from the server but bases its displays on Pacific Standard Time. However, it still expects to receive notification from the server as to whether or not Daylight Savings Time for PST is in operation. This commit introduces a new DSTZone setting in the [LoginService] config setting that accepts a list of timezone names valid across different platforms to calculate Pacific DST. If you need the old behaviour of calculating DST based on the local timezone of the server running the login service, then please override DSTZone with "local". A mailing list announcement will be made later. Thanks to Olivier Van Helden and Gudule Lapointe for determining this behaviour and providing this patch. From http://opensimulator.org/mantis/view.php?id=5972
2012-03-08Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)1-3/+3
<category/module>" to display commands in a category. This is to deal with the hundred lines of command splurge when one previously typed "help" Modelled somewhat on the mysql console One can still type help <command> to get per command help at any point. Categories capitalized to avoid conflict with the all-lowercase commands (except for commander system, as of yet). Does not affect command parsing or any other aspects of the console apart from the help system. Backwards compatible with existing modules.
2012-02-22V3 SupportBlueWall1-1/+3
The V3 webapps need SSO capability and use OpenID. We need to send both our OpenID server url and a token for the user in the login response.
2012-02-21V3 Support:BlueWall1-1/+3
This starts V3 support by adding a profile server url to the login response. This requires viewer support - which is also being worked on.
2012-02-18Propagate our teleport flags on loginsBlueWall1-0/+2
2011-11-24minor: remove mono compiler warningJustin Clark-Casey (justincc)1-1/+1
2011-11-05Multiple lines in welcome message use '\n' in the welcome message tonebadon1-0/+3
start a new line.
2011-08-30minor: comment out friends number logging from login for nowJustin Clark-Casey (justincc)1-1/+1
2011-08-14Added optional Login Service parameter "Currency" to be able to change the ↵Snoopy Pfeffer1-1/+3
currency name shown in the viewer.
2011-08-02Get rid of AvatarAppearance.Owner to simplify the code.Justin Clark-Casey (justincc)1-1/+1
This is not used for anything - appearances are always properties of objects with ids (ScenePresence, AgentCircuitData) and just has the potential to get out of sync when the appearance is cloned.
2011-06-12People are bound to forget the '/' at the end of MapTileURL, so let's ↵Diva Canto1-0/+8
correct that from the inside.
2011-06-01Add alternate region handling for url based logins as found in login to ↵BlueWall1-3/+15
"home" or "last"
2011-05-24Added necessary code to drop inventory on hg friends using the profile ↵Diva Canto1-10/+20
window, but can't test because this mechanism doesn't seem to work without a profile service.
2011-04-30Renamed OpenSim.Framework.Capabilities.dll to OpenSim.Capabilities.dllDiva Canto1-1/+0
2011-04-27Thank you Snoopy for a patch that adds some filtering to client versions ↵Diva Canto1-3/+37
allowed at login and HG-login times. NOTE: additional (optional) configuration variables in [LoginService] and [GatekeeperService]. See .examples.
2011-01-27Also set Godlike flag. Might be usefulMelanie1-0/+2
2011-01-27Add TeleportFlags.ViaRegionID to the flags sent on login when the regionMelanie1-8/+13
was entered by hand to determine whether or not to honor the landing point
2011-01-18Prune some of the excess logging for client logins.Justin Clark-Casey (justincc)1-1/+1
Didn't touch the appearance related stuff.
2010-12-09Normalized ALL URLs with trailing /'s hopefully. Fixed show hyperlinks ↵Diva Canto1-0/+5
command. mantis #5259
2010-12-05Fixed some inconsistency with trailing /. Made debug messages consistent. ↵Diva Canto1-2/+2
Changed the stored region names of HG regions. Increased the size of regionName in DB.
2010-11-25WARNING: LOTS OF CONFIGURATION CHANGES AFFECTING PRIMARILY HG CONFIGS. Added ↵Diva Canto1-0/+16
capability to preserve creator information on HG asset transfers. Added a new HGAssetService that is intended to be the one outside the firewall. It processes and filters the assets that go out of the grid. Also fixed the normal AssetService to do special things for the main instance (console commands, etc). Moved HGInventoryService to OpenSim.Services.HypergridService. Changed the way the login service gets the ServiceURL configs.
2010-11-13Do not include hyperlinks in a random region search during a login.Marck1-10/+30
Before a random region is chosen, available fallback regions are used for the login.
2010-10-23* a bit of additional debugging:Jonathan Freedman1-4/+3
2010-10-20Major refactoring of appearance handling.Master ScienceSim1-5/+5
AvatarService -- add two new methods, GetAppearance and SetAppearance to get around the lossy encoding in AvatarData. Preseve the old functions to avoid changing the behavior for ROBUST services. AvatarAppearance -- major refactor, moved the various encoding methods used by AgentCircuitData, ClientAgentUpdate and ScenePresence into one location. Changed initialization. AvatarAttachments -- added a class specifically to handle attachments in preparation for additional functionality that will be needed for viewer 2. AvatarFactory -- removed a number of unused or methods duplicated in other locations. Moved in all appearance event handling from ScenePresence. Required a change to IClientAPI that propogated throughout all the IClientAPI implementations.
2010-10-03Added viewer's channel, mac, and id0 to agent circuit data. Also moved ↵Diva Canto1-6/+14
client ip address to agent circuit data, so that it's always there.
2010-09-12Formatting cleanup.Jeff Ames1-1/+1
2010-09-03Added XFF header processing. Untested, for lack of proxy.Diva Canto1-1/+1
2010-08-19Partial rewrite of client IP verification. Not completely finished yet, and ↵Diva Canto1-5/+1
untested. Committing to move to my other computer.
2010-08-09Make fallbacks work, the destination was never actually updated with the ↵meta71-4/+5
fallback details. Signed-off-by: Melanie <melanie@t-data.com>
2010-08-09Remove "Could not authorize your session into the region" message in favorMelanie1-1/+1
of sending back the actual error message provided by the sim.
2010-08-07Add search URL to Login ServiceMelanie1-1/+3
2010-07-30Changed the way HG client verification is done: now transforming local and ↵Diva Canto1-4/+2
LAN client IPs into external IPs. This addresses some issues related to running both the user agents service and the viewer in the same machine/LAN, which then presents a problem when the user agent goes to an external network.
2010-07-02Add MapTileURL to robust to supply the url needed by snowglobeMelanie1-1/+3
2010-06-04Fixed a couple of buglets in Friendship offers / acceptance / decline when ↵Diva Canto1-0/+2
avies are in different sims.
2010-05-16Fixes mantis #4691 for real. This time I tested it, and it works.Diva Canto1-0/+1
2010-05-16Fixes mantis #4691Diva Canto1-1/+4
2010-05-16* Fixed configs in StandaloneHypergrid.ini, it still had the SQLite ↵Diva Canto1-2/+4
connection strings. * Added a comment in LLLoginService.cs, for future reference
2010-05-15This combination is working. It all points to not being able to use ↵Diva Canto1-0/+1
127.0.0.1/localhost in testing HG situations. The login server must have the LAN IP address, and the regions must show ExternalHostname as SYSTEMIP. Working, but this needs more testing.
2010-05-15Finalized the client's TCP IP address verification process for HG1.5.Diva Canto1-6/+11
2010-05-13Made fields consistently protected.Diva Canto1-8/+8
2010-05-07GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto1-30/+33
home and position info in the presence service. WARNING: I violated a taboo by deleting 2 migration files and simplifying the original table creation for Presence. This should not cause any problems to anyone, though. Things will work with the new simplified table, as well as with the previous contrived one. If there are any problems, solving them is as easy as dropping the presence table and deleting its row in the migrations table. The presence info only exists during a user's session anyway. BTW, the Meshing files want to be committed too -- EOFs.
2010-05-05Plumb the viewer version string through into AgentCircuitData. Now all thatMelanie Thielker1-6/+7
is left os to figure out what black magic turns AgentCircuitData into AgentData and then copy that into the ScenePresence, where m_Viewer is already added with this commit and waits for the data.
2010-05-05Add a XMLRPC method to remotely set the login level for the LLLoginService.Melanie Thielker1-0/+53
This requires a special XMLRPC call, which has to supply the credentials of a god user (User level >= 200). Disabled by default. Also Adds a configuration option to set the initial permitted login level.
2010-04-27Allow a client to pass a scope id to log into in the login XML / LLSDMelanie1-14/+30