AvatarProfilesModule.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 OpenSimulator 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 System.Collections;
  29. using System.Globalization;
  30. using System.Reflection;
  31. using log4net;
  32. using Nini.Config;
  33. using OpenMetaverse;
  34. using OpenSim.Framework;
  35. using OpenSim.Region.Framework.Interfaces;
  36. using OpenSim.Region.Framework.Scenes;
  37. namespace OpenSim.Region.CoreModules.Avatar.Profiles
  38. {
  39. public class AvatarProfilesModule : IRegionModule
  40. {
  41. private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
  42. private Scene m_scene;
  43. private IProfileModule m_profileModule = null;
  44. private bool m_enabled = true;
  45. public AvatarProfilesModule()
  46. {
  47. }
  48. #region IRegionModule Members
  49. public void Initialise(Scene scene, IConfigSource config)
  50. {
  51. IConfig profileConfig = config.Configs["Profile"];
  52. if (profileConfig != null)
  53. {
  54. if (profileConfig.GetString("Module", Name) != Name)
  55. {
  56. m_enabled = false;
  57. return;
  58. }
  59. }
  60. m_scene = scene;
  61. m_scene.EventManager.OnNewClient += NewClient;
  62. }
  63. public void PostInitialise()
  64. {
  65. if (!m_enabled)
  66. return;
  67. m_profileModule = m_scene.RequestModuleInterface<IProfileModule>();
  68. }
  69. public void Close()
  70. {
  71. }
  72. public string Name
  73. {
  74. get { return "AvatarProfilesModule"; }
  75. }
  76. public bool IsSharedModule
  77. {
  78. get { return false; }
  79. }
  80. #endregion
  81. public void NewClient(IClientAPI client)
  82. {
  83. client.OnRequestAvatarProperties += RequestAvatarProperty;
  84. client.OnUpdateAvatarProperties += UpdateAvatarProperties;
  85. }
  86. public void RemoveClient(IClientAPI client)
  87. {
  88. client.OnRequestAvatarProperties -= RequestAvatarProperty;
  89. client.OnUpdateAvatarProperties -= UpdateAvatarProperties;
  90. }
  91. /// <summary>
  92. ///
  93. /// </summary>
  94. /// <param name="remoteClient"></param>
  95. /// <param name="avatarID"></param>
  96. public void RequestAvatarProperty(IClientAPI remoteClient, UUID avatarID)
  97. {
  98. // FIXME: finish adding fields such as url, masking, etc.
  99. UserProfileData profile = m_scene.CommsManager.UserService.GetUserProfile(avatarID);
  100. if (null != profile)
  101. {
  102. Byte[] charterMember;
  103. if (profile.CustomType == "")
  104. {
  105. charterMember = new Byte[1];
  106. charterMember[0] = (Byte)((profile.UserFlags & 0xf00) >> 8);
  107. }
  108. else
  109. {
  110. charterMember = Utils.StringToBytes(profile.CustomType);
  111. }
  112. if (m_profileModule != null)
  113. {
  114. Hashtable profileData = m_profileModule.GetProfileData(remoteClient.AgentId);
  115. if (profileData["ProfileUrl"] != null)
  116. profile.ProfileUrl = profileData["ProfileUrl"].ToString();
  117. }
  118. remoteClient.SendAvatarProperties(profile.ID, profile.AboutText,
  119. Util.ToDateTime(profile.Created).ToString("M/d/yyyy", CultureInfo.InvariantCulture),
  120. charterMember, profile.FirstLifeAboutText, (uint)(profile.UserFlags & 0xff),
  121. profile.FirstLifeImage, profile.Image, profile.ProfileUrl, profile.Partner);
  122. }
  123. else
  124. {
  125. m_log.Debug("[AvatarProfilesModule]: Got null for profile for " + avatarID.ToString());
  126. }
  127. }
  128. public void UpdateAvatarProperties(IClientAPI remoteClient, UserProfileData newProfile)
  129. {
  130. UserProfileData Profile = m_scene.CommsManager.UserService.GetUserProfile(newProfile.ID);
  131. // if it's the profile of the user requesting the update, then we change only a few things.
  132. if (remoteClient.AgentId.CompareTo(Profile.ID) == 0)
  133. {
  134. Profile.Image = newProfile.Image;
  135. Profile.FirstLifeImage = newProfile.FirstLifeImage;
  136. Profile.AboutText = newProfile.AboutText;
  137. Profile.FirstLifeAboutText = newProfile.FirstLifeAboutText;
  138. Profile.ProfileUrl = newProfile.ProfileUrl;
  139. }
  140. else
  141. {
  142. return;
  143. }
  144. if (m_scene.CommsManager.UserService.UpdateUserProfile(Profile))
  145. {
  146. RequestAvatarProperty(remoteClient, newProfile.ID);
  147. }
  148. }
  149. }
  150. }