LocalUserServices.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSim Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using libsecondlife;
  29. using OpenSim.Framework;
  30. using OpenSim.Framework.Communications;
  31. using OpenSim.Framework.Statistics;
  32. using OpenSim.Framework.UserManagement;
  33. namespace OpenSim.Region.Communications.Local
  34. {
  35. public class LocalUserServices : UserManagerBase
  36. {
  37. private readonly NetworkServersInfo m_serversInfo;
  38. private readonly uint m_defaultHomeX;
  39. private readonly uint m_defaultHomeY;
  40. private IInventoryServices m_inventoryService;
  41. /// <summary>
  42. ///
  43. /// </summary>
  44. /// <param name="serversInfo"></param>
  45. /// <param name="defaultHomeLocX"></param>
  46. /// <param name="defaultHomeLocY"></param>
  47. /// <param name="inventoryService"></param>
  48. /// <param name="statsCollector">Can be null if stats collection is not required.</param>
  49. public LocalUserServices(NetworkServersInfo serversInfo, uint defaultHomeLocX, uint defaultHomeLocY,
  50. IInventoryServices inventoryService)
  51. {
  52. m_serversInfo = serversInfo;
  53. m_defaultHomeX = defaultHomeLocX;
  54. m_defaultHomeY = defaultHomeLocY;
  55. m_inventoryService = inventoryService;
  56. }
  57. public override UserProfileData SetupMasterUser(string firstName, string lastName)
  58. {
  59. return SetupMasterUser(firstName, lastName, String.Empty);
  60. }
  61. public override UserProfileData SetupMasterUser(string firstName, string lastName, string password)
  62. {
  63. UserProfileData profile = GetUserProfile(firstName, lastName);
  64. if (profile != null)
  65. {
  66. return profile;
  67. }
  68. Console.WriteLine("Unknown Master User. Sandbox Mode: Creating Account");
  69. AddUserProfile(firstName, lastName, password, m_defaultHomeX, m_defaultHomeY);
  70. profile = GetUserProfile(firstName, lastName);
  71. if (profile == null)
  72. {
  73. Console.WriteLine("[LOCAL USER SERVICES]: Unknown Master User after creation attempt. No clue what to do here.");
  74. }
  75. else
  76. {
  77. m_inventoryService.CreateNewUserInventory(profile.UUID);
  78. }
  79. return profile;
  80. }
  81. public override UserProfileData SetupMasterUser(LLUUID uuid)
  82. {
  83. UserProfileData data = GetUserProfile(uuid);
  84. if (data == null)
  85. {
  86. throw new Exception("[LOCAL USER SERVICES]: Unknown master user UUID. Possible reason: UserServer is not running.");
  87. }
  88. return data;
  89. }
  90. }
  91. }