aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/UserAccountService/UserAccountService.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-05-19Dump OpenSim 0.9.0.1 into it's own branch.onefang1-36/+347
2016-11-03Initial update to OpenSim 0.8.2.1 source code.David Walter Seikel1-5/+51
2013-02-05Changed protection of CreateDefaultAppearanceEntries to protected, so ↵Diva Canto1-1/+1
extensions of the UserAccountService can reuse this.
2012-03-20Fix small typoJustin Clark-Casey (justincc)1-1/+1
2012-03-08Change "help" to display categories/module list then "help ↵Justin Clark-Casey (justincc)1-4/+4
<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.
2011-10-18Provide an option to allow remote calls to the CreateUser method on the ↵Justin Clark-Casey (justincc)1-3/+11
UserAccountService Default is false, as before. Enabling AllowCreateUser in [UserAccountService] for ROBUST allows avatars to be created via an http call, with viewer 2 appropriate bits and pieces. Only Ruths can be created at present. Please don't rely on the config since at some point CreateUser will be moved to a separate co-ordinating service.
2011-10-16Bug fix on the bug fix on UserAccountService.csDiva Canto1-1/+0
2011-10-13Bug fix -- Test User on first run standalone might not be created properly: ↵Diva Canto1-46/+44
let all instances of UserAccountService have all its service references properly initialized, and register console commands on only one.
2011-10-04When creating a new user on the comand line, give the option of allowing a ↵Justin Clark-Casey (justincc)1-4/+15
UUID to be specified to override the randomly generated one. This can be useful in some migration cases where recreating user accounts with known IDs will preserve region scene object ownership.
2011-09-16Pass any region scope through to the CreateUser() methodJustin Clark-Casey (justincc)1-2/+3
2011-09-16Correctly create a freshly created estate owner's default items and avatar ↵Justin Clark-Casey (justincc)1-1/+3
entries on standalone if applicable.
2011-09-15Write code to create minimum necessary body parts/clothing and avatar ↵Justin Clark-Casey (justincc)1-7/+145
entries to make a newly created user appear as a non-cloud on viewer 2 Viewer 2 no longer contains the default avatar assets (i.e. "Ruth") that would appear if the user had insufficient body part/clothing entries. Instead, avatars always appear as a cloud, which is a very bad experience for out-of-the-box OpenSim. Default is currently off. My intention is to switch it on for standalone shortly. This is not particularly flexible as "Ruth" is hardcoded, but this can change in the future, in co-ordination with the existing RemoteAdmin capabilities. Need to fix creation of suitable entries for users created as estate owners on standalone. Avatars still appear with spooky empty eyes, need to see if we can address this. This commit adds a "Default Iris" to the library (thanks to Eirynne Sieyes from http://opensimulator.org/mantis/view.php?id=1461) which can be used.
2011-06-25Fix bug in reset user password where entering an invalid name would cause an ↵Justin Clark-Casey (justincc)1-4/+7
exception. Also, convert this commands log output to console output. Console output is more appropriate for console commands. The log only gets one side of the conversation anyway (since it doesn't necessarily record command inputs).
2011-06-25Implement "set user level" console command to set the user level (which ↵Justin Clark-Casey (justincc)1-0/+47
determines whether a user has a god account) Adapted from Makopoppo's patch in http://opensimulator.org/mantis/view.php?id=5552. Thanks!
2011-06-24Add a command "show account <first-name> <last-Name>" to the user account ↵Justin Clark-Casey (justincc)1-1/+38
service that will show the given user details
2010-09-12Formatting cleanup.Jeff Ames1-10/+10
2010-09-10Made it impossible to create a user with names containing spaces and ↵randomhuman1-2/+4
prevented passwords from being echoed after enter is pressed.
2010-06-13Thank you, Snoopy2, for a patch to fix RemoteAdmin. Committed with the followingMelanie1-9/+15
changes: - Start location is NOT optional. The signature was defined with it being mandataory and there is no reason to change it - Adjusted comments to remove misleading or no longer true comments. Default is neuter, according to the code, not male, as the comment stated.
2010-06-04get TestSaveIarV0_1() working again by setting up an ↵Justin Clark-Casey (justincc)1-0/+8
OpenSim.Data.Null.UserAuthenticationData plugin additional tweaks to get this working properly
2010-05-28minor: move a method so that the #regions make more senseJustin Clark-Casey (justincc)1-36/+35
2010-05-28fission UserAccountService.HandleCreateUser() into two methods, one which ↵Justin Clark-Casey (justincc)1-4/+14
handles user command parsing and another which actually does the work
2010-05-07GridUserService in place. Replaces the contrived concept of storing user's ↵Diva Canto1-5/+5
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-04-30Allow retrieval if admin users in scope modeMelanie Thielker1-0/+18
2010-04-03* Guard against null in last commitDiva Canto1-1/+2
2010-04-03* Made UserAccountService handle UserLevel, UserFlags and UserTitle ↵Diva Canto1-0/+7
appropriately. * Removed Store service from the UserAccount handler.
2010-03-09Fixed caching of user accounts.Diva Canto1-0/+2
2010-03-04Bug fix on user account creation -- ServiceURLs field now properly filled out.Diva Canto1-1/+1
2010-03-03Added empty service URLs upon account creation.Diva Canto1-0/+9
2010-02-21One more test running.Diva Canto1-7/+10
2010-01-13Fixed mixed-case use in UserAccounts table. Plus some more sanity checks on ↵Diva Canto1-12/+20
filling out the UserAccount data.
2010-01-13Bug fix in create user: create inventory was missing.Diva Canto1-0/+12
2010-01-13Several more buglets removed.Diva Canto1-0/+4
2010-01-09* Moved command reset password from OpenSim to UserAccountService.Diva Canto1-0/+37
2010-01-09* Added SetPassword to IAuthenticationService.Diva Canto1-50/+95
* Added create user command to UserAccountService. Works. * Deleted create user command from OpenSim.
2010-01-09Less refs to UserProfileCacheService. Compiles but likely doesn't run.Diva Canto1-19/+88
2009-12-31Implement avatar picker queriesMelanie1-1/+11
2009-12-31Implement saving user account dataMelanie1-1/+22
2009-12-31Remove CreateUserAccount. Rename SetUserAccount to StoreUserAccount.Melanie1-15/+67
Implement the fetch operations fully. Rename one last UserService file to UserAccountService
2009-12-30Make ScopeID be wild on user queries. Just pass it as UUID.ZeroMelanie1-3/+14
2009-12-30Some modifications to user service. Query by name is implemented nowMelanie1-0/+15
2009-12-29More renames to make everything consistent. This is the UserAccountService.Diva Canto1-0/+0
2009-12-29Tighten up the IUserService interface again. No need for auth tokens at this ↵Diva Canto1-4/+3
level.
2009-12-29Polished the IUserService interface.Diva Canto1-5/+5
2009-09-06Revising the user account data interfaces. No user functionality yetMelanie1-7/+7
2009-08-09Finish the renaming and mae things compile againMelanie1-9/+9
2009-06-30Updated services to allow external applications like web interfaces toMelanie Thielker1-1/+11
authenticate against the services. This paves the way for such apps to directly talk to services.
2009-06-22Committing RemoteUserServiceConnector out connector, local user serviceMelanie Thielker1-1/+1
connector and the glue code.
2009-06-22Committing the meat of the user server interface and the bones of the ↵Melanie Thielker1-0/+24
service implementation
2009-06-01Minor: Change OpenSim to OpenSimulator in older copyright headers and ↵Jeff Ames1-1/+1
LICENSE.txt.
2009-05-05Some refactoring. Database is now active in the new user serverMelanie Thielker1-4/+4