aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/UserServer/UserManager.cs
diff options
context:
space:
mode:
authorlbsa712007-06-29 13:51:21 +0000
committerlbsa712007-06-29 13:51:21 +0000
commitf6deaf8a65693d022f58961a007f2492c9ac97fa (patch)
tree7428eccc93a3f64f46e08d7269bc337f3d26d8a8 /OpenSim/Grid/UserServer/UserManager.cs
parentDeleted some files that are no longer in use. (I am sure I deleted these yest... (diff)
parent*Hopefully fixed the empty dialog box error on client when logging in on sand... (diff)
downloadopensim-SC_OLD-f6deaf8a65693d022f58961a007f2492c9ac97fa.zip
opensim-SC_OLD-f6deaf8a65693d022f58961a007f2492c9ac97fa.tar.gz
opensim-SC_OLD-f6deaf8a65693d022f58961a007f2492c9ac97fa.tar.bz2
opensim-SC_OLD-f6deaf8a65693d022f58961a007f2492c9ac97fa.tar.xz
Switched in NameSpaceChanges
Diffstat (limited to 'OpenSim/Grid/UserServer/UserManager.cs')
-rw-r--r--OpenSim/Grid/UserServer/UserManager.cs104
1 files changed, 104 insertions, 0 deletions
diff --git a/OpenSim/Grid/UserServer/UserManager.cs b/OpenSim/Grid/UserServer/UserManager.cs
new file mode 100644
index 0000000..c99cf87
--- /dev/null
+++ b/OpenSim/Grid/UserServer/UserManager.cs
@@ -0,0 +1,104 @@
1/*
2* Copyright (c) Contributors, http://www.openmetaverse.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;
30using System.Collections.Generic;
31using System.Text;
32using OpenSim.Framework.Data;
33using libsecondlife;
34using System.Reflection;
35
36using System.Xml;
37using Nwc.XmlRpc;
38using OpenSim.Framework.Sims;
39using OpenSim.Framework.Inventory;
40using OpenSim.Framework.Utilities;
41
42using OpenSim.Framework.UserManagement;
43
44using System.Security.Cryptography;
45
46namespace OpenSim.Grid.UserServer
47{
48 public class UserManager : UserManagerBase
49 {
50 public UserManager()
51 {
52 }
53
54 /// <summary>
55 /// Customises the login response and fills in missing values.
56 /// </summary>
57 /// <param name="response">The existing response</param>
58 /// <param name="theUser">The user profile</param>
59 public override void CustomiseResponse(ref LoginResponse response, ref UserProfileData theUser)
60 {
61 // Load information from the gridserver
62 SimProfile SimInfo = new SimProfile();
63 SimInfo = SimInfo.LoadFromGrid(theUser.currentAgent.currentHandle, _config.GridServerURL, _config.GridSendKey, _config.GridRecvKey);
64
65 // Customise the response
66 // Home Location
67 response.Home = "{'region_handle':[r" + (SimInfo.RegionLocX * 256).ToString() + ",r" + (SimInfo.RegionLocY * 256).ToString() + "], " +
68 "'position':[r" + theUser.homeLocation.X.ToString() + ",r" + theUser.homeLocation.Y.ToString() + ",r" + theUser.homeLocation.Z.ToString() + "], " +
69 "'look_at':[r" + theUser.homeLocation.X.ToString() + ",r" + theUser.homeLocation.Y.ToString() + ",r" + theUser.homeLocation.Z.ToString() + "]}";
70
71 // Destination
72 response.SimAddress = SimInfo.sim_ip;
73 response.SimPort = (Int32)SimInfo.sim_port;
74 response.RegionX = SimInfo.RegionLocY ;
75 response.RegionY = SimInfo.RegionLocX ;
76
77 // Notify the target of an incoming user
78 Console.WriteLine("Notifying " + SimInfo.regionname + " (" + SimInfo.caps_url + ")");
79
80 // Prepare notification
81 Hashtable SimParams = new Hashtable();
82 SimParams["session_id"] = theUser.currentAgent.sessionID.ToString();
83 SimParams["secure_session_id"] = theUser.currentAgent.secureSessionID.ToString();
84 SimParams["firstname"] = theUser.username;
85 SimParams["lastname"] = theUser.surname;
86 SimParams["agent_id"] = theUser.UUID.ToString();
87 SimParams["circuit_code"] = (Int32)Convert.ToUInt32(response.CircuitCode);
88 SimParams["startpos_x"] = theUser.currentAgent.currentPos.X.ToString();
89 SimParams["startpos_y"] = theUser.currentAgent.currentPos.Y.ToString();
90 SimParams["startpos_z"] = theUser.currentAgent.currentPos.Z.ToString();
91 SimParams["regionhandle"] = theUser.currentAgent.currentHandle.ToString();
92 ArrayList SendParams = new ArrayList();
93 SendParams.Add(SimParams);
94
95 // Update agent with target sim
96 theUser.currentAgent.currentRegion = SimInfo.UUID;
97 theUser.currentAgent.currentHandle = SimInfo.regionhandle;
98
99 // Send
100 XmlRpcRequest GridReq = new XmlRpcRequest("expect_user", SendParams);
101 XmlRpcResponse GridResp = GridReq.Send(SimInfo.caps_url, 3000);
102 }
103 }
104}