aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Clients
diff options
context:
space:
mode:
authordiva2009-03-29 23:39:00 +0000
committerdiva2009-03-29 23:39:00 +0000
commitc3e604c46c04673a9493251ef63daf9437e37a10 (patch)
tree29bbac800c55ad3a6690046ee95ad23b2f795cd7 /OpenSim/Framework/Communications/Clients
parentAnother bit of refactoring to try to make sense of OpenSim.Framework.Communic... (diff)
downloadopensim-SC_OLD-c3e604c46c04673a9493251ef63daf9437e37a10.zip
opensim-SC_OLD-c3e604c46c04673a9493251ef63daf9437e37a10.tar.gz
opensim-SC_OLD-c3e604c46c04673a9493251ef63daf9437e37a10.tar.bz2
opensim-SC_OLD-c3e604c46c04673a9493251ef63daf9437e37a10.tar.xz
Added Authorization client code that interfaces with HGLoginAuthService. Improved error handling in HGLoginAuthService. Instrumented HGInventoryService so that it can interface both with local and remote user and asset services.
Diffstat (limited to 'OpenSim/Framework/Communications/Clients')
-rw-r--r--OpenSim/Framework/Communications/Clients/AuthClient.cs108
1 files changed, 108 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Clients/AuthClient.cs b/OpenSim/Framework/Communications/Clients/AuthClient.cs
new file mode 100644
index 0000000..95af7e1
--- /dev/null
+++ b/OpenSim/Framework/Communications/Clients/AuthClient.cs
@@ -0,0 +1,108 @@
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 OpenSim 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
28using System;
29using System.Collections.Generic;
30using Nwc.XmlRpc;
31using OpenMetaverse;
32
33namespace OpenSim.Framework.Communications.Clients
34{
35 public class AuthClient
36 {
37 public static string GetNewKey(string authurl, UUID userID, UUID authToken)
38 {
39 //Hashtable keyParams = new Hashtable();
40 //keyParams["user_id"] = userID;
41 //keyParams["auth_token"] = authKey;
42
43 List<string> SendParams = new List<string>();
44 SendParams.Add(userID.ToString());
45 SendParams.Add(authToken.ToString());
46
47 XmlRpcRequest request = new XmlRpcRequest("hg_new_auth_key", SendParams);
48 XmlRpcResponse reply;
49 try
50 {
51 reply = request.Send(authurl, 6000);
52 }
53 catch (Exception e)
54 {
55 System.Console.WriteLine("[HGrid]: Failed to get new key. Reason: " + e.Message);
56 return string.Empty;
57 }
58
59 if (!reply.IsFault)
60 {
61 string newKey = string.Empty;
62 if (reply.Value != null)
63 newKey = (string)reply.Value;
64
65 return newKey;
66 }
67 else
68 {
69 System.Console.WriteLine("[HGrid]: XmlRpc request to get auth key failed with message {0}" + reply.FaultString + ", code " + reply.FaultCode);
70 return string.Empty;
71 }
72
73 }
74
75 public static bool VerifyKey(string authurl, UUID userID, string authKey)
76 {
77 List<string> SendParams = new List<string>();
78 SendParams.Add(userID.ToString());
79 SendParams.Add(authKey);
80
81 XmlRpcRequest request = new XmlRpcRequest("hg_verify_auth_key", SendParams);
82 XmlRpcResponse reply;
83 try
84 {
85 reply = request.Send(authurl, 6000);
86 }
87 catch (Exception e)
88 {
89 System.Console.WriteLine("[HGrid]: Failed to verify key. Reason: " + e.Message);
90 return false;
91 }
92
93 if (!reply.IsFault)
94 {
95 bool success = false;
96 if (reply.Value != null)
97 success = (bool)reply.Value;
98
99 return success;
100 }
101 else
102 {
103 System.Console.WriteLine("[HGrid]: XmlRpc request to verify key failed with message {0}" + reply.FaultString + ", code " + reply.FaultCode);
104 return false;
105 }
106 }
107 }
108}