LocalUserServices.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. namespace OpenSim.Region.Communications.Local
  32. {
  33. public class LocalUserServices : UserManagerBase
  34. {
  35. private readonly NetworkServersInfo m_serversInfo;
  36. private readonly uint m_defaultHomeX;
  37. private readonly uint m_defaultHomeY;
  38. private IInventoryServices m_inventoryService;
  39. /// <summary>
  40. ///
  41. /// </summary>
  42. /// <param name="serversInfo"></param>
  43. /// <param name="defaultHomeLocX"></param>
  44. /// <param name="defaultHomeLocY"></param>
  45. /// <param name="inventoryService"></param>
  46. /// <param name="statsCollector">Can be null if stats collection is not required.</param>
  47. public LocalUserServices(NetworkServersInfo serversInfo, uint defaultHomeLocX, uint defaultHomeLocY,
  48. IInventoryServices inventoryService)
  49. {
  50. m_serversInfo = serversInfo;
  51. m_defaultHomeX = defaultHomeLocX;
  52. m_defaultHomeY = defaultHomeLocY;
  53. m_inventoryService = inventoryService;
  54. }
  55. public override UserProfileData SetupMasterUser(string firstName, string lastName)
  56. {
  57. return SetupMasterUser(firstName, lastName, String.Empty);
  58. }
  59. public override UserProfileData SetupMasterUser(string firstName, string lastName, string password)
  60. {
  61. UserProfileData profile = GetUserProfile(firstName, lastName);
  62. if (profile != null)
  63. {
  64. return profile;
  65. }
  66. Console.WriteLine("Unknown Master User. Sandbox Mode: Creating Account");
  67. AddUserProfile(firstName, lastName, password, m_defaultHomeX, m_defaultHomeY);
  68. profile = GetUserProfile(firstName, lastName);
  69. if (profile == null)
  70. {
  71. Console.WriteLine("[LOCAL USER SERVICES]: Unknown Master User after creation attempt. No clue what to do here.");
  72. }
  73. else
  74. {
  75. m_inventoryService.CreateNewUserInventory(profile.ID);
  76. }
  77. return profile;
  78. }
  79. public override UserProfileData SetupMasterUser(LLUUID uuid)
  80. {
  81. UserProfileData data = GetUserProfile(uuid);
  82. if (data == null)
  83. {
  84. throw new Exception("[LOCAL USER SERVICES]: Unknown master user UUID. Possible reason: UserServer is not running.");
  85. }
  86. return data;
  87. }
  88. }
  89. }