Fix Simian regression
parent
5ca4c238e0
commit
b28d1b6ccd
|
@ -81,7 +81,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
|
|
||||||
public SimianAssetServiceConnector(IConfigSource source)
|
public SimianAssetServiceConnector(IConfigSource source)
|
||||||
{
|
{
|
||||||
Initialise(source);
|
CommonInit(source);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Initialise(IConfigSource source)
|
public void Initialise(IConfigSource source)
|
||||||
|
@ -91,6 +91,11 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
{
|
{
|
||||||
string name = moduleConfig.GetString("AssetServices", "");
|
string name = moduleConfig.GetString("AssetServices", "");
|
||||||
if (name == Name)
|
if (name == Name)
|
||||||
|
CommonInit(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommonInit(IConfigSource source)
|
||||||
{
|
{
|
||||||
IConfig gridConfig = source.Configs["AssetService"];
|
IConfig gridConfig = source.Configs["AssetService"];
|
||||||
if (gridConfig != null)
|
if (gridConfig != null)
|
||||||
|
@ -109,8 +114,6 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
else
|
else
|
||||||
m_Enabled = true;
|
m_Enabled = true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#region IAssetService
|
#region IAssetService
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
|
|
||||||
public SimianAuthenticationServiceConnector(IConfigSource source)
|
public SimianAuthenticationServiceConnector(IConfigSource source)
|
||||||
{
|
{
|
||||||
Initialise(source);
|
CommonInit(source);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Initialise(IConfigSource source)
|
public void Initialise(IConfigSource source)
|
||||||
|
@ -79,6 +79,11 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
{
|
{
|
||||||
string name = moduleConfig.GetString("AuthenticationServices", "");
|
string name = moduleConfig.GetString("AuthenticationServices", "");
|
||||||
if (name == Name)
|
if (name == Name)
|
||||||
|
CommonInit(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommonInit(IConfigSource source)
|
||||||
{
|
{
|
||||||
IConfig gridConfig = source.Configs["AuthenticationService"];
|
IConfig gridConfig = source.Configs["AuthenticationService"];
|
||||||
if (gridConfig != null)
|
if (gridConfig != null)
|
||||||
|
@ -96,8 +101,6 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
if (String.IsNullOrEmpty(m_serverUrl))
|
if (String.IsNullOrEmpty(m_serverUrl))
|
||||||
m_log.Info("[SIMIAN AUTH CONNECTOR]: No AuthenticationServerURI specified, disabling connector");
|
m_log.Info("[SIMIAN AUTH CONNECTOR]: No AuthenticationServerURI specified, disabling connector");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public string Authenticate(UUID principalID, string password, int lifetime)
|
public string Authenticate(UUID principalID, string password, int lifetime)
|
||||||
{
|
{
|
||||||
|
|
|
@ -74,7 +74,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
|
|
||||||
public SimianAvatarServiceConnector(IConfigSource source)
|
public SimianAvatarServiceConnector(IConfigSource source)
|
||||||
{
|
{
|
||||||
Initialise(source);
|
CommonInit(source);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Initialise(IConfigSource source)
|
public void Initialise(IConfigSource source)
|
||||||
|
@ -84,6 +84,11 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
{
|
{
|
||||||
string name = moduleConfig.GetString("AvatarServices", "");
|
string name = moduleConfig.GetString("AvatarServices", "");
|
||||||
if (name == Name)
|
if (name == Name)
|
||||||
|
CommonInit(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommonInit(IConfigSource source)
|
||||||
{
|
{
|
||||||
IConfig gridConfig = source.Configs["AvatarService"];
|
IConfig gridConfig = source.Configs["AvatarService"];
|
||||||
if (gridConfig != null)
|
if (gridConfig != null)
|
||||||
|
@ -101,8 +106,6 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
if (String.IsNullOrEmpty(m_serverUrl))
|
if (String.IsNullOrEmpty(m_serverUrl))
|
||||||
m_log.Info("[SIMIAN AVATAR CONNECTOR]: No AvatarServerURI specified, disabling connector");
|
m_log.Info("[SIMIAN AVATAR CONNECTOR]: No AvatarServerURI specified, disabling connector");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#region IAvatarService
|
#region IAvatarService
|
||||||
|
|
||||||
|
|
|
@ -98,7 +98,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
|
|
||||||
public SimianGridServiceConnector(IConfigSource source)
|
public SimianGridServiceConnector(IConfigSource source)
|
||||||
{
|
{
|
||||||
Initialise(source);
|
CommonInit(source);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Initialise(IConfigSource source)
|
public void Initialise(IConfigSource source)
|
||||||
|
@ -108,6 +108,11 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
{
|
{
|
||||||
string name = moduleConfig.GetString("GridServices", "");
|
string name = moduleConfig.GetString("GridServices", "");
|
||||||
if (name == Name)
|
if (name == Name)
|
||||||
|
CommonInit(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommonInit(IConfigSource source)
|
||||||
{
|
{
|
||||||
IConfig gridConfig = source.Configs["GridService"];
|
IConfig gridConfig = source.Configs["GridService"];
|
||||||
if (gridConfig != null)
|
if (gridConfig != null)
|
||||||
|
@ -125,8 +130,6 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
if (String.IsNullOrEmpty(m_serverUrl))
|
if (String.IsNullOrEmpty(m_serverUrl))
|
||||||
m_log.Info("[SIMIAN GRID CONNECTOR]: No GridServerURI specified, disabling connector");
|
m_log.Info("[SIMIAN GRID CONNECTOR]: No GridServerURI specified, disabling connector");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#region IGridService
|
#region IGridService
|
||||||
|
|
||||||
|
|
|
@ -88,7 +88,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
|
|
||||||
public SimianInventoryServiceConnector(IConfigSource source)
|
public SimianInventoryServiceConnector(IConfigSource source)
|
||||||
{
|
{
|
||||||
Initialise(source);
|
CommonInit(source);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Initialise(IConfigSource source)
|
public void Initialise(IConfigSource source)
|
||||||
|
@ -98,6 +98,11 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
{
|
{
|
||||||
string name = moduleConfig.GetString("InventoryServices", "");
|
string name = moduleConfig.GetString("InventoryServices", "");
|
||||||
if (name == Name)
|
if (name == Name)
|
||||||
|
CommonInit(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommonInit(IConfigSource source)
|
||||||
{
|
{
|
||||||
IConfig gridConfig = source.Configs["InventoryService"];
|
IConfig gridConfig = source.Configs["InventoryService"];
|
||||||
if (gridConfig != null)
|
if (gridConfig != null)
|
||||||
|
@ -127,8 +132,6 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
else if (String.IsNullOrEmpty(m_userServerUrl))
|
else if (String.IsNullOrEmpty(m_userServerUrl))
|
||||||
m_log.Info("[SIMIAN INVENTORY CONNECTOR]: No UserAccountServerURI specified, disabling connector");
|
m_log.Info("[SIMIAN INVENTORY CONNECTOR]: No UserAccountServerURI specified, disabling connector");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create the entire inventory for a given user
|
/// Create the entire inventory for a given user
|
||||||
|
|
|
@ -99,7 +99,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
|
|
||||||
public SimianPresenceServiceConnector(IConfigSource source)
|
public SimianPresenceServiceConnector(IConfigSource source)
|
||||||
{
|
{
|
||||||
Initialise(source);
|
CommonInit(source);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Initialise(IConfigSource source)
|
public void Initialise(IConfigSource source)
|
||||||
|
@ -109,6 +109,11 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
{
|
{
|
||||||
string name = moduleConfig.GetString("PresenceServices", "");
|
string name = moduleConfig.GetString("PresenceServices", "");
|
||||||
if (name == Name)
|
if (name == Name)
|
||||||
|
CommonInit(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommonInit(IConfigSource source)
|
||||||
{
|
{
|
||||||
IConfig gridConfig = source.Configs["PresenceService"];
|
IConfig gridConfig = source.Configs["PresenceService"];
|
||||||
if (gridConfig != null)
|
if (gridConfig != null)
|
||||||
|
@ -126,8 +131,6 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
if (String.IsNullOrEmpty(m_serverUrl))
|
if (String.IsNullOrEmpty(m_serverUrl))
|
||||||
m_log.Info("[SIMIAN PRESENCE CONNECTOR]: No PresenceServerURI specified, disabling connector");
|
m_log.Info("[SIMIAN PRESENCE CONNECTOR]: No PresenceServerURI specified, disabling connector");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#region IPresenceService
|
#region IPresenceService
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
|
|
||||||
public SimianUserAccountServiceConnector(IConfigSource source)
|
public SimianUserAccountServiceConnector(IConfigSource source)
|
||||||
{
|
{
|
||||||
Initialise(source);
|
CommonInit(source);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Initialise(IConfigSource source)
|
public void Initialise(IConfigSource source)
|
||||||
|
@ -83,6 +83,11 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
{
|
{
|
||||||
string name = moduleConfig.GetString("UserAccountServices", "");
|
string name = moduleConfig.GetString("UserAccountServices", "");
|
||||||
if (name == Name)
|
if (name == Name)
|
||||||
|
CommonInit(source);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CommonInit(IConfigSource source)
|
||||||
{
|
{
|
||||||
IConfig gridConfig = source.Configs["UserAccountService"];
|
IConfig gridConfig = source.Configs["UserAccountService"];
|
||||||
if (gridConfig != null)
|
if (gridConfig != null)
|
||||||
|
@ -100,8 +105,6 @@ namespace OpenSim.Services.Connectors.SimianGrid
|
||||||
if (String.IsNullOrEmpty(m_serverUrl))
|
if (String.IsNullOrEmpty(m_serverUrl))
|
||||||
m_log.Info("[SIMIAN ACCOUNT CONNECTOR]: No UserAccountServerURI specified, disabling connector");
|
m_log.Info("[SIMIAN ACCOUNT CONNECTOR]: No UserAccountServerURI specified, disabling connector");
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public UserAccount GetUserAccount(UUID scopeID, string firstName, string lastName)
|
public UserAccount GetUserAccount(UUID scopeID, string firstName, string lastName)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue