diff options
author | Melanie | 2010-11-21 23:41:56 +0000 |
---|---|---|
committer | Melanie | 2010-11-21 23:42:52 +0000 |
commit | c85e6bc36dc08919141c446b0ae8d1f47eb779fb (patch) | |
tree | 70edf09fc65fb0ec4a6141b6cf6bf7d711c3d508 /OpenSim | |
parent | Finish the standalone mode freeswitch work and add config examples (diff) | |
download | opensim-SC_OLD-c85e6bc36dc08919141c446b0ae8d1f47eb779fb.zip opensim-SC_OLD-c85e6bc36dc08919141c446b0ae8d1f47eb779fb.tar.gz opensim-SC_OLD-c85e6bc36dc08919141c446b0ae8d1f47eb779fb.tar.bz2 opensim-SC_OLD-c85e6bc36dc08919141c446b0ae8d1f47eb779fb.tar.xz |
Add the remote connector for freeswitch config retrieval
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Connectors/Freeswitch/RemoteFreeswitchConnector.cs | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/OpenSim/Services/Connectors/Freeswitch/RemoteFreeswitchConnector.cs b/OpenSim/Services/Connectors/Freeswitch/RemoteFreeswitchConnector.cs new file mode 100644 index 0000000..d63d99d --- /dev/null +++ b/OpenSim/Services/Connectors/Freeswitch/RemoteFreeswitchConnector.cs | |||
@@ -0,0 +1,103 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSimulator Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | using log4net; | ||
29 | using System; | ||
30 | using System.IO; | ||
31 | using System.Collections; | ||
32 | using System.Reflection; | ||
33 | using Nini.Config; | ||
34 | using OpenSim.Framework; | ||
35 | using OpenSim.Framework.Communications; | ||
36 | using OpenSim.Framework.Servers.HttpServer; | ||
37 | using OpenSim.Services.Interfaces; | ||
38 | using OpenSim.Server.Base; | ||
39 | using OpenMetaverse; | ||
40 | |||
41 | namespace OpenSim.Services.Connectors | ||
42 | { | ||
43 | public class RemoteFreeswitchConnector : IFreeswitchService | ||
44 | { | ||
45 | private static readonly ILog m_log = | ||
46 | LogManager.GetLogger( | ||
47 | MethodBase.GetCurrentMethod().DeclaringType); | ||
48 | |||
49 | private string m_ServerURI = String.Empty; | ||
50 | |||
51 | public RemoteFreeswitchConnector() | ||
52 | { | ||
53 | } | ||
54 | |||
55 | public RemoteFreeswitchConnector(string serverURI) | ||
56 | { | ||
57 | m_ServerURI = Path.Combine(serverURI.TrimEnd('/'), "region-config"); | ||
58 | } | ||
59 | |||
60 | public RemoteFreeswitchConnector(IConfigSource source) | ||
61 | { | ||
62 | Initialise(source); | ||
63 | } | ||
64 | |||
65 | public virtual void Initialise(IConfigSource source) | ||
66 | { | ||
67 | IConfig freeswitchConfig = source.Configs["FreeSwitchVoice"]; | ||
68 | if (freeswitchConfig == null) | ||
69 | { | ||
70 | m_log.Error("[FREESWITCH CONNECTOR]: FreeSwitchVoice missing from OpenSim.ini"); | ||
71 | throw new Exception("Freeswitch connector init error"); | ||
72 | } | ||
73 | |||
74 | string serviceURI = freeswitchConfig.GetString("FreeswitchServiceURL", | ||
75 | String.Empty); | ||
76 | |||
77 | if (serviceURI == String.Empty) | ||
78 | { | ||
79 | m_log.Error("[FREESWITCH CONNECTOR]: No FreeswitchServiceURL named in section FreeSwitchVoice"); | ||
80 | throw new Exception("Freeswitch connector init error"); | ||
81 | } | ||
82 | m_ServerURI = serviceURI; | ||
83 | } | ||
84 | |||
85 | public Hashtable HandleDirectoryRequest(Hashtable requestBody) | ||
86 | { | ||
87 | // not used here | ||
88 | return new Hashtable(); | ||
89 | } | ||
90 | |||
91 | public Hashtable HandleDialplanRequest(Hashtable requestBody) | ||
92 | { | ||
93 | // not used here | ||
94 | return new Hashtable(); | ||
95 | } | ||
96 | |||
97 | public string GetJsonConfig() | ||
98 | { | ||
99 | return SynchronousRestFormsRequester.MakeRequest("GET", | ||
100 | m_ServerURI, String.Empty); | ||
101 | } | ||
102 | } | ||
103 | } | ||