aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authoronefang2019-08-08 04:11:54 +1000
committeronefang2019-08-08 04:11:54 +1000
commitbab33ad24a4b960dc97eb0e179e99e52b12a1706 (patch)
treeb1caa8abc1e4aa7b098ab910de0e9e5eaf915ef6 /OpenSim
parentMore account manager. (diff)
downloadopensim-SC_OLD-bab33ad24a4b960dc97eb0e179e99e52b12a1706.zip
opensim-SC_OLD-bab33ad24a4b960dc97eb0e179e99e52b12a1706.tar.gz
opensim-SC_OLD-bab33ad24a4b960dc97eb0e179e99e52b12a1706.tar.bz2
opensim-SC_OLD-bab33ad24a4b960dc97eb0e179e99e52b12a1706.tar.xz
Various clean ups.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Server/Handlers/Web/WebServerInConnector.cs113
1 files changed, 44 insertions, 69 deletions
diff --git a/OpenSim/Server/Handlers/Web/WebServerInConnector.cs b/OpenSim/Server/Handlers/Web/WebServerInConnector.cs
index 1dedfa3..bcfb7ac 100644
--- a/OpenSim/Server/Handlers/Web/WebServerInConnector.cs
+++ b/OpenSim/Server/Handlers/Web/WebServerInConnector.cs
@@ -1,30 +1,3 @@
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
28using System; 1using System;
29using System.Collections; 2using System.Collections;
30using System.Collections.Generic; 3using System.Collections.Generic;
@@ -34,11 +7,11 @@ using System.Reflection;
34using System.Security; 7using System.Security;
35using System.Text; 8using System.Text;
36using log4net; 9using log4net;
10using Nini.Config;
37using OpenMetaverse; 11using OpenMetaverse;
38using OpenMetaverse.StructuredData; 12using OpenMetaverse.StructuredData;
39using Nini.Config;
40using OpenSim.Framework;
41using OpenSim.Data.MySQL; 13using OpenSim.Data.MySQL;
14using OpenSim.Framework;
42using OpenSim.Framework.Servers.HttpServer; 15using OpenSim.Framework.Servers.HttpServer;
43using OpenSim.Server.Handlers.Base; 16using OpenSim.Server.Handlers.Base;
44 17
@@ -55,14 +28,12 @@ namespace OpenSim.Server.Handlers.Web
55 28
56 public WebServerInConnector(IConfigSource config, IHttpServer server, string configName) : base(config, server, configName) 29 public WebServerInConnector(IConfigSource config, IHttpServer server, string configName) : base(config, server, configName)
57 { 30 {
58 m_Config = config;
59
60 string dllName = String.Empty; 31 string dllName = String.Empty;
61 string connString = String.Empty; 32 string connString = String.Empty;
62 33
63 // 34 m_Config = config;
35
64 // Try reading the [DatabaseService] section, if it exists 36 // Try reading the [DatabaseService] section, if it exists
65 //
66 IConfig dbConfig = m_Config.Configs["DatabaseService"]; 37 IConfig dbConfig = m_Config.Configs["DatabaseService"];
67 if (dbConfig != null) 38 if (dbConfig != null)
68 { 39 {
@@ -71,7 +42,6 @@ namespace OpenSim.Server.Handlers.Web
71 if (connString == String.Empty) 42 if (connString == String.Empty)
72 connString = dbConfig.GetString("ConnectionString", String.Empty); 43 connString = dbConfig.GetString("ConnectionString", String.Empty);
73 } 44 }
74
75 if (dllName.Equals(String.Empty)) 45 if (dllName.Equals(String.Empty))
76 throw new Exception("No StorageProvider configured"); 46 throw new Exception("No StorageProvider configured");
77 47
@@ -80,8 +50,6 @@ namespace OpenSim.Server.Handlers.Web
80// m_Database = LoadPlugin<SQLGenericHandler>(dllName, new Object[] { connString }); 50// m_Database = LoadPlugin<SQLGenericHandler>(dllName, new Object[] { connString });
81 51
82 m_database = new MySQLRaw(connString); 52 m_database = new MySQLRaw(connString);
83 if (m_database == null)
84 throw new Exception("Could not find a storage interface in the given module " + dllName);
85 53
86 mime.Add(".gz", "application/gzip"); 54 mime.Add(".gz", "application/gzip");
87 mime.Add(".js", "application/javascript"); 55 mime.Add(".js", "application/javascript");
@@ -111,24 +79,24 @@ namespace OpenSim.Server.Handlers.Web
111 79
112 IConfig cfg = m_Config.Configs["GridInfoService"]; 80 IConfig cfg = m_Config.Configs["GridInfoService"];
113 string HomeURI = Util.GetConfigVarFromSections<string>(m_Config, "HomeURI", new string[] { "Startup", "Hypergrid" }, String.Empty); 81 string HomeURI = Util.GetConfigVarFromSections<string>(m_Config, "HomeURI", new string[] { "Startup", "Hypergrid" }, String.Empty);
114 ssi.Add("grid", cfg.GetString("gridname", "my grid")); 82 ssi.Add("grid", cfg.GetString("gridname", "my grid"));
115 ssi.Add("uri", cfg.GetString("login", HomeURI)); 83 ssi.Add("uri", cfg.GetString("login", HomeURI));
116 ssi.Add("version", VersionInfo.Version); 84 ssi.Add("version", VersionInfo.Version);
117 server.AddHTTPHandler("/web/", WebRequestHandler); 85 server.AddHTTPHandler("/web/", WebRequestHandler);
118 } 86 }
119 87
120 private Hashtable WebRequestHandler(Hashtable request) 88 private Hashtable WebRequestHandler(Hashtable request)
121 { 89 {
122 long locIn = m_database.Count("Presence", "RegionID != '00000000-0000-0000-0000-000000000000'"); // Locals online but not HGing, and HGers in world. 90 long locIn = m_database.Count("Presence", "RegionID != '00000000-0000-0000-0000-000000000000'"); // Locals online but not HGing, and HGers in world.
123 long HGin = m_database.Count("Presence", "UserID NOT IN (SELECT PrincipalID FROM UserAccounts)"); // HGers in world. 91 long HGin = m_database.Count("Presence", "UserID NOT IN (SELECT PrincipalID FROM UserAccounts)"); // HGers in world.
124 long locOut = m_database.Count("hg_traveling_data", "GridExternalName != '" + ssi["uri"] + "'"); // Locals that are HGing. 92 long locOut = m_database.Count("hg_traveling_data", "GridExternalName != '" + ssi["uri"] + "'"); // Locals that are HGing.
125 Hashtable reply = new Hashtable(); 93 Hashtable reply = new Hashtable();
126 ssi["members"] = m_database.Count("UserAccounts").ToString(); 94 ssi["members"] = m_database.Count("UserAccounts").ToString();
127 ssi["sims"] = m_database.Count("regions").ToString(); 95 ssi["sims"] = m_database.Count("regions").ToString();
128 ssi["inworld"] = (locIn - HGin).ToString(); 96 ssi["inworld"] = (locIn - HGin).ToString();
129 ssi["outworld"] = locOut.ToString(); 97 ssi["outworld"] = locOut.ToString();
130 ssi["hgers"] = HGin.ToString(); 98 ssi["hgers"] = HGin.ToString();
131 ssi["month"] = m_database.Count("GridUser", "Login > UNIX_TIMESTAMP(FROM_UNIXTIME(UNIX_TIMESTAMP(now()) - 2419200))").ToString(); 99 ssi["month"] = m_database.Count("GridUser", "Login > UNIX_TIMESTAMP(FROM_UNIXTIME(UNIX_TIMESTAMP(now()) - 2419200))").ToString();
132 100
133 string reqpath = (string) request["uri"]; 101 string reqpath = (string) request["uri"];
134 string[] query = (string[]) request["querystringkeys"]; 102 string[] query = (string[]) request["querystringkeys"];
@@ -148,26 +116,26 @@ namespace OpenSim.Server.Handlers.Web
148 reply["int_response_code"] = 200; 116 reply["int_response_code"] = 200;
149 if ("GET" == method) 117 if ("GET" == method)
150 { 118 {
151 if (File.Exists(path)) 119 if (File.Exists(path))
152 { 120 {
153 string m = (string) mime[Path.GetExtension(path).ToLower()]; 121 string m = (string) mime[Path.GetExtension(path).ToLower()];
154 reply["content_type"] = m; 122 reply["content_type"] = m;
155 if ((null == m) || ("text/" != m.Substring(0, 5))) 123 if ((null == m) || ("text/" != m.Substring(0, 5)))
156 reply["bin_response_data"] = File.ReadAllBytes(path); 124 reply["bin_response_data"] = File.ReadAllBytes(path);
157 else 125 else
158 { 126 {
159 StreamReader csr = File.OpenText(path); 127 StreamReader csr = File.OpenText(path);
160 string content = csr.ReadToEnd(); 128 string content = csr.ReadToEnd();
161 // Slow and wasteful, but I'm expecting only tiny web files, not accessed very often. 129 // Slow and wasteful, but I'm expecting only tiny web files, not accessed very often.
162 foreach (DictionaryEntry v in ssi) 130 foreach (DictionaryEntry v in ssi)
163 { 131 {
164 content = content.Replace("<!--#echo var=\"" + ((string) v.Key) + "\" -->", (string) v.Value); 132 content = content.Replace("<!--#echo var=\"" + ((string) v.Key) + "\" -->", (string) v.Value);
165 } 133 }
166 reply["str_response_string"] = content; 134 reply["str_response_string"] = content;
167 csr.Close(); 135 csr.Close();
168 } 136 }
169 } 137 }
170 else 138 else
171 { 139 {
172 if ("account.html" == file) 140 if ("account.html" == file)
173 reply["str_response_string"] = loginPage(null, ""); 141 reply["str_response_string"] = loginPage(null, "");
@@ -303,7 +271,7 @@ namespace OpenSim.Server.Handlers.Web
303 { 271 {
304 return "<html>\n <head>\n <title>" + title + "</title>\n </head>\n <body>\n"; 272 return "<html>\n <head>\n <title>" + title + "</title>\n </head>\n <body>\n";
305 } 273 }
306 // account.html?token=&UUID=.... 274
307 private string table(List< Hashtable > rows, string[] fields, string caption, string URL, string id) 275 private string table(List< Hashtable > rows, string[] fields, string caption, string URL, string id)
308 { 276 {
309 string tbl = "<table border=\"1\"><caption>" + caption + "</caption>"; 277 string tbl = "<table border=\"1\"><caption>" + caption + "</caption>";
@@ -350,14 +318,17 @@ namespace OpenSim.Server.Handlers.Web
350 } 318 }
351 return tbl + "</table>"; 319 return tbl + "</table>";
352 } 320 }
321
353 private string form(string action, string token, string form) 322 private string form(string action, string token, string form)
354 { 323 {
355 return " <form action=\"" + action + "\" method=\"POST\">\n" + hidden("token", token) + form + " </form>\n"; 324 return " <form action=\"" + action + "\" method=\"POST\">\n" + hidden("token", token) + form + " </form>\n";
356 } 325 }
326
357 private string hidden(string name, string val) 327 private string hidden(string name, string val)
358 { 328 {
359 return " <input type=\"hidden\" name=\"" + name + "\" value=\"" + val + "\">\n"; 329 return " <input type=\"hidden\" name=\"" + name + "\" value=\"" + val + "\">\n";
360 } 330 }
331
361 private string text(string type, string title, string name, string val, int max, bool required) 332 private string text(string type, string title, string name, string val, int max, bool required)
362 { 333 {
363 string extra = ""; 334 string extra = "";
@@ -369,10 +340,12 @@ namespace OpenSim.Server.Handlers.Web
369 val = "value=\"" + val + "\""; 340 val = "value=\"" + val + "\"";
370 return " <p>" + title + " : <input type=\"" + type + "\" name=\"" + name + "\"" + val + extra + "></p>\n"; 341 return " <p>" + title + " : <input type=\"" + type + "\" name=\"" + name + "\"" + val + extra + "></p>\n";
371 } 342 }
343
372 private string select(string title, string name, string options) 344 private string select(string title, string name, string options)
373 { 345 {
374 return " <p>" + title + " : \n <select name=\"" + name + "\">\n" + options + " </select>\n </p>\n"; 346 return " <p>" + title + " : \n <select name=\"" + name + "\">\n" + options + " </select>\n </p>\n";
375 } 347 }
348
376 private string option(string title, bool selected) 349 private string option(string title, bool selected)
377 { 350 {
378 string sel = ""; 351 string sel = "";
@@ -380,10 +353,12 @@ namespace OpenSim.Server.Handlers.Web
380 sel = " selected"; 353 sel = " selected";
381 return " <option value=\"" + title + "\"" + sel + ">" + title + "</option>\n"; 354 return " <option value=\"" + title + "\"" + sel + ">" + title + "</option>\n";
382 } 355 }
356
383 private string button(string title) 357 private string button(string title)
384 { 358 {
385 return " <button type=\"submit\" name=\"doit\" value=\"" + title + "\">" + title + "</button>\n"; 359 return " <button type=\"submit\" name=\"doit\" value=\"" + title + "\">" + title + "</button>\n";
386 } 360 }
361
387 private string footer() 362 private string footer()
388 { 363 {
389 return " </body>\n</html>\n"; 364 return " </body>\n</html>\n";