332 lines
8.4 KiB
PHP
332 lines
8.4 KiB
PHP
<?php
|
|
/*
|
|
HLstatsX Community Edition - Real-time player and clan rankings and statistics
|
|
Copyleft (L) 2008-20XX Nicholas Hastings (nshastings@gmail.com)
|
|
http://www.hlxcommunity.com
|
|
|
|
HLstatsX Community Edition is a continuation of
|
|
ELstatsNEO - Real-time player and clan rankings and statistics
|
|
Copyleft (L) 2008-20XX Malte Bayer (steam@neo-soft.org)
|
|
http://ovrsized.neo-soft.org/
|
|
|
|
ELstatsNEO is an very improved & enhanced - so called Ultra-Humongus Edition of HLstatsX
|
|
HLstatsX - Real-time player and clan rankings and statistics for Half-Life 2
|
|
http://www.hlstatsx.com/
|
|
Copyright (C) 2005-2007 Tobias Oetzel (Tobi@hlstatsx.com)
|
|
|
|
HLstatsX is an enhanced version of HLstats made by Simon Garner
|
|
HLstats - Real-time player and clan rankings and statistics for Half-Life
|
|
http://sourceforge.net/projects/hlstats/
|
|
Copyright (C) 2001 Simon Garner
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
For support and installation notes visit http://www.hlxcommunity.com
|
|
*/
|
|
|
|
if ( !defined('IN_HLSTATS') )
|
|
{
|
|
die('Do not access this file directly.');
|
|
}
|
|
// Global Server Chat History
|
|
$showserver=0;
|
|
if (isset($_GET['server_id']))
|
|
{
|
|
$showserver = valid_request(strval($_GET['server_id']), true);
|
|
}
|
|
if ($showserver == 0)
|
|
{
|
|
$whereclause = "hlstats_Servers.game='$game'";
|
|
}
|
|
else
|
|
{
|
|
$whereclause = "hlstats_Servers.game='$game' AND hlstats_Events_Chat.serverId=$showserver";
|
|
}
|
|
$db->query
|
|
("
|
|
SELECT
|
|
hlstats_Games.name
|
|
FROM
|
|
hlstats_Games
|
|
WHERE
|
|
hlstats_Games.code = '$game'
|
|
");
|
|
if ($db->num_rows() < 1) error("No such game '$game'.");
|
|
list($gamename) = $db->fetch_row();
|
|
$db->free_result();
|
|
pageHeader
|
|
(
|
|
array ($gamename, 'Server Chat Statistics'),
|
|
array ($gamename=>"%s?game=$game", 'Server Chat Statistics'=>'')
|
|
);
|
|
flush();
|
|
$servername = "(All Servers)";
|
|
|
|
if ($showserver != 0)
|
|
{
|
|
$result=$db->fetch_array
|
|
(
|
|
$db->query
|
|
("
|
|
SELECT
|
|
hlstats_Servers.name
|
|
FROM
|
|
hlstats_Servers
|
|
WHERE
|
|
hlstats_Servers.serverId = ".$db->escape($showserver)."
|
|
")
|
|
);
|
|
$servername = "(" . $result['name'] . ")";
|
|
}
|
|
?>
|
|
|
|
<div class="block">
|
|
<?php printSectionTitle("$gamename $servername Server Chat Log (Last ".$g_options['DeleteDays'].' Days)'); ?>
|
|
<div class="subblock">
|
|
<div style="float:left;">
|
|
<span>
|
|
<form method="get" action="<?php echo $g_options['scripturl']; ?>" style="margin:0px;padding:0px;">
|
|
<input type="hidden" name="mode" value="chat" />
|
|
<input type="hidden" name="game" value="<?php echo $game; ?>" />
|
|
<strong>•</strong> Show Chat from
|
|
<?php
|
|
/*
|
|
$result = $db->query
|
|
("
|
|
SELECT
|
|
DISTINCT hlstats_Events_Chat.serverId,
|
|
hlstats_Servers.name
|
|
FROM
|
|
hlstats_Events_Chat
|
|
INNER JOIN
|
|
hlstats_Servers
|
|
ON
|
|
hlstats_Events_Chat.serverId = hlstats_Servers.serverId
|
|
AND hlstats_Servers.game='$game'
|
|
ORDER BY
|
|
hlstats_Servers.sortorder,
|
|
hlstats_Servers.name,
|
|
hlstats_Events_Chat.serverId ASC
|
|
LIMIT
|
|
0,
|
|
50
|
|
");
|
|
*/
|
|
|
|
$result = $db->query
|
|
("
|
|
SELECT
|
|
hlstats_Servers.serverId,
|
|
hlstats_Servers.name
|
|
FROM
|
|
hlstats_Servers
|
|
WHERE
|
|
hlstats_Servers.game='$game'
|
|
ORDER BY
|
|
hlstats_Servers.sortorder,
|
|
hlstats_Servers.name,
|
|
hlstats_Servers.serverId ASC
|
|
LIMIT
|
|
0,
|
|
50
|
|
");
|
|
|
|
echo '<select name="server_id"><option value="0">All Servers</option>';
|
|
$dates = array ();
|
|
$serverids = array();
|
|
while ($rowdata = $db->fetch_array())
|
|
{
|
|
$serverids[] = $rowdata['serverId'];
|
|
$dates[] = $rowdata;
|
|
if ($showserver == $rowdata['serverId'])
|
|
echo '<option value="'.$rowdata['serverId'].'" selected>'.$rowdata['name'].'</option>';
|
|
else
|
|
echo '<option value="'.$rowdata['serverId'].'">'.$rowdata['name'].'</option>';
|
|
}
|
|
echo '</select>';
|
|
$filter=isset($_REQUEST['filter'])?$_REQUEST['filter']:"";
|
|
?>
|
|
Filter: <input type="text" name="filter" value="<?php echo htmlentities($filter); ?>" />
|
|
<input type="submit" value="View" class="smallsubmit" />
|
|
</form>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div style="clear:both;padding-top:20px;"></div>
|
|
<?php
|
|
if ($showserver == 0)
|
|
{
|
|
$table = new Table(
|
|
array
|
|
(
|
|
new TableColumn
|
|
(
|
|
'eventTime',
|
|
'Date',
|
|
'width=16'
|
|
),
|
|
new TableColumn
|
|
(
|
|
'lastName',
|
|
'Player',
|
|
'width=17&sort=no&flag=1&link=' . urlencode('mode=playerinfo&player=%k')
|
|
),
|
|
new TableColumn
|
|
(
|
|
'message',
|
|
'Message',
|
|
'width=34&sort=no&embedlink=yes'
|
|
),
|
|
new TableColumn
|
|
(
|
|
'serverName',
|
|
'Server',
|
|
'width=23&sort=no'
|
|
),
|
|
new TableColumn
|
|
(
|
|
'map',
|
|
'Map',
|
|
'width=10&sort=no'
|
|
)
|
|
),
|
|
'playerId',
|
|
'eventTime',
|
|
'lastName',
|
|
false,
|
|
50,
|
|
"page",
|
|
"sort",
|
|
"sortorder"
|
|
);
|
|
}
|
|
else
|
|
{
|
|
$table = new Table(
|
|
array
|
|
(
|
|
new TableColumn
|
|
(
|
|
'eventTime',
|
|
'Date',
|
|
'width=16'
|
|
),
|
|
new TableColumn
|
|
(
|
|
'lastName',
|
|
'Player',
|
|
'width=24&sort=no&flag=1&link=' . urlencode('mode=playerinfo&player=%k')
|
|
),
|
|
new TableColumn
|
|
(
|
|
'message',
|
|
'Message',
|
|
'width=44&sort=no&embedlink=yes'
|
|
),
|
|
new TableColumn
|
|
(
|
|
'map',
|
|
'Map',
|
|
'width=16&sort=no'
|
|
)
|
|
),
|
|
'playerId',
|
|
'eventTime',
|
|
'lastName',
|
|
false,
|
|
50,
|
|
"page",
|
|
"sort",
|
|
"sortorder"
|
|
);
|
|
}
|
|
$whereclause2='';
|
|
if(!empty($filter))
|
|
{
|
|
$whereclause2="AND MATCH (hlstats_Events_Chat.message) AGAINST ('" . $db->escape($filter) . "' in BOOLEAN MODE)";
|
|
}
|
|
$surl = $g_options['scripturl'];
|
|
|
|
$result = $db->query
|
|
("
|
|
SELECT SQL_NO_CACHE
|
|
hlstats_Events_Chat.eventTime,
|
|
unhex(replace(hex(hlstats_Players.lastName), 'E280AE', '')) as lastName,
|
|
IF(hlstats_Events_Chat.message_mode=2, CONCAT('(Team) ', hlstats_Events_Chat.message), IF(hlstats_Events_Chat.message_mode=3, CONCAT('(Squad) ', hlstats_Events_Chat.message), hlstats_Events_Chat.message)) AS message,
|
|
hlstats_Servers.name AS serverName,
|
|
hlstats_Events_Chat.playerId,
|
|
hlstats_Players.flag,
|
|
hlstats_Events_Chat.map
|
|
FROM
|
|
hlstats_Events_Chat
|
|
INNER JOIN
|
|
hlstats_Players
|
|
ON
|
|
hlstats_Players.playerId = hlstats_Events_Chat.playerId
|
|
INNER JOIN
|
|
hlstats_Servers
|
|
ON
|
|
hlstats_Servers.serverId = hlstats_Events_Chat.serverId
|
|
WHERE
|
|
$whereclause $whereclause2
|
|
ORDER BY
|
|
hlstats_Events_Chat.id $table->sortorder
|
|
LIMIT
|
|
$table->startitem,
|
|
$table->numperpage;
|
|
", true, false);
|
|
/*
|
|
$whereclause = "hlstats_Events_Chat.serverId ";
|
|
|
|
if($showserver == 0) {
|
|
$whereclause .= "in (".implode($serverids,',').")";
|
|
} else {
|
|
$whereclause .= "= $showserver";
|
|
}
|
|
*/
|
|
|
|
$db->query
|
|
("
|
|
SELECT
|
|
count(*)
|
|
FROM
|
|
hlstats_Events_Chat
|
|
INNER JOIN
|
|
hlstats_Players
|
|
ON
|
|
hlstats_Players.playerId = hlstats_Events_Chat.playerId
|
|
INNER JOIN
|
|
hlstats_Servers
|
|
ON
|
|
hlstats_Servers.serverId = hlstats_Events_Chat.serverId
|
|
WHERE
|
|
$whereclause $whereclause2
|
|
");
|
|
if ($db->num_rows() < 1) $numitems = 0;
|
|
else
|
|
{
|
|
list($numitems) = $db->fetch_row();
|
|
}
|
|
$db->free_result();
|
|
|
|
$table->draw($result, $numitems, 95);
|
|
?><br /><br />
|
|
<div class="subblock">
|
|
<div style="float:right;">
|
|
Go to: <a href="<?php echo $g_options["scripturl"] . "?game=$game"; ?>"><?php echo $gamename; ?></a>
|
|
</div>
|
|
</div>
|
|
</div>
|