summaryrefslogtreecommitdiffstats
path: root/MCServer/webadmin/template.lua
blob: 1b2f1824671b99c614e0b55f03c0334b8e849029 (plain) (blame)
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
-- Use a table for fast concatenation of strings
local SiteContent = {}
function Output(String)
	table.insert(SiteContent, String)
end





function GetTableSize(Table)
	local Size = 0
	for key,value in pairs(Table) do
		Size = Size + 1
	end
	return Size
end





function GetDefaultPage()
	local PM = cRoot:Get():GetPluginManager()

	local SubTitle = "Home"
	local Content = ""
	
	Content = Content .. "<h4>Home Home Home</h4><ul>I have no idea what this content should do.</ul>"
	
	return Content, SubTitle
end





function ShowPage(WebAdmin, TemplateRequest)
	SiteContent = {}
	local BaseURL = WebAdmin:GetBaseURL(TemplateRequest.Request.Path)
	local Title = "MCServer WebAdmin"
	local MemoryUsageKiB = cRoot:GetPhysicalRAMUsage()
	local NumChunks = cRoot:Get():GetTotalChunkCount()
	local PluginPage = WebAdmin:GetPage(TemplateRequest.Request)
	local PageContent = PluginPage.Content
	local SubTitle = PluginPage.PluginName
	if (PluginPage.TabName ~= "") then
		SubTitle = PluginPage.PluginName .. " - " .. PluginPage.TabName
	end
	if (PageContent == "") then
		PageContent, SubTitle = GetDefaultPage()
	end
	
	local reqParamsClass = ""
	
	for key,value in pairs(TemplateRequest.Request.Params) do
		reqParamsClass = reqParamsClass .. " param-" .. string.lower(string.gsub(key, "[^a-zA-Z0-9]+", "-") .. "-" .. string.gsub(value, "[^a-zA-Z0-9]+", "-"))
	end
	
	if (string.gsub(reqParamsClass, "%s", "") == "") then
		reqParamsClass = " no-param"
	end
	
	Output([[
<!DOCTYPE html>
<head>
	<title>]] .. Title .. [[</title>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,600,300" rel="stylesheet" type="text/css">
	<link rel="stylesheet" type="text/css" href="/style.css">
	<link rel="icon" href="/favicon.ico">
</head>

<body>
	<div class="contention">
		<div class="pagehead">
			<div class="row1">
				<div class="wrapper">
					<img src="/logo_login.png" alt="MCServer Logo" class="logo">
				</div>
			</div>
			<div id="panel">
				<div class="upper">
					<div class="wrapper">
						<ul class="menu top_links">
							<li><a href=".././"><img src="/log_out.png" style="vertical-align:bottom;"> Log Out</a></li>
						</ul>
						<div class="welcome"><strong>Welcome back, ]] .. TemplateRequest.Request.Username .. [[</strong></div>
					</div>
				</div>
			</div>
		</div>
		<div class="row2 push10">
			<div class="wrapper padtopp">
			<table width="100%" border="0" align="center"><tbody>
				<tr>
					<!-- start: usercp_nav -->
					<td width="180" valign="top">
						<table border="0" cellspacing="0" cellpadding="5" class="tborder">
							<tbody><tr>
								<td class="thead"><strong>Menu</strong></td>
							</tr>
							<tr>
								<td class="trow1 smalltext"><a href=']] .. BaseURL .. [[' class='usercp_nav_item usercp_nav_home'>Home</a></td>
							</tr>
						<!-- start: usercp_nav_messenger -->
						<tr><td class="tcat"><div><span class="smalltext"><strong>Server Management</strong></span></div></td></tr></tbody><tbody style="" id="usercppms_e"><tr><td class="trow1 smalltext">
	]])


	local AllPlugins = WebAdmin:GetPlugins()
	for key,value in pairs(AllPlugins) do
		local PluginWebTitle = value:GetWebTitle()
		local TabNames = value:GetTabNames()
		if (GetTableSize(TabNames) > 0) then
			Output("<div><a class='usercp_nav_item usercp_nav_pmfolder' style='text-decoration:none;'><b>"..PluginWebTitle.."</b></a></div>\n");
			
			for webname,prettyname in pairs(TabNames) do
				Output("<div><a href='" .. BaseURL .. PluginWebTitle .. "/" .. webname .. "' class='usercp_nav_item usercp_nav_sub_pmfolder'>" .. prettyname .. "</a></div>\n")
			end

			Output("<br>\n");
		end
	end

	
	Output([[</td></tr></tbody>
						</table>
					</td>
					<!-- end: usercp_nav -->
				<td valign="top" style='padding-left:25px;'>
				<table border="0" cellspacing="0" cellpadding="5" class="tborder">
				<tbody><tr>
				<td class="thead" colspan="2"><strong>]] .. SubTitle .. [[</strong></td>
				</tr>
				<tr>
				<td class="trow2">
				]] .. PageContent .. [[
				</td>
				</tr>
				</tbody></table>
				</td>
				</tr>
			</tbody></table>
			</div>
		</div>
	</div>
	<div id="footer">
		<div class="upper">
			<div class="wrapper">
				<ul class="menu bottom_links">
					<li><a>Server Name: <strong>]] .. cRoot:Get():GetServer():GetServerID() .. [[</strong></a></li>
					<li><a>Memory: <strong>]] .. MemoryUsageKiB / 1024 .. [[MB</strong></a></li>
					<li><a>Chunks: <strong>]] .. NumChunks .. [[</strong></a></li>
					<li><a><script type="text/javascript">
document.write ('Time: <strong><span id="date-time">', new Date().toLocaleString(), '<\/span><\/strong>')
if (document.getElementById) onload = function () {
	setInterval ("document.getElementById ('date-time').firstChild.data = new Date().toLocaleString()", 50)
}
</script></a></li>
				</ul>
				<ul class="menu bottom_right">
					
				</ul>
			</div>
		</div>
		<div class="lower">
			<div class="wrapper">
				<span id="current_time"><strong>FusionCare</strong> Web Developement</span>
				<span id="copyright">
					Powered By <a href="http://www.mc-server.org" target="_blank">MC Server</a>.
				</span>
				<span id="theme">
					Theme created by Justin S.
				</span>
			</div>
		</div>
	</div>
</body>

</html>
]])
	
	return table.concat(SiteContent)
end