summaryrefslogtreecommitdiffstats
path: root/Plugins/Core/web_playerlist.lua
blob: 62ccb1d44299ca8e536410f86919bdaaf41422e8 (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
local PlayerHTML = ""
local PlayerNum = 0

function HandleRequest_PlayerList( Request )
	local World = cRoot:Get():GetWorld()
	local Content = ""
	
	if( Request.Params["playerlist-kick"] ~= nil ) then
		local KickPlayerName = Request.Params["playerlist-kick"]
		local Player = World:GetPlayer( KickPlayerName )
		if( Player == nil ) then
			Content = Content .. "<p>Could not find player " .. KickPlayerName .. " !</p>"
		elseif( Player:GetName() == KickPlayerName ) then
			Player:GetClientHandle():Kick("You were kicked from the game!")
			Content = Content .. "<p>" .. KickPlayerName .. " has been kicked from the game!</p>"
		end
	end
	
	Content = Content .. "<p>Connected Players: <b>" .. World:GetNumPlayers() .. "</b></p>"
	Content = Content .. "<table>"
	
	PlayerNum = 0
	PlayerHTML = ""
	World:ForEachPlayer( CreatePlayerList )

	if( PlayerHTML ~= "" ) then
		Content = Content .. PlayerHTML
	else
		Content = Content .. "<tr><td>None</td></tr>"
	end
	Content = Content .. "</table>"
	Content = Content .. "<br>"
	return Content
end

function CreatePlayerList( Player, Data )
	PlayerNum = PlayerNum + 1
	PlayerHTML = PlayerHTML .. "<tr>"
	PlayerHTML = PlayerHTML .. "<td style='width: 10px;'>" .. PlayerNum .. ".</td>"
	PlayerHTML = PlayerHTML .. "<td>" .. Player:GetName() .. "</td>"
	PlayerHTML = PlayerHTML .. "<td><a href='?playerlist-kick=" .. Player:GetName() .. "'>Kick</a></td>"
	PlayerHTML = PlayerHTML .. "</tr>"
end