diff options
Diffstat (limited to 'OpenSim/Region')
5 files changed, 29 insertions, 10 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index e3aee9d..765c471 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -516,7 +516,14 @@ namespace OpenSim | |||
516 | switch (args[0]) | 516 | switch (args[0]) |
517 | { | 517 | { |
518 | case "user": | 518 | case "user": |
519 | CreateUser(args); | 519 | if (ConfigurationSettings.Standalone) |
520 | { | ||
521 | CreateUser(args); | ||
522 | } | ||
523 | else | ||
524 | { | ||
525 | m_console.Notice("Create user is not available in grid mode, use the user-server."); | ||
526 | } | ||
520 | break; | 527 | break; |
521 | } | 528 | } |
522 | } | 529 | } |
@@ -537,7 +544,14 @@ namespace OpenSim | |||
537 | switch (args[1]) | 544 | switch (args[1]) |
538 | { | 545 | { |
539 | case "password": | 546 | case "password": |
540 | ResetUserPassword(args); | 547 | if (ConfigurationSettings.Standalone) |
548 | { | ||
549 | ResetUserPassword(args); | ||
550 | } | ||
551 | else | ||
552 | { | ||
553 | m_console.Notice("Reset user password is not available in grid mode, use the user-server."); | ||
554 | } | ||
541 | break; | 555 | break; |
542 | } | 556 | } |
543 | 557 | ||
@@ -734,12 +748,13 @@ namespace OpenSim | |||
734 | /// <summary> | 748 | /// <summary> |
735 | /// Create a new user | 749 | /// Create a new user |
736 | /// </summary> | 750 | /// </summary> |
737 | /// <param name="cmdparams"></param> | 751 | /// <param name="cmdparams">string array with parameters: firstname, lastname, password, locationX, locationY, email</param> |
738 | protected void CreateUser(string[] cmdparams) | 752 | protected void CreateUser(string[] cmdparams) |
739 | { | 753 | { |
740 | string firstName; | 754 | string firstName; |
741 | string lastName; | 755 | string lastName; |
742 | string password; | 756 | string password; |
757 | string email; | ||
743 | uint regX = 1000; | 758 | uint regX = 1000; |
744 | uint regY = 1000; | 759 | uint regY = 1000; |
745 | 760 | ||
@@ -751,7 +766,7 @@ namespace OpenSim | |||
751 | lastName = MainConsole.Instance.CmdPrompt("Last name", "User"); | 766 | lastName = MainConsole.Instance.CmdPrompt("Last name", "User"); |
752 | else lastName = cmdparams[2]; | 767 | else lastName = cmdparams[2]; |
753 | 768 | ||
754 | if ( cmdparams.Length < 4 ) | 769 | if (cmdparams.Length < 4) |
755 | password = MainConsole.Instance.PasswdPrompt("Password"); | 770 | password = MainConsole.Instance.PasswdPrompt("Password"); |
756 | else password = cmdparams[3]; | 771 | else password = cmdparams[3]; |
757 | 772 | ||
@@ -763,9 +778,13 @@ namespace OpenSim | |||
763 | regY = Convert.ToUInt32(MainConsole.Instance.CmdPrompt("Start Region Y", regY.ToString())); | 778 | regY = Convert.ToUInt32(MainConsole.Instance.CmdPrompt("Start Region Y", regY.ToString())); |
764 | else regY = Convert.ToUInt32(cmdparams[5]); | 779 | else regY = Convert.ToUInt32(cmdparams[5]); |
765 | 780 | ||
781 | if (cmdparams.Length < 7) | ||
782 | email = MainConsole.Instance.CmdPrompt("Email", ""); | ||
783 | else email = cmdparams[6]; | ||
784 | |||
766 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) | 785 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) |
767 | { | 786 | { |
768 | CreateUser(firstName, lastName, password, regX, regY); | 787 | CreateUser(firstName, lastName, password, email, regX, regY); |
769 | } | 788 | } |
770 | else | 789 | else |
771 | { | 790 | { |
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index fc531f5..608de06 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -298,9 +298,9 @@ namespace OpenSim | |||
298 | m_assetCache = new AssetCache(assetServer); | 298 | m_assetCache = new AssetCache(assetServer); |
299 | } | 299 | } |
300 | 300 | ||
301 | public UUID CreateUser(string tempfirstname, string templastname, string tempPasswd, uint regX, uint regY) | 301 | public UUID CreateUser(string tempfirstname, string templastname, string tempPasswd, string email, uint regX, uint regY) |
302 | { | 302 | { |
303 | return m_commsManager.AddUser(tempfirstname, templastname, tempPasswd, regX, regY); | 303 | return m_commsManager.AddUser(tempfirstname, templastname, tempPasswd, email, regX, regY); |
304 | } | 304 | } |
305 | 305 | ||
306 | /// <summary> | 306 | /// <summary> |
diff --git a/OpenSim/Region/Communications/Local/LocalLoginService.cs b/OpenSim/Region/Communications/Local/LocalLoginService.cs index 9caeda4..81cbbb4 100644 --- a/OpenSim/Region/Communications/Local/LocalLoginService.cs +++ b/OpenSim/Region/Communications/Local/LocalLoginService.cs | |||
@@ -94,7 +94,7 @@ namespace OpenSim.Region.Communications.Local | |||
94 | //no current user account so make one | 94 | //no current user account so make one |
95 | m_log.Info("[LOGIN]: No user account found so creating a new one."); | 95 | m_log.Info("[LOGIN]: No user account found so creating a new one."); |
96 | 96 | ||
97 | m_userManager.AddUserProfile(firstname, lastname, "test", defaultHomeX, defaultHomeY); | 97 | m_userManager.AddUserProfile(firstname, lastname, "test", "", defaultHomeX, defaultHomeY); |
98 | 98 | ||
99 | profile = m_userManager.GetUserProfile(firstname, lastname); | 99 | profile = m_userManager.GetUserProfile(firstname, lastname); |
100 | if (profile != null) | 100 | if (profile != null) |
diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index c0887df..8649d61 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs | |||
@@ -72,7 +72,7 @@ namespace OpenSim.Region.Communications.Local | |||
72 | } | 72 | } |
73 | 73 | ||
74 | Console.WriteLine("Unknown Master User. Sandbox Mode: Creating Account"); | 74 | Console.WriteLine("Unknown Master User. Sandbox Mode: Creating Account"); |
75 | AddUserProfile(firstName, lastName, password, m_defaultHomeX, m_defaultHomeY); | 75 | AddUserProfile(firstName, lastName, password, "", m_defaultHomeX, m_defaultHomeY); |
76 | 76 | ||
77 | profile = GetUserProfile(firstName, lastName); | 77 | profile = GetUserProfile(firstName, lastName); |
78 | 78 | ||
diff --git a/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs b/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs index 1c86c2f..e3e69b0 100644 --- a/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs +++ b/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs | |||
@@ -530,7 +530,7 @@ namespace OpenSim.Region.Environment.Modules.InterGrid | |||
530 | // get seed capagentData.firstname = FirstName;agentData.lastname = LastName; | 530 | // get seed capagentData.firstname = FirstName;agentData.lastname = LastName; |
531 | if (homeScene.CommsManager.UserService.GetUserProfile(agentData.AgentID) == null && !GridMode) | 531 | if (homeScene.CommsManager.UserService.GetUserProfile(agentData.AgentID) == null && !GridMode) |
532 | { | 532 | { |
533 | homeScene.CommsManager.AddUser(agentData.firstname, agentData.lastname, CreateRandomStr(7), homeScene.RegionInfo.RegionLocX, homeScene.RegionInfo.RegionLocY, agentData.AgentID); | 533 | homeScene.CommsManager.AddUser(agentData.firstname, agentData.lastname, CreateRandomStr(7), "", homeScene.RegionInfo.RegionLocX, homeScene.RegionInfo.RegionLocY, agentData.AgentID); |
534 | UserProfileData userProfile2 = homeScene.CommsManager.UserService.GetUserProfile(agentData.AgentID); | 534 | UserProfileData userProfile2 = homeScene.CommsManager.UserService.GetUserProfile(agentData.AgentID); |
535 | if (userProfile2 != null) | 535 | if (userProfile2 != null) |
536 | { | 536 | { |