* Move common string aggregation for caps seed path to a method in CapsUtil
parent
e8dba51247
commit
715a776f7d
|
@ -35,6 +35,16 @@ namespace OpenSim.Framework.Communications.Capabilities
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class CapsUtil
|
public class CapsUtil
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Generate a CAPS seed path using a previously generated CAPS object path component
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="capsKey"></param>
|
||||||
|
/// <returns></returns>
|
||||||
|
public static string GetCapsSeedPath(string capsObjectPath)
|
||||||
|
{
|
||||||
|
return "/CAPS/" + capsKey + "0000/";
|
||||||
|
}
|
||||||
|
|
||||||
public static string GetRandomCapsPath()
|
public static string GetRandomCapsPath()
|
||||||
{
|
{
|
||||||
UUID caps = UUID.Random();
|
UUID caps = UUID.Random();
|
||||||
|
|
|
@ -309,9 +309,8 @@ namespace OpenSim.Grid.UserServer
|
||||||
response.RegionX = regionInfo.regionLocX;
|
response.RegionX = regionInfo.regionLocX;
|
||||||
response.RegionY = regionInfo.regionLocY;
|
response.RegionY = regionInfo.regionLocY;
|
||||||
|
|
||||||
//Not sure if the + "/CAPS/" should in fact be +"CAPS/" depending if there is already a / as part of httpServerURI
|
|
||||||
string capsPath = CapsUtil.GetRandomCapsPath();
|
string capsPath = CapsUtil.GetRandomCapsPath();
|
||||||
response.SeedCapability = regionInfo.httpServerURI + "CAPS/" + capsPath + "0000/";
|
response.SeedCapability = regionInfo.httpServerURI + CapsUtil.GetCapsSeedPath(capsPath);
|
||||||
|
|
||||||
// Notify the target of an incoming user
|
// Notify the target of an incoming user
|
||||||
m_log.InfoFormat(
|
m_log.InfoFormat(
|
||||||
|
|
|
@ -297,20 +297,21 @@ namespace OpenSim.Region.Communications.Local
|
||||||
response.RegionY = regionInfo.RegionLocY;
|
response.RegionY = regionInfo.RegionLocY;
|
||||||
|
|
||||||
string capsPath = CapsUtil.GetRandomCapsPath();
|
string capsPath = CapsUtil.GetRandomCapsPath();
|
||||||
|
string capsSeedPath = CapsUtil.GetCapsSeedPath(capsPath);
|
||||||
|
|
||||||
// Don't use the following! It Fails for logging into any region not on the same port as the http server!
|
// Don't use the following! It Fails for logging into any region not on the same port as the http server!
|
||||||
// Kept here so it doesn't happen again!
|
// Kept here so it doesn't happen again!
|
||||||
// response.SeedCapability = regionInfo.ServerURI + "/CAPS/" + capsPath + "0000/";
|
// response.SeedCapability = regionInfo.ServerURI + capsSeedPath;
|
||||||
|
|
||||||
string seedcap = "http://";
|
string seedcap = "http://";
|
||||||
|
|
||||||
if (serversInfo.HttpUsesSSL)
|
if (serversInfo.HttpUsesSSL)
|
||||||
{
|
{
|
||||||
seedcap = "https://" + serversInfo.HttpSSLCN + ":" + serversInfo.httpSSLPort + "/CAPS/" + capsPath + "0000/";
|
seedcap = "https://" + serversInfo.HttpSSLCN + ":" + serversInfo.httpSSLPort + capsSeedPath;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
seedcap = "http://" + regionInfo.ExternalHostName + ":" + serversInfo.HttpListenerPort + "/CAPS/" + capsPath + "0000/";
|
seedcap = "http://" + regionInfo.ExternalHostName + ":" + serversInfo.HttpListenerPort + capsSeedPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
response.SeedCapability = seedcap;
|
response.SeedCapability = seedcap;
|
||||||
|
|
|
@ -576,10 +576,14 @@ namespace OpenSim.Region.Environment.Modules.InterGrid
|
||||||
}
|
}
|
||||||
|
|
||||||
// DEPRECIATED
|
// DEPRECIATED
|
||||||
responseMap["seed_capability"] = OSD.FromString(regionCapsHttpProtocol + httpaddr + ":" + reg.HttpPort + "/CAPS/" + userCap.CapsObjectPath + "0000/");
|
responseMap["seed_capability"]
|
||||||
|
= OSD.FromString(
|
||||||
|
regionCapsHttpProtocol + httpaddr + ":" + reg.HttpPort + CapsUtil.GetCapsSeedPath(userCap.CapsObjectPath));
|
||||||
|
|
||||||
// REPLACEMENT
|
// REPLACEMENT
|
||||||
responseMap["region_seed_capability"] = OSD.FromString(regionCapsHttpProtocol + httpaddr + ":" + reg.HttpPort + "/CAPS/" + userCap.CapsObjectPath + "0000/");
|
responseMap["region_seed_capability"]
|
||||||
|
= OSD.FromString(
|
||||||
|
regionCapsHttpProtocol + httpaddr + ":" + reg.HttpPort + CapsUtil.GetCapsSeedPath(userCap.CapsObjectPath));
|
||||||
|
|
||||||
responseMap["rez_avatar"] = OSD.FromString(rezHttpProtocol + httpaddr + ":" + urlport + rezAvatarPath);
|
responseMap["rez_avatar"] = OSD.FromString(rezHttpProtocol + httpaddr + ":" + urlport + rezAvatarPath);
|
||||||
responseMap["rez_avatar/rez"] = OSD.FromString(rezHttpProtocol + httpaddr + ":" + urlport + rezAvatarPath);
|
responseMap["rez_avatar/rez"] = OSD.FromString(rezHttpProtocol + httpaddr + ":" + urlport + rezAvatarPath);
|
||||||
|
|
|
@ -210,10 +210,12 @@ namespace OpenSim.Region.Environment.Scenes.Hypergrid
|
||||||
|
|
||||||
if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY) || isHyperLink)
|
if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY) || isHyperLink)
|
||||||
{
|
{
|
||||||
// TODO Should construct this behind a method
|
capsPath
|
||||||
capsPath =
|
= "http://"
|
||||||
"http://" + reg.ExternalHostName + ":" + reg.HttpPort
|
+ reg.ExternalHostName
|
||||||
+ "/CAPS/" + agentCircuit.CapsPath + "0000/";
|
+ ":"
|
||||||
|
+ reg.HttpPort
|
||||||
|
+ CapsUtil.GetCapsSeedPath(agentCircuit.CapsPath);
|
||||||
|
|
||||||
if (eq != null)
|
if (eq != null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -801,10 +801,12 @@ namespace OpenSim.Region.Environment.Scenes
|
||||||
|
|
||||||
if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY))
|
if (Util.IsOutsideView(oldRegionX, newRegionX, oldRegionY, newRegionY))
|
||||||
{
|
{
|
||||||
// TODO Should construct this behind a method
|
capsPath
|
||||||
capsPath =
|
= "http://"
|
||||||
"http://" + reg.ExternalHostName + ":" + reg.HttpPort
|
+ reg.ExternalHostName
|
||||||
+ "/CAPS/" + agentCircuit.CapsPath + "0000/";
|
+ ":"
|
||||||
|
+ reg.HttpPort
|
||||||
|
+ CapsUtil.GetCapsSeedPath(agentCircuit.CapsPath);
|
||||||
|
|
||||||
if (eq != null)
|
if (eq != null)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue