Adding back the BasicProfileModule
parent
217c7d1140
commit
ba2f13db63
|
@ -0,0 +1,176 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) Contributors, http://opensimulator.org/
|
||||||
|
* See CONTRIBUTORS.TXT for a full list of copyright holders.
|
||||||
|
*
|
||||||
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
* modification, are permitted provided that the following conditions are met:
|
||||||
|
* * Redistributions of source code must retain the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer.
|
||||||
|
* * Redistributions in binary form must reproduce the above copyright
|
||||||
|
* notice, this list of conditions and the following disclaimer in the
|
||||||
|
* documentation and/or other materials provided with the distribution.
|
||||||
|
* * Neither the name of the OpenSimulator Project nor the
|
||||||
|
* names of its contributors may be used to endorse or promote products
|
||||||
|
* derived from this software without specific prior written permission.
|
||||||
|
*
|
||||||
|
* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
|
||||||
|
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||||
|
* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
|
||||||
|
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||||
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||||
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||||
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||||
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
*/
|
||||||
|
using System;
|
||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
using OpenMetaverse;
|
||||||
|
using log4net;
|
||||||
|
using Nini.Config;
|
||||||
|
using Mono.Addins;
|
||||||
|
|
||||||
|
using OpenSim.Framework;
|
||||||
|
using OpenSim.Region.Framework.Interfaces;
|
||||||
|
using OpenSim.Region.Framework.Scenes;
|
||||||
|
using OpenSim.Services.Interfaces;
|
||||||
|
|
||||||
|
namespace OpenSim.Region.CoreModules.Avatar.Profile
|
||||||
|
{
|
||||||
|
[Extension(Path = "/OpenSim/RegionModules", NodeName = "RegionModule", Id = "BasicProfileModule")]
|
||||||
|
public class BasicProfileModule : IProfileModule, ISharedRegionModule
|
||||||
|
{
|
||||||
|
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
|
||||||
|
//
|
||||||
|
// Module vars
|
||||||
|
//
|
||||||
|
private List<Scene> m_Scenes = new List<Scene>();
|
||||||
|
private bool m_Enabled = false;
|
||||||
|
|
||||||
|
#region ISharedRegionModule
|
||||||
|
|
||||||
|
public void Initialise(IConfigSource config)
|
||||||
|
{
|
||||||
|
m_log.DebugFormat("[PROFILE MODULE]: Basic Profile Module enabled");
|
||||||
|
m_Enabled = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddRegion(Scene scene)
|
||||||
|
{
|
||||||
|
if (!m_Enabled)
|
||||||
|
return;
|
||||||
|
|
||||||
|
lock (m_Scenes)
|
||||||
|
{
|
||||||
|
if (!m_Scenes.Contains(scene))
|
||||||
|
{
|
||||||
|
m_Scenes.Add(scene);
|
||||||
|
// Hook up events
|
||||||
|
scene.EventManager.OnNewClient += OnNewClient;
|
||||||
|
scene.RegisterModuleInterface<IProfileModule>(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RegionLoaded(Scene scene)
|
||||||
|
{
|
||||||
|
if (!m_Enabled)
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RemoveRegion(Scene scene)
|
||||||
|
{
|
||||||
|
if (!m_Enabled)
|
||||||
|
return;
|
||||||
|
|
||||||
|
lock (m_Scenes)
|
||||||
|
{
|
||||||
|
m_Scenes.Remove(scene);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void PostInitialise()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public void Close()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public string Name
|
||||||
|
{
|
||||||
|
get { return "BasicProfileModule"; }
|
||||||
|
}
|
||||||
|
|
||||||
|
public Type ReplaceableInterface
|
||||||
|
{
|
||||||
|
get { return typeof(IProfileModule); }
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
/// New Client Event Handler
|
||||||
|
private void OnNewClient(IClientAPI client)
|
||||||
|
{
|
||||||
|
//Profile
|
||||||
|
client.OnRequestAvatarProperties += RequestAvatarProperties;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void RequestAvatarProperties(IClientAPI remoteClient, UUID avatarID)
|
||||||
|
{
|
||||||
|
IScene s = remoteClient.Scene;
|
||||||
|
if (!(s is Scene))
|
||||||
|
return;
|
||||||
|
|
||||||
|
// Scene scene = (Scene)s;
|
||||||
|
|
||||||
|
string profileUrl = String.Empty;
|
||||||
|
string aboutText = String.Empty;
|
||||||
|
string firstLifeAboutText = String.Empty;
|
||||||
|
UUID image = UUID.Zero;
|
||||||
|
UUID firstLifeImage = UUID.Zero;
|
||||||
|
UUID partner = UUID.Zero;
|
||||||
|
uint wantMask = 0;
|
||||||
|
string wantText = String.Empty;
|
||||||
|
uint skillsMask = 0;
|
||||||
|
string skillsText = String.Empty;
|
||||||
|
string languages = String.Empty;
|
||||||
|
|
||||||
|
UserAccount account = m_Scenes[0].UserAccountService.GetUserAccount(m_Scenes[0].RegionInfo.ScopeID, avatarID);
|
||||||
|
|
||||||
|
string name = "Avatar";
|
||||||
|
int created = 0;
|
||||||
|
if (account != null)
|
||||||
|
{
|
||||||
|
name = account.FirstName + " " + account.LastName;
|
||||||
|
created = account.Created;
|
||||||
|
}
|
||||||
|
Byte[] charterMember = Utils.StringToBytes(name);
|
||||||
|
|
||||||
|
profileUrl = "No profile data";
|
||||||
|
aboutText = string.Empty;
|
||||||
|
firstLifeAboutText = string.Empty;
|
||||||
|
image = UUID.Zero;
|
||||||
|
firstLifeImage = UUID.Zero;
|
||||||
|
partner = UUID.Zero;
|
||||||
|
|
||||||
|
remoteClient.SendAvatarProperties(avatarID, aboutText,
|
||||||
|
Util.ToDateTime(created).ToString(
|
||||||
|
"M/d/yyyy", CultureInfo.InvariantCulture),
|
||||||
|
charterMember, firstLifeAboutText,
|
||||||
|
(uint)(0 & 0xff),
|
||||||
|
firstLifeImage, image, profileUrl, partner);
|
||||||
|
|
||||||
|
//Viewer expects interest data when it asks for properties.
|
||||||
|
remoteClient.SendAvatarInterestsReply(avatarID, wantMask, wantText,
|
||||||
|
skillsMask, skillsText, languages);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -124,8 +124,9 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
public void Initialise(IConfigSource source)
|
public void Initialise(IConfigSource source)
|
||||||
{
|
{
|
||||||
Config = source;
|
Config = source;
|
||||||
|
ReplaceableInterface = typeof(IProfileModule);
|
||||||
|
|
||||||
IConfig profileConfig = Config.Configs["Profile"];
|
IConfig profileConfig = Config.Configs["UserProfiles"];
|
||||||
|
|
||||||
if (profileConfig == null)
|
if (profileConfig == null)
|
||||||
{
|
{
|
||||||
|
@ -135,18 +136,16 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
|
|
||||||
// If we find ProfileURL then we configure for FULL support
|
// If we find ProfileURL then we configure for FULL support
|
||||||
// else we setup for BASIC support
|
// else we setup for BASIC support
|
||||||
ProfileServerUri = profileConfig.GetString("ProfileURL", "");
|
ProfileServerUri = profileConfig.GetString("ProfileServiceURL", "");
|
||||||
if (ProfileServerUri == "")
|
if (ProfileServerUri == "")
|
||||||
{
|
{
|
||||||
m_log.Info("[PROFILES] UserProfiles module is activated in BASIC mode");
|
|
||||||
Enabled = false;
|
Enabled = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
m_log.Debug("[PROFILES]: Full Profiles Enabled");
|
||||||
m_log.Info("[PROFILES] UserProfiles module is activated in FULL mode");
|
ReplaceableInterface = null;
|
||||||
Enabled = true;
|
Enabled = true;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -157,6 +156,9 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
/// </param>
|
/// </param>
|
||||||
public void AddRegion(Scene scene)
|
public void AddRegion(Scene scene)
|
||||||
{
|
{
|
||||||
|
if(!Enabled)
|
||||||
|
return;
|
||||||
|
|
||||||
Scene = scene;
|
Scene = scene;
|
||||||
Scene.RegisterModuleInterface<IProfileModule>(this);
|
Scene.RegisterModuleInterface<IProfileModule>(this);
|
||||||
Scene.EventManager.OnNewClient += OnNewClient;
|
Scene.EventManager.OnNewClient += OnNewClient;
|
||||||
|
@ -178,6 +180,8 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
/// </param>
|
/// </param>
|
||||||
public void RemoveRegion(Scene scene)
|
public void RemoveRegion(Scene scene)
|
||||||
{
|
{
|
||||||
|
if(!Enabled)
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -191,6 +195,8 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
/// </param>
|
/// </param>
|
||||||
public void RegionLoaded(Scene scene)
|
public void RegionLoaded(Scene scene)
|
||||||
{
|
{
|
||||||
|
if(!Enabled)
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -206,7 +212,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
/// </value>
|
/// </value>
|
||||||
public Type ReplaceableInterface
|
public Type ReplaceableInterface
|
||||||
{
|
{
|
||||||
get { return typeof(IProfileModule); }
|
get; private set;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -237,13 +243,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
/// </param>
|
/// </param>
|
||||||
void OnNewClient(IClientAPI client)
|
void OnNewClient(IClientAPI client)
|
||||||
{
|
{
|
||||||
// Basic or Full module?
|
|
||||||
if(!Enabled)
|
|
||||||
{
|
|
||||||
client.OnRequestAvatarProperties += BasicRequestProperties;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
//Profile
|
//Profile
|
||||||
client.OnRequestAvatarProperties += RequestAvatarProperties;
|
client.OnRequestAvatarProperties += RequestAvatarProperties;
|
||||||
client.OnUpdateAvatarProperties += AvatarPropertiesUpdate;
|
client.OnUpdateAvatarProperties += AvatarPropertiesUpdate;
|
||||||
|
@ -839,63 +838,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.UserProfiles
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void BasicRequestProperties(IClientAPI remoteClient, UUID avatarID)
|
|
||||||
{
|
|
||||||
IScene s = remoteClient.Scene;
|
|
||||||
if (!(s is Scene))
|
|
||||||
return;
|
|
||||||
|
|
||||||
string profileUrl = String.Empty;
|
|
||||||
string aboutText = String.Empty;
|
|
||||||
string firstLifeAboutText = String.Empty;
|
|
||||||
UUID image = UUID.Zero;
|
|
||||||
UUID firstLifeImage = UUID.Zero;
|
|
||||||
UUID partner = UUID.Zero;
|
|
||||||
uint wantMask = 0;
|
|
||||||
string wantText = String.Empty;
|
|
||||||
uint skillsMask = 0;
|
|
||||||
string skillsText = String.Empty;
|
|
||||||
string languages = String.Empty;
|
|
||||||
|
|
||||||
UserAccount account = Scene.UserAccountService.GetUserAccount(Scene.RegionInfo.ScopeID, avatarID);
|
|
||||||
|
|
||||||
string name = "Avatar";
|
|
||||||
int created = 0;
|
|
||||||
if (account != null)
|
|
||||||
{
|
|
||||||
name = account.FirstName + " " + account.LastName;
|
|
||||||
created = account.Created;
|
|
||||||
}
|
|
||||||
Byte[] charterMember = Utils.StringToBytes(name);
|
|
||||||
|
|
||||||
profileUrl = "No profile data";
|
|
||||||
aboutText = string.Empty;
|
|
||||||
firstLifeAboutText = string.Empty;
|
|
||||||
image = UUID.Zero;
|
|
||||||
firstLifeImage = UUID.Zero;
|
|
||||||
partner = UUID.Zero;
|
|
||||||
|
|
||||||
remoteClient.SendAvatarProperties(avatarID, aboutText,
|
|
||||||
Util.ToDateTime(created).ToString(
|
|
||||||
"M/d/yyyy", CultureInfo.InvariantCulture),
|
|
||||||
charterMember, firstLifeAboutText,
|
|
||||||
(uint)(0 & 0xff),
|
|
||||||
firstLifeImage, image, profileUrl, partner);
|
|
||||||
|
|
||||||
//Viewer expects interest data when it asks for properties.
|
|
||||||
remoteClient.SendAvatarInterestsReply(avatarID, wantMask, wantText,
|
|
||||||
skillsMask, skillsText, languages);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Requests the avatar properties.
|
|
||||||
/// </summary>
|
|
||||||
/// <param name='remoteClient'>
|
|
||||||
/// Remote client.
|
|
||||||
/// </param>
|
|
||||||
/// <param name='avatarID'>
|
|
||||||
/// Avatar I.
|
|
||||||
/// </param>
|
|
||||||
public void RequestAvatarProperties(IClientAPI remoteClient, UUID avatarID)
|
public void RequestAvatarProperties(IClientAPI remoteClient, UUID avatarID)
|
||||||
{
|
{
|
||||||
if ( String.IsNullOrEmpty(avatarID.ToString()) || String.IsNullOrEmpty(remoteClient.AgentId.ToString()))
|
if ( String.IsNullOrEmpty(avatarID.ToString()) || String.IsNullOrEmpty(remoteClient.AgentId.ToString()))
|
||||||
|
|
|
@ -1032,11 +1032,11 @@
|
||||||
;# {InitialTerrain} {} {Initial terrain type} {pinhead-island flat} pinhead-island
|
;# {InitialTerrain} {} {Initial terrain type} {pinhead-island flat} pinhead-island
|
||||||
; InitialTerrain = "pinhead-island"
|
; InitialTerrain = "pinhead-island"
|
||||||
|
|
||||||
[Profile]
|
[UserProfiles]
|
||||||
;# {ProfileURL} {} {Set url to UserProfilesService} {}
|
;# {ProfileURL} {} {Set url to UserProfilesService} {}
|
||||||
;; Set the value of the url to your UserProfilesService
|
;; Set the value of the url to your UserProfilesService
|
||||||
;; If un-set / "" the module is disabled
|
;; If un-set / "" the module is disabled
|
||||||
;; ProfileURL = http://127.0.0.1:8002
|
;; ProfileServiceURL = http://127.0.0.1:8002
|
||||||
|
|
||||||
[Architecture]
|
[Architecture]
|
||||||
;# {Include-Architecture} {} {Choose one of the following architectures} {config-include/Standalone.ini config-include/StandaloneHypergrid.ini config-include/Grid.ini config-include/GridHypergrid.ini config-include/SimianGrid.ini config-include/HyperSimianGrid.ini} config-include/Standalone.ini
|
;# {Include-Architecture} {} {Choose one of the following architectures} {config-include/Standalone.ini config-include/StandaloneHypergrid.ini config-include/Grid.ini config-include/GridHypergrid.ini config-include/SimianGrid.ini config-include/HyperSimianGrid.ini} config-include/Standalone.ini
|
||||||
|
|
Loading…
Reference in New Issue