diff options
-rw-r--r-- | OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | 6 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/CommunicationsManager.cs | 6 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/IUserAdminService.cs (renamed from OpenSim/Framework/Communications/IUserServiceAdmin.cs) | 5 | ||||
-rw-r--r-- | OpenSim/Framework/Communications/UserManagerBase.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/Communications/Local/CommunicationsLocal.cs | 4 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Tests/SceneObjectTests.cs | 2 | ||||
-rw-r--r-- | OpenSim/Region/Environment/Scenes/Tests/TestCommunicationsManager.cs | 2 |
10 files changed, 19 insertions, 17 deletions
diff --git a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs index 7f7689d..cf60484 100644 --- a/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs +++ b/OpenSim/ApplicationPlugins/RemoteController/RemoteAdminPlugin.cs | |||
@@ -474,7 +474,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
474 | { | 474 | { |
475 | m_log.InfoFormat("master avatar does not exist, creating it"); | 475 | m_log.InfoFormat("master avatar does not exist, creating it"); |
476 | // ...or create new user | 476 | // ...or create new user |
477 | userID = m_app.CommunicationsManager.UserServiceAdmin.AddUser( | 477 | userID = m_app.CommunicationsManager.UserAdminService.AddUser( |
478 | masterFirst, masterLast, masterPassword, "", region.RegionLocX, region.RegionLocY); | 478 | masterFirst, masterLast, masterPassword, "", region.RegionLocX, region.RegionLocY); |
479 | 479 | ||
480 | if (userID == UUID.Zero) throw new Exception(String.Format("failed to create new user {0} {1}", | 480 | if (userID == UUID.Zero) throw new Exception(String.Format("failed to create new user {0} {1}", |
@@ -671,7 +671,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
671 | throw new Exception(String.Format("avatar {0} {1} already exists", firstname, lastname)); | 671 | throw new Exception(String.Format("avatar {0} {1} already exists", firstname, lastname)); |
672 | 672 | ||
673 | UUID userID | 673 | UUID userID |
674 | = m_app.CommunicationsManager.UserServiceAdmin.AddUser( | 674 | = m_app.CommunicationsManager.UserAdminService.AddUser( |
675 | firstname, lastname, passwd, email, regX, regY); | 675 | firstname, lastname, passwd, email, regX, regY); |
676 | 676 | ||
677 | if (userID == UUID.Zero) throw new Exception(String.Format("failed to create new user {0} {1}", | 677 | if (userID == UUID.Zero) throw new Exception(String.Format("failed to create new user {0} {1}", |
@@ -769,7 +769,7 @@ namespace OpenSim.ApplicationPlugins.RemoteController | |||
769 | throw new Exception(String.Format("avatar {0} {1} already exists", firstname, lastname)); | 769 | throw new Exception(String.Format("avatar {0} {1} already exists", firstname, lastname)); |
770 | 770 | ||
771 | UUID userID | 771 | UUID userID |
772 | = m_app.CommunicationsManager.UserServiceAdmin.AddUser( | 772 | = m_app.CommunicationsManager.UserAdminService.AddUser( |
773 | firstname, lastname, passwd, email, regX, regY); | 773 | firstname, lastname, passwd, email, regX, regY); |
774 | 774 | ||
775 | if (userID == UUID.Zero) throw new Exception(String.Format("failed to create new user {0} {1}", | 775 | if (userID == UUID.Zero) throw new Exception(String.Format("failed to create new user {0} {1}", |
diff --git a/OpenSim/Framework/Communications/CommunicationsManager.cs b/OpenSim/Framework/Communications/CommunicationsManager.cs index c4adfa5..72c01bd 100644 --- a/OpenSim/Framework/Communications/CommunicationsManager.cs +++ b/OpenSim/Framework/Communications/CommunicationsManager.cs | |||
@@ -108,11 +108,11 @@ namespace OpenSim.Framework.Communications | |||
108 | /// <summary> | 108 | /// <summary> |
109 | /// Interface to user service for administrating users. | 109 | /// Interface to user service for administrating users. |
110 | /// </summary> | 110 | /// </summary> |
111 | public IUserServiceAdmin UserServiceAdmin | 111 | public IUserAdminService UserAdminService |
112 | { | 112 | { |
113 | get { return m_userServiceAdmin; } | 113 | get { return m_userAdminService; } |
114 | } | 114 | } |
115 | protected IUserServiceAdmin m_userServiceAdmin; | 115 | protected IUserAdminService m_userAdminService; |
116 | 116 | ||
117 | public BaseHttpServer HttpServer | 117 | public BaseHttpServer HttpServer |
118 | { | 118 | { |
diff --git a/OpenSim/Framework/Communications/IUserServiceAdmin.cs b/OpenSim/Framework/Communications/IUserAdminService.cs index b1f974b..3b7ba6e 100644 --- a/OpenSim/Framework/Communications/IUserServiceAdmin.cs +++ b/OpenSim/Framework/Communications/IUserAdminService.cs | |||
@@ -29,7 +29,10 @@ using OpenMetaverse; | |||
29 | 29 | ||
30 | namespace OpenSim.Framework.Communications | 30 | namespace OpenSim.Framework.Communications |
31 | { | 31 | { |
32 | public interface IUserServiceAdmin | 32 | /// <summary> |
33 | /// Interface for the service for administrating users | ||
34 | /// </summary> | ||
35 | public interface IUserAdminService | ||
33 | { | 36 | { |
34 | /// <summary> | 37 | /// <summary> |
35 | /// Add a new user | 38 | /// Add a new user |
diff --git a/OpenSim/Framework/Communications/UserManagerBase.cs b/OpenSim/Framework/Communications/UserManagerBase.cs index 3946ea3..8bfb2d7 100644 --- a/OpenSim/Framework/Communications/UserManagerBase.cs +++ b/OpenSim/Framework/Communications/UserManagerBase.cs | |||
@@ -43,7 +43,7 @@ namespace OpenSim.Framework.Communications | |||
43 | /// <summary> | 43 | /// <summary> |
44 | /// Base class for user management (create, read, etc) | 44 | /// Base class for user management (create, read, etc) |
45 | /// </summary> | 45 | /// </summary> |
46 | public abstract class UserManagerBase : IUserService, IUserServiceAdmin, IAvatarService, IMessagingService | 46 | public abstract class UserManagerBase : IUserService, IUserAdminService, IAvatarService, IMessagingService |
47 | { | 47 | { |
48 | private static readonly ILog m_log | 48 | private static readonly ILog m_log |
49 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 49 | = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 316cad5..1999737 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -800,7 +800,7 @@ namespace OpenSim | |||
800 | 800 | ||
801 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) | 801 | if (null == m_commsManager.UserService.GetUserProfile(firstName, lastName)) |
802 | { | 802 | { |
803 | m_commsManager.UserServiceAdmin.AddUser(firstName, lastName, password, email, regX, regY); | 803 | m_commsManager.UserAdminService.AddUser(firstName, lastName, password, email, regX, regY); |
804 | } | 804 | } |
805 | else | 805 | else |
806 | { | 806 | { |
@@ -830,7 +830,7 @@ namespace OpenSim | |||
830 | newPassword = MainConsole.Instance.PasswdPrompt("New password"); | 830 | newPassword = MainConsole.Instance.PasswdPrompt("New password"); |
831 | else newPassword = cmdparams[4]; | 831 | else newPassword = cmdparams[4]; |
832 | 832 | ||
833 | m_commsManager.UserServiceAdmin.ResetUserPassword(firstName, lastName, newPassword); | 833 | m_commsManager.UserAdminService.ResetUserPassword(firstName, lastName, newPassword); |
834 | } | 834 | } |
835 | 835 | ||
836 | protected void SaveXml(string[] cmdparams) | 836 | protected void SaveXml(string[] cmdparams) |
diff --git a/OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs b/OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs index 3bf714e..804640e 100644 --- a/OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs +++ b/OpenSim/Region/Communications/Hypergrid/HGCommunicationsStandalone.cs | |||
@@ -42,7 +42,7 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
42 | BaseHttpServer httpServer, | 42 | BaseHttpServer httpServer, |
43 | AssetCache assetCache, | 43 | AssetCache assetCache, |
44 | IUserService userService, | 44 | IUserService userService, |
45 | IUserServiceAdmin userServiceAdmin, | 45 | IUserAdminService userServiceAdmin, |
46 | LocalInventoryService inventoryService, | 46 | LocalInventoryService inventoryService, |
47 | IInterRegionCommunications interRegionService, | 47 | IInterRegionCommunications interRegionService, |
48 | HGGridServices gridService, IMessagingService messageService, LibraryRootFolder libraryRootFolder, bool dumpAssetsToFile) | 48 | HGGridServices gridService, IMessagingService messageService, LibraryRootFolder libraryRootFolder, bool dumpAssetsToFile) |
@@ -54,6 +54,5 @@ namespace OpenSim.Region.Communications.Hypergrid | |||
54 | AddSecureInventoryService((ISecureInventoryService)inventoryService); | 54 | AddSecureInventoryService((ISecureInventoryService)inventoryService); |
55 | m_inventoryServices = null; | 55 | m_inventoryServices = null; |
56 | } | 56 | } |
57 | |||
58 | } | 57 | } |
59 | } | 58 | } |
diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs index 48a635a..6489408 100644 --- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs +++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs | |||
@@ -39,7 +39,7 @@ namespace OpenSim.Region.Communications.Local | |||
39 | BaseHttpServer httpServer, | 39 | BaseHttpServer httpServer, |
40 | AssetCache assetCache, | 40 | AssetCache assetCache, |
41 | IUserService userService, | 41 | IUserService userService, |
42 | IUserServiceAdmin userServiceAdmin, | 42 | IUserAdminService userServiceAdmin, |
43 | LocalInventoryService inventoryService, | 43 | LocalInventoryService inventoryService, |
44 | IInterRegionCommunications interRegionService, | 44 | IInterRegionCommunications interRegionService, |
45 | IGridServices gridService, IMessagingService messageService, | 45 | IGridServices gridService, IMessagingService messageService, |
@@ -50,7 +50,7 @@ namespace OpenSim.Region.Communications.Local | |||
50 | m_defaultInventoryHost = inventoryService.Host; | 50 | m_defaultInventoryHost = inventoryService.Host; |
51 | m_interServiceInventoryService = inventoryService; | 51 | m_interServiceInventoryService = inventoryService; |
52 | m_userService = userService; | 52 | m_userService = userService; |
53 | m_userServiceAdmin = userServiceAdmin; | 53 | m_userAdminService = userServiceAdmin; |
54 | m_avatarService = (IAvatarService)userService; | 54 | m_avatarService = (IAvatarService)userService; |
55 | m_gridService = gridService; | 55 | m_gridService = gridService; |
56 | m_interRegion = interRegionService; | 56 | m_interRegion = interRegionService; |
diff --git a/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs b/OpenSim/Region/Environment/Modules/InterGrid/OpenGridProtocolModule.cs index a855617..cbc4615 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.UserServiceAdmin.AddUser( | 533 | homeScene.CommsManager.UserAdminService.AddUser( |
534 | agentData.firstname, agentData.lastname, CreateRandomStr(7), "", | 534 | agentData.firstname, agentData.lastname, CreateRandomStr(7), "", |
535 | homeScene.RegionInfo.RegionLocX, homeScene.RegionInfo.RegionLocY, agentData.AgentID); | 535 | homeScene.RegionInfo.RegionLocX, homeScene.RegionInfo.RegionLocY, agentData.AgentID); |
536 | 536 | ||
diff --git a/OpenSim/Region/Environment/Scenes/Tests/SceneObjectTests.cs b/OpenSim/Region/Environment/Scenes/Tests/SceneObjectTests.cs index 6577fe3..7391696 100644 --- a/OpenSim/Region/Environment/Scenes/Tests/SceneObjectTests.cs +++ b/OpenSim/Region/Environment/Scenes/Tests/SceneObjectTests.cs | |||
@@ -105,7 +105,7 @@ namespace OpenSim.Region.Environment.Scenes.Tests | |||
105 | ((LocalInventoryService)scene.CommsManager.InventoryService).AddPlugin(new TestInventoryDataPlugin()); | 105 | ((LocalInventoryService)scene.CommsManager.InventoryService).AddPlugin(new TestInventoryDataPlugin()); |
106 | 106 | ||
107 | Assert.That( | 107 | Assert.That( |
108 | scene.CommsManager.UserServiceAdmin.AddUser( | 108 | scene.CommsManager.UserAdminService.AddUser( |
109 | "Bob", "Hoskins", "test", "test@test.com", 1000, 1000, agentId), | 109 | "Bob", "Hoskins", "test", "test@test.com", 1000, 1000, agentId), |
110 | Is.EqualTo(agentId)); | 110 | Is.EqualTo(agentId)); |
111 | 111 | ||
diff --git a/OpenSim/Region/Environment/Scenes/Tests/TestCommunicationsManager.cs b/OpenSim/Region/Environment/Scenes/Tests/TestCommunicationsManager.cs index 1607e03..cf7ba19 100644 --- a/OpenSim/Region/Environment/Scenes/Tests/TestCommunicationsManager.cs +++ b/OpenSim/Region/Environment/Scenes/Tests/TestCommunicationsManager.cs | |||
@@ -44,7 +44,7 @@ namespace OpenSim.Region.Environment.Scenes.Tests | |||
44 | 44 | ||
45 | LocalUserServices lus = new LocalUserServices(991, 992, lis); | 45 | LocalUserServices lus = new LocalUserServices(991, 992, lis); |
46 | m_userService = lus; | 46 | m_userService = lus; |
47 | m_userServiceAdmin = lus; | 47 | m_userAdminService = lus; |
48 | } | 48 | } |
49 | } | 49 | } |
50 | } | 50 | } |