Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
commit
2b0b9f3e6c
|
@ -227,7 +227,7 @@ namespace OpenSim.Services.LLLoginService
|
|||
GridRegion destination, List<InventoryFolderBase> invSkel, FriendInfo[] friendsList, ILibraryService libService,
|
||||
string where, string startlocation, Vector3 position, Vector3 lookAt, List<InventoryItemBase> gestures, string message,
|
||||
GridRegion home, IPEndPoint clientIP, string mapTileURL, string profileURL, string openIDURL, string searchURL, string currency,
|
||||
string DSTZone)
|
||||
string DSTZone, string destinationsURL, string avatarsURL)
|
||||
: this()
|
||||
{
|
||||
FillOutInventoryData(invSkel, libService);
|
||||
|
@ -246,6 +246,8 @@ namespace OpenSim.Services.LLLoginService
|
|||
MapTileURL = mapTileURL;
|
||||
ProfileURL = profileURL;
|
||||
OpenIDURL = openIDURL;
|
||||
DestinationsURL = destinationsURL;
|
||||
AvatarsURL = avatarsURL;
|
||||
|
||||
SearchURL = searchURL;
|
||||
Currency = currency;
|
||||
|
@ -533,6 +535,12 @@ namespace OpenSim.Services.LLLoginService
|
|||
if (profileURL != String.Empty)
|
||||
responseData["profile-server-url"] = profileURL;
|
||||
|
||||
if (DestinationsURL != String.Empty)
|
||||
responseData["destination_guide_url"] = DestinationsURL;
|
||||
|
||||
if (AvatarsURL != String.Empty)
|
||||
responseData["avatar_picker_url"] = AvatarsURL;
|
||||
|
||||
// We need to send an openid_token back in the response too
|
||||
if (openIDURL != String.Empty)
|
||||
responseData["openid_url"] = openIDURL;
|
||||
|
@ -1056,6 +1064,16 @@ namespace OpenSim.Services.LLLoginService
|
|||
set { currency = value; }
|
||||
}
|
||||
|
||||
public string DestinationsURL
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
public string AvatarsURL
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
public class UserInfo
|
||||
|
|
|
@ -78,6 +78,8 @@ namespace OpenSim.Services.LLLoginService
|
|||
protected string m_OpenIDURL;
|
||||
protected string m_SearchURL;
|
||||
protected string m_Currency;
|
||||
protected string m_DestinationGuide;
|
||||
protected string m_AvatarPicker;
|
||||
|
||||
protected string m_AllowedClients;
|
||||
protected string m_DeniedClients;
|
||||
|
@ -117,6 +119,8 @@ namespace OpenSim.Services.LLLoginService
|
|||
m_OpenIDURL = m_LoginServerConfig.GetString("OpenIDServerURL", String.Empty);
|
||||
m_SearchURL = m_LoginServerConfig.GetString("SearchURL", string.Empty);
|
||||
m_Currency = m_LoginServerConfig.GetString("Currency", string.Empty);
|
||||
m_DestinationGuide = m_LoginServerConfig.GetString ("DestinationGuide", string.Empty);
|
||||
m_AvatarPicker = m_LoginServerConfig.GetString ("AvatarPicker", string.Empty);
|
||||
|
||||
m_AllowedClients = m_LoginServerConfig.GetString("AllowedClients", string.Empty);
|
||||
m_DeniedClients = m_LoginServerConfig.GetString("DeniedClients", string.Empty);
|
||||
|
@ -453,7 +457,8 @@ namespace OpenSim.Services.LLLoginService
|
|||
= new LLLoginResponse(
|
||||
account, aCircuit, guinfo, destination, inventorySkel, friendsList, m_LibraryService,
|
||||
where, startLocation, position, lookAt, gestures, m_WelcomeMessage, home, clientIP,
|
||||
m_MapTileURL, m_ProfileURL, m_OpenIDURL, m_SearchURL, m_Currency, m_DSTZone);
|
||||
m_MapTileURL, m_ProfileURL, m_OpenIDURL, m_SearchURL, m_Currency, m_DSTZone,
|
||||
m_DestinationGuide, m_AvatarPicker);
|
||||
|
||||
m_log.DebugFormat("[LLOGIN SERVICE]: All clear. Sending login response to {0} {1}", firstName, lastName);
|
||||
|
||||
|
|
|
@ -325,6 +325,12 @@ HGAssetServiceConnector = "HGAssetService@8002/OpenSim.Server.Handlers.dll:Asset
|
|||
; For V2/V3 webapp authentication SSO
|
||||
; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
|
||||
|
||||
; For V3 destination guide
|
||||
; DestinationGuide = "http://127.0.0.1/guide"
|
||||
|
||||
; For V3 avatar picker (( work in progress ))
|
||||
; AvatarPicker = "http://127.0.0.1/avatars"
|
||||
|
||||
; If you run this login server behind a proxy, set this to true
|
||||
; HasProxy = false
|
||||
|
||||
|
|
|
@ -288,6 +288,12 @@ MapGetServiceConnector = "8002/OpenSim.Server.Handlers.dll:MapGetServiceConnecto
|
|||
; For V2/V3 webapp authentication SSO
|
||||
; OpenIDServerURL = "http://127.0.0.1/openid/openidserver/"
|
||||
|
||||
; For V3 destination guide
|
||||
; DestinationGuide = "http://127.0.0.1/guide"
|
||||
|
||||
; For V3 avatar picker (( work in progress ))
|
||||
; AvatarPicker = "http://127.0.0.1/avatars"
|
||||
|
||||
; If you run this login server behind a proxy, set this to true
|
||||
; HasProxy = false
|
||||
|
||||
|
|
Loading…
Reference in New Issue