From c3dd98b016c8770c61525bd4d6ca898c635358ed Mon Sep 17 00:00:00 2001
From: Melanie
Date: Tue, 4 Aug 2009 05:03:32 +0100
Subject: Revert the #3899 patch and it's two follow ups
---
.../Voice/FreeSwitchVoice/FreeSwitchDialplan.cs | 25 ++++-------
.../Voice/FreeSwitchVoice/FreeSwitchDirectory.cs | 48 ++++++++++------------
.../Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs | 8 ++--
3 files changed, 32 insertions(+), 49 deletions(-)
diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs
index 94f29ea..c05d598 100644
--- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs
+++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDialplan.cs
@@ -26,9 +26,7 @@
*/
using log4net;
-using System;
using System.Reflection;
-using System.Text;
using System.Collections;
namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
@@ -39,7 +37,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- public Hashtable HandleDialplanRequest(string Context, string Realm, Hashtable request)
+ public Hashtable HandleDialplanRequest(Hashtable request)
{
m_log.DebugFormat("[FreeSwitchVoice] HandleDialplanRequest called with {0}",request.ToString());
@@ -50,32 +48,26 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
m_log.InfoFormat("[FreeSwitchDirectory] requestBody item {0} {1}",item.Key, item.Value);
}
- string requestcontext = (string) request["Hunt-Context"];
response["content_type"] = "text/xml";
response["keepalive"] = false;
response["int_response_code"] = 200;
- if (Context != requestcontext && Context != "public")
- {
- m_log.DebugFormat("[FreeSwitchDirectory] returning empty as it's for context {0} and we are using {1}", requestcontext, Context);
- response["str_response_string"] = "";
- } else {
- response["str_response_string"] = String.Format(@"
+ response["str_response_string"] = @"
- " +
+
-/*
+
- */
+
- @"
+
-
+
@@ -94,8 +86,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
- ", Context, Realm);
- }
+ ";
return response;
}
diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDirectory.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDirectory.cs
index 5d90a8f..0a9f69d 100644
--- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDirectory.cs
+++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchDirectory.cs
@@ -38,18 +38,12 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
private static readonly ILog m_log =
LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
- public Hashtable HandleDirectoryRequest(string Context, string Realm, Hashtable request)
+ public Hashtable HandleDirectoryRequest(Hashtable request)
{
- Hashtable response = new Hashtable();
- string domain = (string) request["domain"];
- if (domain != Realm) {
- response["content_type"] = "text/xml";
- response["keepalive"] = false;
- response["int_response_code"] = 200;
- response["str_response_string"] = "";
- } else {
m_log.DebugFormat("[FreeSwitchDirectory] HandleDirectoryRequest called with {0}",request.ToString());
+ Hashtable response = new Hashtable();
+
// information in the request we might be interested in
// Request 1 sip_auth for users account
@@ -91,11 +85,11 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
if (sipAuthMethod == "REGISTER")
{
- response = HandleRegister(Context, Realm, request);
+ response = HandleRegister(request);
}
else if (sipAuthMethod == "INVITE")
{
- response = HandleInvite(Context, Realm, request);
+ response = HandleInvite(request);
}
else
{
@@ -107,19 +101,19 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
}
else if (eventCallingFunction == "switch_xml_locate_user")
{
- response = HandleLocateUser(Realm, request);
+ response = HandleLocateUser(request);
}
else if (eventCallingFunction == "user_data_function") // gets called when an avatar to avatar call is made
{
- response = HandleLocateUser(Realm, request);
+ response = HandleLocateUser(request);
}
else if (eventCallingFunction == "user_outgoing_channel")
{
- response = HandleRegister(Context, Realm, request);
+ response = HandleRegister(request);
}
else if (eventCallingFunction == "config_sofia") // happens once on freeswitch startup
{
- response = HandleConfigSofia(Context, Realm, request);
+ response = HandleConfigSofia(request);
}
else if (eventCallingFunction == "switch_load_network_lists")
{
@@ -137,11 +131,10 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
response["content_type"] = "text/xml";
response["str_response_string"] = "";
}
- }
return response;
}
- private Hashtable HandleRegister(string Context, string Realm, Hashtable request)
+ private Hashtable HandleRegister(Hashtable request)
{
m_log.Info("[FreeSwitchDirectory] HandleRegister called");
@@ -166,19 +159,19 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
"\r\n" +
"\r\n" +
"\r\n" +
- "\r\n" +
+ "\r\n" +
""+
"\r\n" +
"\r\n" +
"\r\n" +
"\r\n" +
"\r\n",
- domain , user, password, Context);
+ domain , user, password);
return response;
}
- private Hashtable HandleInvite(string Context, string Realm, Hashtable request)
+ private Hashtable HandleInvite(Hashtable request)
{
m_log.Info("[FreeSwitchDirectory] HandleInvite called");
@@ -203,7 +196,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
"\r\n" +
"\r\n" +
"\r\n" +
- "\r\n" +
+ "\r\n" +
""+
"\r\n" +
"\r\n" +
@@ -213,19 +206,20 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
"\r\n" +
"\r\n" +
"\r\n" +
- "\r\n" +
+ "\r\n" +
""+
"\r\n" +
"\r\n" +
"\r\n" +
"\r\n" +
"\r\n",
- domain , user, password,sipRequestUser, Context);
+ domain , user, password,sipRequestUser);
return response;
}
- private Hashtable HandleLocateUser(String Realm, Hashtable request)
+
+ private Hashtable HandleLocateUser(Hashtable request)
{
m_log.Info("[FreeSwitchDirectory] HandleLocateUser called");
@@ -259,7 +253,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
return response;
}
- private Hashtable HandleConfigSofia(string Context, string Realm, Hashtable request)
+ private Hashtable HandleConfigSofia(Hashtable request)
{
m_log.Info("[FreeSwitchDirectory] HandleConfigSofia called");
@@ -292,7 +286,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
"\r\n"+
"\r\n"+
"\r\n"+
- "\r\n"+
+ "\r\n"+
"\r\n"+
"\r\n"+
"\r\n"+
@@ -307,7 +301,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
"\r\n" +
"\r\n" +
"\r\n",
- domain, Context);
+ domain);
return response;
}
diff --git a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs
index 5fa7efd..f9cb1c4 100644
--- a/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs
+++ b/OpenSim/Region/OptionalModules/Avatar/Voice/FreeSwitchVoice/FreeSwitchVoiceModule.cs
@@ -95,7 +95,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
// private static IPEndPoint m_FreeSwitchServiceIP;
private int m_freeSwitchServicePort;
private string m_openSimWellKnownHTTPAddress;
- private string m_freeSwitchContext;
private FreeSwitchDirectory m_FreeSwitchDirectory;
private FreeSwitchDialplan m_FreeSwitchDialplan;
@@ -152,7 +151,6 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
m_freeSwitchDefaultTimeout = m_config.GetInt("freeswitch_default_timeout", 5000);
// m_freeSwitchSubscribeRetry = m_config.GetInt("freeswitch_subscribe_retry", 120);
m_freeSwitchUrlResetPassword = m_config.GetString("freeswitch_password_reset_url", String.Empty);
- m_freeSwitchContext = m_config.GetString("freeswitch_context", "public");
if (String.IsNullOrEmpty(m_freeSwitchServerUser) ||
String.IsNullOrEmpty(m_freeSwitchServerPass) ||
@@ -574,7 +572,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
"false\r\n"+
"",
m_freeSwitchRealm, m_freeSwitchSIPProxy, m_freeSwitchAttemptUseSTUN,
- m_freeSwitchEchoServer, m_freeSwitchEchoPort,
+ m_freeSwitchSTUNServer, m_freeSwitchEchoServer, m_freeSwitchEchoPort,
m_freeSwitchDefaultWellKnownIP, m_freeSwitchDefaultTimeout,
m_freeSwitchUrlResetPassword, "");
@@ -730,9 +728,9 @@ namespace OpenSim.Region.OptionalModules.Avatar.Voice.FreeSwitchVoice
string section = (string) requestBody["section"];
if (section == "directory")
- response = m_FreeSwitchDirectory.HandleDirectoryRequest(m_freeSwitchContext, m_freeSwitchRealm, requestBody);
+ response = m_FreeSwitchDirectory.HandleDirectoryRequest(requestBody);
else if (section == "dialplan")
- response = m_FreeSwitchDialplan.HandleDialplanRequest(m_freeSwitchContext, m_freeSwitchRealm, requestBody);
+ response = m_FreeSwitchDialplan.HandleDialplanRequest(requestBody);
else
m_log.WarnFormat("[FreeSwitchVoice]: section was {0}", section);
--
cgit v1.1