diff options
Switched in NameSpaceChanges
Diffstat (limited to 'OpenSim/Grid/UserServer/UserManager.cs')
-rw-r--r-- | OpenSim/Grid/UserServer/UserManager.cs | 104 |
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 | */ | ||
28 | using System; | ||
29 | using System.Collections; | ||
30 | using System.Collections.Generic; | ||
31 | using System.Text; | ||
32 | using OpenSim.Framework.Data; | ||
33 | using libsecondlife; | ||
34 | using System.Reflection; | ||
35 | |||
36 | using System.Xml; | ||
37 | using Nwc.XmlRpc; | ||
38 | using OpenSim.Framework.Sims; | ||
39 | using OpenSim.Framework.Inventory; | ||
40 | using OpenSim.Framework.Utilities; | ||
41 | |||
42 | using OpenSim.Framework.UserManagement; | ||
43 | |||
44 | using System.Security.Cryptography; | ||
45 | |||
46 | namespace 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 | } | ||