Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
/* * Copyright (c) Contributors, http://opensimulator.org/ * See CONTRIBUTORS.TXT for a full list of copyright holders. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the OpenSimulator Project nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ using System; using System.Text; using System.Reflection; using Nini.Config; using log4net; using OpenSim.Framework; using OpenSim.Data; using OpenSim.Services.Interfaces; using OpenMetaverse; using OpenMetaverse.StructuredData; using System.Collections; namespace OpenSim.Services.FreeswitchService { public class FreeswitchService : FreeswitchServiceBase, IFreeswitchService { private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); public FreeswitchService(IConfigSource config) : base(config) { // Perform initilialization here } public Hashtable HandleDialplanRequest(Hashtable request) { m_log.DebugFormat("[FreeSwitchVoice]: HandleDialplanRequest called with {0}",request.ToString()); Hashtable response = new Hashtable(); // foreach (DictionaryEntry item in request) // { //// 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 (m_freeSwitchContext != String.Empty && m_freeSwitchContext != requestcontext) { m_log.Debug("[FreeSwitchDirectory]: returning empty as it's for another context"); response["str_response_string"] = ""; } else { response["str_response_string"] = String.Format(@"<?xml version=""1.0"" encoding=""utf-8""?> <document type=""freeswitch/xml""> <section name=""dialplan""> <context name=""{0}"">" + /* <!-- dial via SIP uri --> <extension name=""sip_uri""> <condition field=""destination_number"" expression=""^sip:(.*)$""> <action application=""bridge"" data=""sofia/${use_profile}/$1""/> <!--<action application=""bridge"" data=""$1""/>--> </condition> </extension>*/ @"<extension name=""opensim_conferences""> <condition field=""destination_number"" expression=""^confctl-(.*)$""> <action application=""answer""/> <action application=""conference"" data=""$1-{1}@{0}""/> </condition> </extension> <extension name=""opensim_conf""> <condition field=""destination_number"" expression=""^conf-(.*)$""> <action application=""answer""/> <action application=""conference"" data=""$1-{1}@{0}""/> </condition> </extension> <extension name=""avatar""> <condition field=""destination_number"" expression=""^(x.*)$""> <action application=""bridge"" data=""user/$1""/> </condition> </extension> </context> </section> </document>", m_freeSwitchContext, m_freeSwitchRealm); } return response; } public Hashtable HandleDirectoryRequest(Hashtable request) { Hashtable response = new Hashtable(); string domain = (string) request["domain"]; if (domain != m_freeSwitchRealm) { 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()); // information in the request we might be interested in // Request 1 sip_auth for users account //Event-Calling-Function=sofia_reg_parse_auth //Event-Calling-Line-Number=1494 //action=sip_auth //sip_user_agent=Vivox-SDK-2.1.3010.6151-Mac%20(Feb-11-2009/16%3A42%3A41) //sip_auth_username=xhZuXKmRpECyr2AARJYyGgg%3D%3D (==) //sip_auth_realm=9.20.151.43 //sip_contact_user=xhZuXKmRpECyr2AARJYyGgg%3D%3D (==) //sip_contact_host=192.168.0.3 // this shouldnt really be a local IP, investigate STUN servers //sip_to_user=xhZuXKmRpECyr2AARJYyGgg%3D%3D //sip_to_host=9.20.151.43 //sip_auth_method=REGISTER //user=xhZuXKmRpECyr2AARJYyGgg%3D%3D //domain=9.20.151.43 //ip=9.167.220.137 // this is the correct IP rather than sip_contact_host above when through a vpn or NAT setup // foreach (DictionaryEntry item in request) // m_log.DebugFormat("[FreeSwitchDirectory]: requestBody item {0} {1}", item.Key, item.Value); string eventCallingFunction = (string) request["Event-Calling-Function"]; if (eventCallingFunction == null) { eventCallingFunction = "sofia_reg_parse_auth"; } if (eventCallingFunction.Length == 0) { eventCallingFunction = "sofia_reg_parse_auth"; } if (eventCallingFunction == "sofia_reg_parse_auth") { string sipAuthMethod = (string)request["sip_auth_method"]; if (sipAuthMethod == "REGISTER") { response = HandleRegister(m_freeSwitchContext, m_freeSwitchRealm, request); } else if (sipAuthMethod == "INVITE") { response = HandleInvite(m_freeSwitchContext, m_freeSwitchRealm, request); } else { m_log.ErrorFormat("[FreeSwitchVoice]: HandleDirectoryRequest unknown sip_auth_method {0}",sipAuthMethod); response["int_response_code"] = 404; response["content_type"] = "text/xml"; response["str_response_string"] = ""; } } else if (eventCallingFunction == "switch_xml_locate_user") { response = HandleLocateUser(m_freeSwitchRealm, request); } else if (eventCallingFunction == "user_data_function") // gets called when an avatar to avatar call is made { response = HandleLocateUser(m_freeSwitchRealm, request); } else if (eventCallingFunction == "user_outgoing_channel") { response = HandleRegister(m_freeSwitchContext, m_freeSwitchRealm, request); } else if (eventCallingFunction == "config_sofia") // happens once on freeswitch startup { response = HandleConfigSofia(m_freeSwitchContext, m_freeSwitchRealm, request); } else if (eventCallingFunction == "switch_load_network_lists") { //response = HandleLoadNetworkLists(request); response["int_response_code"] = 404; response["keepalive"] = false; response["content_type"] = "text/xml"; response["str_response_string"] = ""; } else { m_log.ErrorFormat("[FreeSwitchVoice]: HandleDirectoryRequest unknown Event-Calling-Function {0}",eventCallingFunction); response["int_response_code"] = 404; response["keepalive"] = false; response["content_type"] = "text/xml"; response["str_response_string"] = ""; } } return response; } private Hashtable HandleRegister(string Context, string Realm, Hashtable request) { m_log.Info("[FreeSwitchDirectory]: HandleRegister called"); // TODO the password we return needs to match that sent in the request, this is hard coded for now string password = "1234"; string domain = (string) request["domain"]; string user = (string) request["user"]; Hashtable response = new Hashtable(); response["content_type"] = "text/xml"; response["keepalive"] = false; response["int_response_code"] = 200; response["str_response_string"] = String.Format( "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" + "<document type=\"freeswitch/xml\">\r\n" + "<section name=\"directory\" description=\"User Directory\">\r\n" + "<domain name=\"{0}\">\r\n" + "<user id=\"{1}\">\r\n" + "<params>\r\n" + "<param name=\"password\" value=\"{2}\" />\r\n" + "<param name=\"dial-string\" value=\"{{sip_contact_user={1}}}{{presence_id=${{dialed_user}}@${{dialed_domain}}}}${{sofia_contact(${{dialed_user}}@${{dialed_domain}})}}\"/>\r\n" + "</params>\r\n" + "<variables>\r\n" + "<variable name=\"user_context\" value=\"{3}\" />\r\n" + "<variable name=\"presence_id\" value=\"{1}@{0}\"/>"+ "</variables>\r\n" + "</user>\r\n" + "</domain>\r\n" + "</section>\r\n" + "</document>\r\n", domain , user, password, Context); return response; } private Hashtable HandleInvite(string Context, string Realm, Hashtable request) { m_log.Info("[FreeSwitchDirectory]: HandleInvite called"); // TODO the password we return needs to match that sent in the request, this is hard coded for now string password = "1234"; string domain = (string) request["domain"]; string user = (string) request["user"]; string sipRequestUser = (string) request["sip_request_user"]; Hashtable response = new Hashtable(); response["content_type"] = "text/xml"; response["keepalive"] = false; response["int_response_code"] = 200; response["str_response_string"] = String.Format( "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" + "<document type=\"freeswitch/xml\">\r\n" + "<section name=\"directory\" description=\"User Directory\">\r\n" + "<domain name=\"{0}\">\r\n" + "<user id=\"{1}\">\r\n" + "<params>\r\n" + "<param name=\"password\" value=\"{2}\" />\r\n" + "<param name=\"dial-string\" value=\"{{sip_contact_user={1}}}{{presence_id=${1}@${{dialed_domain}}}}${{sofia_contact(${1}@${{dialed_domain}})}}\"/>\r\n" + "</params>\r\n" + "<variables>\r\n" + "<variable name=\"user_context\" value=\"{4}\" />\r\n" + "<variable name=\"presence_id\" value=\"{1}@$${{domain}}\"/>"+ "</variables>\r\n" + "</user>\r\n" + "<user id=\"{3}\">\r\n" + "<params>\r\n" + "<param name=\"password\" value=\"{2}\" />\r\n" + "<param name=\"dial-string\" value=\"{{sip_contact_user={1}}}{{presence_id=${3}@${{dialed_domain}}}}${{sofia_contact(${3}@${{dialed_domain}})}}\"/>\r\n" + "</params>\r\n" + "<variables>\r\n" + "<variable name=\"user_context\" value=\"{4}\" />\r\n" + "<variable name=\"presence_id\" value=\"{3}@$${{domain}}\"/>"+ "</variables>\r\n" + "</user>\r\n" + "</domain>\r\n" + "</section>\r\n" + "</document>\r\n", domain , user, password,sipRequestUser, Context); return response; } private Hashtable HandleLocateUser(String Realm, Hashtable request) { m_log.Info("[FreeSwitchDirectory]: HandleLocateUser called"); // TODO the password we return needs to match that sent in the request, this is hard coded for now string domain = (string) request["domain"]; string user = (string) request["user"]; Hashtable response = new Hashtable(); response["content_type"] = "text/xml"; response["keepalive"] = false; response["int_response_code"] = 200; response["str_response_string"] = String.Format( "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" + "<document type=\"freeswitch/xml\">\r\n" + "<section name=\"directory\" description=\"User Directory\">\r\n" + "<domain name=\"{0}\">\r\n" + "<params>\r\n" + "<param name=\"dial-string\" value=\"{{sip_contact_user=${{dialed_user}}}}{{presence_id=${{dialed_user}}@${{dialed_domain}}}}${{sofia_contact(${{dialed_user}}@${{dialed_domain}})}}\"/>\r\n" + "</params>\r\n" + "<user id=\"{1}\">\r\n" + "<variables>\r\n"+ "<variable name=\"default_gateway\" value=\"$${{default_provider}}\"/>\r\n"+ "<variable name=\"presence_id\" value=\"{1}@$${{domain}}\"/>"+ "</variables>\r\n"+ "</user>\r\n" + "</domain>\r\n" + "</section>\r\n" + "</document>\r\n", domain , user); return response; } private Hashtable HandleConfigSofia(string Context, string Realm, Hashtable request) { m_log.Info("[FreeSwitchDirectory]: HandleConfigSofia called."); // TODO the password we return needs to match that sent in the request, this is hard coded for now string domain = (string) request["domain"]; Hashtable response = new Hashtable(); response["content_type"] = "text/xml"; response["keepalive"] = false; response["int_response_code"] = 200; response["str_response_string"] = String.Format( "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" + "<document type=\"freeswitch/xml\">\r\n" + "<section name=\"directory\" description=\"User Directory\">\r\n" + "<domain name=\"{0}\">\r\n" + "<params>\r\n" + "<param name=\"dial-string\" value=\"{{sip_contact_user=${{dialed_user}}}}{{presence_id=${{dialed_user}}@${{dialed_domain}}}}${{sofia_contact(${{dialed_user}}@${{dialed_domain}})}}\"/>\r\n" + "</params>\r\n" + "<groups name=\"default\">\r\n"+ "<users>\r\n"+ "<user id=\"$${{default_provider}}\">\r\n"+ "<gateways>\r\n"+ "<gateway name=\"$${{default_provider}}\">\r\n"+ "<param name=\"username\" value=\"$${{default_provider_username}}\"/>\r\n"+ "<param name=\"password\" value=\"$${{default_provider_password}}\"/>\r\n"+ "<param name=\"from-user\" value=\"$${{default_provider_username}}\"/>\r\n"+ "<param name=\"from-domain\" value=\"$${{default_provider_from_domain}}\"/>\r\n"+ "<param name=\"expire-seconds\" value=\"600\"/>\r\n"+ "<param name=\"register\" value=\"$${{default_provider_register}}\"/>\r\n"+ "<param name=\"retry-seconds\" value=\"30\"/>\r\n"+ "<param name=\"extension\" value=\"$${{default_provider_contact}}\"/>\r\n"+ "<param name=\"contact-params\" value=\"domain_name=$${{domain}}\"/>\r\n"+ "<param name=\"context\" value=\"{1}\"/>\r\n"+ "</gateway>\r\n"+ "</gateways>\r\n"+ "<params>\r\n"+ "<param name=\"password\" value=\"$${{default_provider_password}}\"/>\r\n"+ "</params>\r\n"+ "</user>\r\n"+ "</users>"+ "</groups>\r\n" + "<variables>\r\n"+ "<variable name=\"default_gateway\" value=\"$${{default_provider}}\"/>\r\n"+ "</variables>\r\n"+ "</domain>\r\n" + "</section>\r\n" + "</document>\r\n", domain, Context); return response; } public string GetJsonConfig() { OSDMap map = new OSDMap(9); map.Add("Realm", m_freeSwitchRealm); map.Add("SIPProxy", m_freeSwitchSIPProxy); map.Add("AttemptUseSTUN", m_freeSwitchAttemptUseSTUN); map.Add("EchoServer", m_freeSwitchEchoServer); map.Add("EchoPort", m_freeSwitchEchoPort); map.Add("DefaultWellKnownIP", m_freeSwitchDefaultWellKnownIP); map.Add("DefaultTimeout", m_freeSwitchDefaultTimeout); map.Add("Context", m_freeSwitchContext); map.Add("APIPrefix", m_freeSwitchAPIPrefix); return OSDParser.SerializeJsonString(map); } } }
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
w
16 hours ago | 0.09 KB
[email protected]
- idiot sending fr...
17 hours ago | 1.35 KB
Untitled
21 hours ago | 0.03 KB
Checking in availability
1 day ago | 0.66 KB
TRMP TOKEN
1 day ago | 1.56 KB
Untitled
1 day ago | 0.16 KB
my-push Script
1 day ago | 0.19 KB
Mapscan v2.0 - Archeagus Grey Hack Series, Ep...
JavaScript | 2 days ago | 9.34 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!