mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
UserProfiles
UserProfiles for Robust and Standalone. Includes service and connectors for Robust and standalone opensim plus matching region module.
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using Nini.Config;
|
||||
using log4net;
|
||||
using OpenSim.Services.Base;
|
||||
using OpenSim.Data;
|
||||
|
||||
namespace OpenSim.Services.ProfilesService
|
||||
{
|
||||
public class UserProfilesServiceBase: ServiceBase
|
||||
{
|
||||
static readonly ILog m_log =
|
||||
LogManager.GetLogger(
|
||||
MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
public IProfilesData ProfilesData;
|
||||
|
||||
public string ConfigName
|
||||
{
|
||||
get; private set;
|
||||
}
|
||||
|
||||
public UserProfilesServiceBase(IConfigSource config, string configName):
|
||||
base(config)
|
||||
{
|
||||
if(string.IsNullOrEmpty(configName))
|
||||
{
|
||||
m_log.WarnFormat("[PROFILES]: Configuration section not given!");
|
||||
return;
|
||||
}
|
||||
|
||||
string dllName = String.Empty;
|
||||
string connString = null;
|
||||
string realm = String.Empty;
|
||||
|
||||
IConfig dbConfig = config.Configs["DatabaseService"];
|
||||
if (dbConfig != null)
|
||||
{
|
||||
if (dllName == String.Empty)
|
||||
dllName = dbConfig.GetString("StorageProvider", String.Empty);
|
||||
if (string.IsNullOrEmpty(connString))
|
||||
connString = dbConfig.GetString("ConnectionString", String.Empty);
|
||||
}
|
||||
|
||||
IConfig ProfilesConfig = config.Configs[configName];
|
||||
if (ProfilesConfig != null)
|
||||
{
|
||||
connString = ProfilesConfig.GetString("ConnectionString", connString);
|
||||
realm = ProfilesConfig.GetString("Realm", realm);
|
||||
}
|
||||
|
||||
ProfilesData = LoadPlugin<IProfilesData>(dllName, new Object[] { connString });
|
||||
if (ProfilesData == null)
|
||||
throw new Exception("Could not find a storage interface in the given module");
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user