aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/OpenSim.RegionServer/CAPS/AdminWebFront.cs
blob: ead902da8d488263b16a73c26d8981519d19e131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
/*
* Copyright (c) Contributors, http://www.openmetaverse.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 OpenSim 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.Collections.Generic;
using System.Text;
using System.IO;
using OpenSim.RegionServer.Simulator;
using OpenSim.UserServer;
using OpenSim.Servers;
using OpenSim.RegionServer.Assets;
using OpenSim.Framework.Inventory;
using libsecondlife;
using OpenSim.RegionServer.Scripting;
using Avatar=libsecondlife.Avatar;

namespace OpenSim.RegionServer.CAPS
{
    public class AdminWebFront
    {
        private string AdminPage;
        private string NewAccountForm;
        private string LoginForm;
        private string passWord = "Admin";
        private World m_world;
        private LoginServer _userServer;
        private InventoryCache _inventoryCache;

        public AdminWebFront(string password, World world, InventoryCache inventoryCache, LoginServer userserver)
        {
            _inventoryCache = inventoryCache;
            _userServer = userserver;
            m_world = world;
            passWord = password;
            LoadAdminPage();
        }

        public void LoadMethods( BaseHttpServer server )
        {
            server.AddRestHandler("GET", "/Admin", GetAdminPage);
            server.AddRestHandler("GET", "/Admin/Welcome", GetWelcomePage);
            server.AddRestHandler("GET", "/Admin/Accounts", GetAccountsPage );
            server.AddRestHandler("GET", "/Admin/Clients", GetConnectedClientsPage);
            server.AddRestHandler("GET", "/Admin/Entities", GetEntitiesPage);
            server.AddRestHandler("GET", "/Admin/Scripts", GetScriptsPage);
            server.AddRestHandler("GET", "/Admin/AddTestScript", AddTestScript );
            server.AddRestHandler("GET", "/ClientInventory", GetClientsInventory);

            server.AddRestHandler("POST", "/Admin/NewAccount", PostNewAccount );
            server.AddRestHandler("POST", "/Admin/Login", PostLogin );      
        }

        private string GetWelcomePage(string request, string path, string param)
        {
            string responseString;
            responseString = "Welcome to the OpenSim Admin Page";
            responseString += "<br><br><br> " + LoginForm;
            return responseString;
        }

        private string PostLogin(string requestBody, string path, string param)
        {
            string responseString;
            if (requestBody == passWord)
            {
                responseString = "<p> Login Successful </p>";
            }
            else
            {
                responseString = "<p> Password Error </p>";
                responseString += "<p> Please Login with the correct password </p>";
                responseString += "<br><br> " + LoginForm;
            }
            return responseString;
        }

        private string PostNewAccount(string requestBody, string path, string param)
        {
            string responseString;
            string firstName = "";
            string secondName = "";
            string userPasswd = "";
            string[] comp;
            string[] passw;
            string[] line;
            string delimStr = "&";
            char[] delimiter = delimStr.ToCharArray();
            string delimStr2 = "=";
            char[] delimiter2 = delimStr2.ToCharArray();

            comp = requestBody.Split(delimiter);
            passw = comp[3].Split(delimiter2);
            if (passw[1] == passWord)  // check admin password is correct
            {
                                
                line = comp[0].Split(delimiter2); //split firstname
                if (line.Length > 1)
                {
                    firstName = line[1];
                }
                line = comp[1].Split(delimiter2); //split secondname
                if (line.Length > 1)
                {
                    secondName = line[1];
                }
                line = comp[2].Split(delimiter2); //split user password
                if (line.Length > 1)
                {
                    userPasswd = line[1];
                }
                if (this._userServer != null)
                {
                    this._userServer.CreateUserAccount(firstName, secondName, userPasswd);
                }
                responseString = "<p> New Account created </p>";
            }
            else
            {
                responseString = "<p> Admin password is incorrect, please login with the correct password</p>";
                responseString += "<br><br>" + LoginForm;
            }
            return responseString;
        }

        private string GetConnectedClientsPage(string request, string path, string param)
        {
            string responseString;
            responseString = " <p> Listing connected Clients </p>";
            OpenSim.RegionServer.Simulator.Avatar TempAv;
            foreach (libsecondlife.LLUUID UUID in m_world.Entities.Keys)
            {
                if (m_world.Entities[UUID].ToString() == "OpenSim.RegionServer.Simulator.Avatar")
                {
                    TempAv = (OpenSim.RegionServer.Simulator.Avatar)m_world.Entities[UUID];
                    responseString += "<p> Client: ";
                    responseString += TempAv.firstname + " , " + TempAv.lastname + " , <A HREF=\"javascript:loadXMLDoc('ClientInventory/" + UUID.ToString() + "')\">" + UUID + "</A> , " + TempAv.ControllingClient.SessionID + " ,  " + TempAv.ControllingClient.CircuitCode + " , " + TempAv.ControllingClient.userEP.ToString();
                    responseString += "</p>";
                }
            }
            return responseString;
        }

        private string AddTestScript(string request, string path, string param)
        {
            int index = path.LastIndexOf('/');

            string lluidStr = path.Substring(index+1);
            
            LLUUID id;
            
            if( LLUUID.TryParse( lluidStr, out id ) )
            {
                // This is just here for concept purposes... Remove!
                m_world.AddScript( m_world.Entities[id], new FollowRandomAvatar());
                return String.Format("Added new script to object [{0}]", id);
            }
            else
            {
                return String.Format("Couldn't parse [{0}]", lluidStr );
            }
        }

        private string GetScriptsPage(string request, string path, string param)
        {
            return String.Empty;
        }

        private string GetEntitiesPage(string request, string path, string param)
        {
            string responseString;
            responseString = " <p> Listing current entities</p><ul>";
            
            foreach (Entity entity in m_world.Entities.Values)
            {
                string testScriptLink = "javascript:loadXMLDoc('Admin/AddTestScript/" + entity.uuid.ToString() + "');";
                responseString += String.Format( "<li>[{0}] \"{1}\" @ {2} <a href=\"{3}\">add test script</a></li>", entity.uuid, entity.Name, entity.Pos, testScriptLink  );
            }
            responseString += "</ul>";
            return responseString;
        }

        private string GetClientsInventory(string request, string path, string param)
        {
            string[] line;
            string delimStr = "/";
            char[] delimiter = delimStr.ToCharArray();
            string responseString;
            responseString = " <p> Listing Inventory </p>";

            line = path.Split(delimiter);
            if (line.Length > 2)
            {
                if (line[1] == "ClientInventory")
                {
                    AgentInventory inven = this._inventoryCache.GetAgentsInventory(new libsecondlife.LLUUID(line[2]));
                    responseString += " <p> Client: " + inven.AgentID.ToStringHyphenated() +" </p>";
                    if (inven != null)
                    {
                        foreach (InventoryItem item in inven.InventoryItems.Values)
                        {
                            responseString += "<p> InventoryItem: ";
                            responseString +=  item.Name +" , "+ item.ItemID +" , "+ item.Type +" , "+ item.FolderID +" , "+ item.AssetID +" , "+ item.Description ; 
                            responseString += "</p>";
                        }
                    }
                }
            }
            return responseString;
        }

        private string GetCachedAssets(string request, string path, string param)
        {
            return "";
        }

        private string GetAccountsPage(string request, string path, string param)
        {
            string responseString;
            responseString = "<p> Account management </p>";
            responseString += "<br> ";
            responseString += "<p> Create New Account </p>";
            responseString += NewAccountForm;
            return responseString;
        }

        private string GetAdminPage(string request, string path, string param)
        {
            return AdminPage;
        }

        private void LoadAdminPage()
        {
            try
            {
                StreamReader SR;
                
                SR = File.OpenText("testadmin.htm");
                AdminPage = SR.ReadToEnd();                
                SR.Close();

                SR = File.OpenText("newaccountform.htm");
                NewAccountForm = SR.ReadToEnd();
                SR.Close();

                SR = File.OpenText("login.htm");
                LoginForm = SR.ReadToEnd();
                SR.Close();
            }
            catch (Exception e)
            {
                Console.WriteLine(e.ToString());
            }

        }

    }
}