aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/Main.cs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Added a AvatarCreationModule to the user server. This handles the "cloning" ↵MW2009-05-301-0/+9
| | | | | | | | | | | of a existing avatar's inventory to another avatar's inventory (the base method will also create the inventory for a new avatar if the avatar doesn't alreayd have any inventory). The code also sets the target avatar as wearing whatever the template avatar was wearing (including attachments). The idea is to allow the use of this to give new avatars a more interesting avatar (and inventory set) than the current default. I have include a console command that will clone the inventory from one existing user (template avatar) to another existing avatar (target avatar). The format of the command is : "clone avatar <templateAvatarFirstName> <templateAvatarLastName> <targetAvatarFirstName> <targetAvatarLastName>" (to use this console command on new accounts, the "create user" command will need to be used first) While the code was designed for hooking up to a remote call from a web interface, I have left the hookup code out of this commit, as I believe most use cases will want to handle it differently. Also added a "trusted handler" to the inventory server to allow the user server to create new folders in a user's inventory. All this is in the old UGAIM servers so will need porting to the new servers.
* Remove the pre-log4net, discrete output methods from the consolesMelanie Thielker2009-05-201-2/+2
|
* Intermediate commit. WILL NOT COMPILE!Melanie Thielker2009-05-041-0/+1
|
* Refactor. Make ConsoleBase a true base class. Create CommandConsole as a simpleMelanie Thielker2009-05-041-2/+2
| | | | | | | | console capable of processing commands. Create LocalConsole as a console that uses cursor control and context help. Precursor to a distributed console system for the new grid services. No functional change intended :)
* * Resolve http://opensimulator.org/mantis/view.php?id=3509 by putting some ↵Justin Clarke Casey2009-04-221-2/+9
| | | | | | | | service initialization into CommsManager * What is really needed is a plugin and interface request system as being done for region modules
* Added the hg login procedure to the user server.diva2009-03-271-0/+8
|
* Added a PostInitialise method to IApplicationPlugin, this allows us to do ↵MW2009-02-261-2/+2
| | | | | | | work in there knowing that all other ApplicationPlugins have been initialised by that time. Moved the loadRegions code in LoadRegionsPlugin to the PostInitialise method.
* Renamed IUGAIMCore to IGridServiceCore, still not really happy with this ↵MW2009-02-251-1/+2
| | | | name as it could be confused with the Grid Server namespace or with the IGridService in the region servers.
* More refactoring of the Grid, User and Messaging servers. MW2009-02-251-109/+58
|
* More work on modulising the User Server. MW2009-02-241-29/+35
|
* Removed the additions from the last revision for the "ShowHelp" delegate ↵MW2009-02-241-17/+1
| | | | handling, as it seems that system isn't in use anymore.
* More refactoring of the Grid/user/messaging servers.MW2009-02-241-6/+24
|
* First step in separating out the Userserver console command handling to a ↵MW2009-02-241-265/+11
| | | | | | | "module". Added OpenSim.Grid.UserServer.Modules project/dll which now contains the components of the userserver. With the OpenSim.Grid.UserServer being the setup and initiate exe.
* More refactoring of the UserServer.MW2009-02-241-74/+105
|
* Part 1 of refactoring the userserver. Changed it so instead of subclassing ↵MW2009-02-221-6/+10
| | | | the User dataBase access class (UserManagerBase) and then adding the http handlers to that. There is now a UserDataBaseService that is passed to the other classes so they can access the db. This should make it easier to have multiple "modules" that can register http handlers and access the db.
* * Renamed RegionProfileService to RegionProfileServiceProxy to better ↵lbsa712009-02-121-1/+1
| | | | | | | reflect actual use. * Added IRegionProfileService
* * Turned RegionProfileService non-staticlbsa712009-02-121-1/+2
|
* * optimized usings.lbsa712009-02-121-2/+1
|
* Add proper handling for shared vs. unshared modules to the commandMelanie Thielker2009-02-101-7/+7
| | | | | | | | interface. Shared modules will now only get added once, so the command handler is called once per module, not once per scene. Removal of scenes has no adverse effects. Nonshared modules will be called for each scene.
* Replace the console for all OpenSim apps with a new console featuring commandMelanie Thielker2009-02-071-24/+70
| | | | | | | | | line editing, context sensitive help (press ? at any time), command line history, a new plugin command system and new appender features thet let you type while the console is scrolling. Seamlessly integrates the ICommander interfaces.
* OpenUser_Main is now public. Fixes Mantis #2940. Thanks SirKimbaHomer Horwitz2008-12-301-1/+1
|
* * Apply http://opensimulator.org/mantis/view.php?id=2927 with some changesJustin Clarke Casey2008-12-291-1/+1
| | | | | | | | | * This allows configuration of the assetset and library control file paths to be other than ./inventory/Libraries.xml and ./assets/AssetSets.xml * This is controlled via the LibrariesXMLFile and AssetSetsXMLFile configuration settings in [StandAlone] in OpenSim.ini (in standalone) and via the user and asset config xml files for grid mode * Thanks to SirKimba for the patch
* * ReCommit the OpenID patch with a few less dependencies.Teravus Ovares2008-12-201-0/+6
| | | | | | * Removes all references to ASP.NET (System.Web.UI,*) * Removes all references to System.Web.Mobile
* Revert OpenId until we can come to grips with the mono 2 requirementCharles Krinke2008-12-201-6/+0
| | | | | for System.Web.Mobile
* Mantis#2816. Thank you kindly, JHurliman for the beginnings of Charles Krinke2008-12-191-0/+6
| | | | | OpenID support in OpenSim for the UserServer.
* * reverted 7561 as the logger reference should always be private to the ↵lbsa712008-12-021-1/+1
| | | | class. Thanks sdague for the protip!
* Made BaseOpenSimServer.ShutdownSpecific() public. As the ↵MW2008-12-021-1/+1
| | | | OpenSimBase.Shutdown() includes a Environment.Exit(0); which is not always wanted when shutting down, like from a windows service.
* * Making log available for subclasseslbsa712008-12-011-1/+1
|
* * refactor: move CreateUser into UserServiceAdminJustin Clarke Casey2008-11-281-45/+19
|
* * Opened the registration of http handlers up for subclassinglbsa712008-11-271-1/+1
|
* * Adding some virtual hooks and making some privaets protected for great ↵lbsa712008-11-251-6/+18
| | | | justice.
* 05:24:49 - [PRESENCE]: Logging off 888760cb-a3cf-43ac-8ea4-8732fd3ee2bb ↵Melanie Thielker2008-11-231-0/+18
| | | | | | | | because the region they were in has gone Or, in other words, a region crash/restart no longer messes up presence.
* Plumb in the presence notifications and region shutdown/restart messagesMelanie Thielker2008-11-231-0/+29
| | | | | | | | | from the presence module to the message server, through the user server and on into the database. This should fix the "Already logged in" issue that grids see after a sim crashes, or a user crashes out of a sim. Not yet a 100% solution for friends, but getting there.
* Mantis#2660. Thank you kindly, Ruud Lathrop for a patch that:Charles Krinke2008-11-231-56/+85
| | | | | | | | 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.
* * minor: remove log message that gives wrong user server 'version'Justin Clarke Casey2008-11-111-2/+0
|
* Mantis#2340. Thank you kindly, Sacha Magne for a patch that:Charles Krinke2008-10-061-4/+5
| | | | | | adding default_loginLevel in USerServer.xml to set a default login level to acces to the grid. Fixing one bug in login_reset
* * refactor: make shutdown a template method in the same manner as startup, ↵Justin Clarke Casey2008-10-031-3/+1
| | | | for consistency's sake
* * refactor: make startup a template methodJustin Clarke Casey2008-10-031-3/+1
|
* Mantis #2314Melanie Thielker2008-10-021-3/+30
| | | | | | | Thank you, sacha magne, for a patch to add login level and message commands to the user server
* Add a user server XMLRPC method to set the MOTD and the minimum GodLevelMelanie Thielker2008-10-011-0/+1
| | | | | | | | 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
* * Add "reset user password" command to user serverJustin Clarke Casey2008-09-151-2/+55
| | | | | | * Some copy and pasting has occurred because it's difficult to properly refactor some bits at present. I'm very ashamed and it will disappear at some future point.
* * Complete refactoring accidentally left unfinished so that all server help ↵Justin Clarke Casey2008-09-151-6/+9
| | | | requests flow through the ShowHelp() method
* Mantis #2133Melanie Thielker2008-09-061-1/+1
| | | | | | | Thank you, Xugu Madison and ChrisDown, for a patch that fixes linux filename extensions from .Xml back to .xml
* * This is the fabled LibOMV update with all of the libOMV types from JHurlimanTeravus Ovares2008-09-061-10/+10
| | | | | | | * 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.
* * minor: Tiny doc addition to trigger another build that hopefully won't failJustin Clarke Casey2008-08-301-0/+1
| | | | | | * I can't see why the last compile failed - hoping it's some kind of glitch
* * Ditto, UserServer/Main.csAdam Frisby2008-08-301-25/+23
|
* * minor: refactor thread report into a method that returns a string rather ↵Justin Clarke Casey2008-08-251-1/+0
| | | | than displays information directly
* * This commit incorporates the heart of the OpenGridProtocol patch that is ↵Teravus Ovares2008-08-251-1/+1
| | | | | | | | currently on Forge in a nice, friendly modular format. * There are a lot of changes and this is quite experimental. It's off by default, but you can turn it on by examining the bottom of the opensim.ini.example for the proper OpenSim.ini settings. Remember, you still need an agent domain.. * Furthermore, it isn't quite right when it comes to teleporting to remote regions (place_avatar)
* Formatting cleanup.Jeff Ames2008-08-181-11/+10
|
* * Move GridInfoService into Framework.Communications and eliminate ↵Justin Clarke Casey2008-08-161-1/+0
| | | | Common.Communications for now (since this was the only class in that project)