546 lines
13 KiB
PHP
546 lines
13 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
|
||
|
*/
|
||
|
|
||
|
// Search Class
|
||
|
class Search
|
||
|
{
|
||
|
var $query;
|
||
|
var $type;
|
||
|
var $game;
|
||
|
var $uniqueid_string = 'Unique ID';
|
||
|
var $uniqueid_string_plural = 'Unique IDs';
|
||
|
function Search ($query, $type, $game)
|
||
|
{
|
||
|
$this->query = trim($query);
|
||
|
$this->type = $type;
|
||
|
$this->game = $game;
|
||
|
if ($g_options['Mode'] == 'LAN')
|
||
|
{
|
||
|
$this->uniqueid_string = 'IP Address';
|
||
|
$this->uniqueid_string_plural = 'IP Addresses';
|
||
|
}
|
||
|
}
|
||
|
function drawForm ($getvars=array(), $searchtypes=-1)
|
||
|
{
|
||
|
global $g_options, $db;
|
||
|
if (!is_array($searchtypes))
|
||
|
{
|
||
|
$searchtypes = array(
|
||
|
'player' => 'Player Names',
|
||
|
'uniqueid' => 'Player' . $this->uniqueid_string_plural
|
||
|
);
|
||
|
if ($g_options['Mode'] != 'LAN' && isset($_SESSION['loggedin']) && $_SESSION['acclevel'] >= 80) {
|
||
|
$searchtypes['ip'] = 'Player IP Addresses';
|
||
|
}
|
||
|
$searchtypes['clan'] = 'Clan Names';
|
||
|
}
|
||
|
?>
|
||
|
|
||
|
<div class="block">
|
||
|
<?php printSectionTitle('Find a Player or Clan'); ?>
|
||
|
<div class="subblock">
|
||
|
<form method="get" action="<?php echo $g_options['scripturl']; ?>">
|
||
|
<?php
|
||
|
foreach ($getvars as $var=>$value)
|
||
|
{
|
||
|
echo '<input type="hidden" name="'.htmlspecialchars($var, ENT_QUOTES).'" value="'.htmlspecialchars($value, ENT_QUOTES)."\" />\n";
|
||
|
}
|
||
|
?>
|
||
|
<table class="data-table" style="width:30%;">
|
||
|
<tr valign="middle" class="bg1">
|
||
|
<td nowrap="nowrap" style="width:30%;">Search For:</td>
|
||
|
<td style="width:70%;">
|
||
|
<input type="text" name="q" size="20" maxlength="128" value="<?php echo htmlspecialchars($this->query, ENT_QUOTES); ?>" style="width:300px;" />
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr valign="middle" class="bg1">
|
||
|
<td nowrap="nowrap" style="width:30%;">In:</td>
|
||
|
<td style="width:70%;">
|
||
|
<?php
|
||
|
echo getSelect('st', $searchtypes, $this->type);
|
||
|
?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr valign="middle" class="bg1">
|
||
|
<td nowrap="nowrap" style="width:30%;">Game:</td>
|
||
|
<td style="width:70%;">
|
||
|
<?php
|
||
|
$games = array ();
|
||
|
$games[''] = '(All)';
|
||
|
$result = $db->query("
|
||
|
SELECT
|
||
|
hlstats_Games.code,
|
||
|
hlstats_Games.name
|
||
|
FROM
|
||
|
hlstats_Games
|
||
|
WHERE
|
||
|
hlstats_Games.hidden = '0'
|
||
|
ORDER BY
|
||
|
hlstats_Games.name
|
||
|
");
|
||
|
while ($rowdata = $db->fetch_row($result))
|
||
|
{
|
||
|
$games[$rowdata[0]] = $rowdata[1];
|
||
|
}
|
||
|
echo getSelect('game', $games, $this->game);
|
||
|
?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr class="bg1">
|
||
|
<td colspan="3" style="text-align:center;">
|
||
|
<input type="submit" value=" Find Now " class="submit" />
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div><br /><br />
|
||
|
|
||
|
<?php
|
||
|
}
|
||
|
function drawResults ($link_player=-1, $link_clan=-1)
|
||
|
{
|
||
|
global $g_options, $db;
|
||
|
if ($link_player == -1) $link_player = "mode=playerinfo&player=%k";
|
||
|
if ($link_clan == -1) $link_clan = "mode=claninfo&clan=%k";
|
||
|
?>
|
||
|
|
||
|
</div class="block">
|
||
|
<a name="results"></a>
|
||
|
<?php printSectionTitle('Search Results'); ?>
|
||
|
<br /><br />
|
||
|
|
||
|
<?php
|
||
|
$sr_query = preg_replace('/^STEAM_\d+?\:/i','',$this->query);
|
||
|
$sr_query = $db->escape($sr_query);
|
||
|
$sr_query = preg_replace('/\s/', '%', $sr_query);
|
||
|
if ($this->type == 'player')
|
||
|
{
|
||
|
$table = new Table
|
||
|
(
|
||
|
array
|
||
|
(
|
||
|
new TableColumn
|
||
|
(
|
||
|
'player_id',
|
||
|
'ID',
|
||
|
'width=5&align=right'
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'name',
|
||
|
'Player',
|
||
|
'width=65&flag=1&link=' . urlencode($link_player)
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'gamename',
|
||
|
'Game',
|
||
|
'width=30'
|
||
|
)
|
||
|
),
|
||
|
'player_id',
|
||
|
'name',
|
||
|
'player_id',
|
||
|
false,
|
||
|
50,
|
||
|
'page',
|
||
|
'sort',
|
||
|
'sortorder',
|
||
|
'results',
|
||
|
'asc'
|
||
|
);
|
||
|
if ($this->game)
|
||
|
$andgame = "AND hlstats_Players.game='" . $this->game . "'";
|
||
|
else
|
||
|
$andgame = '';
|
||
|
$result = $db->query
|
||
|
("
|
||
|
SELECT
|
||
|
hlstats_PlayerNames.playerId AS player_id,
|
||
|
hlstats_PlayerNames.name,
|
||
|
hlstats_Players.flag,
|
||
|
hlstats_Players.country,
|
||
|
hlstats_Games.name AS gamename
|
||
|
FROM
|
||
|
hlstats_PlayerNames
|
||
|
LEFT JOIN
|
||
|
hlstats_Players
|
||
|
ON
|
||
|
hlstats_Players.playerId = hlstats_PlayerNames.playerId
|
||
|
LEFT JOIN
|
||
|
hlstats_Games
|
||
|
ON
|
||
|
hlstats_Games.code = hlstats_Players.game
|
||
|
WHERE
|
||
|
hlstats_Games.hidden = '0'
|
||
|
AND hlstats_PlayerNames.name LIKE '%$sr_query%'
|
||
|
$andgame
|
||
|
ORDER BY
|
||
|
$table->sort $table->sortorder,
|
||
|
$table->sort2 $table->sortorder
|
||
|
LIMIT
|
||
|
$table->startitem,
|
||
|
$table->numperpage
|
||
|
");
|
||
|
$resultCount = $db->query
|
||
|
("
|
||
|
SELECT
|
||
|
COUNT(*)
|
||
|
FROM
|
||
|
hlstats_PlayerNames
|
||
|
LEFT JOIN
|
||
|
hlstats_Players
|
||
|
ON
|
||
|
hlstats_Players.playerId = hlstats_PlayerNames.playerId
|
||
|
LEFT JOIN
|
||
|
hlstats_Games
|
||
|
ON
|
||
|
hlstats_Games.code = hlstats_Players.game
|
||
|
WHERE
|
||
|
hlstats_Games.hidden = '0'
|
||
|
AND hlstats_PlayerNames.name LIKE '%$sr_query%'
|
||
|
$andgame
|
||
|
");
|
||
|
list($numitems) = $db->fetch_row($resultCount);
|
||
|
$table->draw($result, $numitems, 95);
|
||
|
}
|
||
|
elseif ($this->type == 'uniqueid')
|
||
|
{
|
||
|
$table = new Table
|
||
|
(
|
||
|
array
|
||
|
(
|
||
|
new TableColumn
|
||
|
(
|
||
|
'uniqueId',
|
||
|
$this->uniqueid_string,
|
||
|
'width=15'
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'lastName',
|
||
|
'Player',
|
||
|
'width=50&flag=1&link=' . urlencode($link_player)
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'gamename',
|
||
|
'Game',
|
||
|
'width=30'
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'playerId',
|
||
|
'ID',
|
||
|
'width=5&align=right'
|
||
|
)
|
||
|
),
|
||
|
'playerId',
|
||
|
'lastName',
|
||
|
'uniqueId',
|
||
|
false,
|
||
|
50,
|
||
|
'page',
|
||
|
'sort',
|
||
|
'sortorder',
|
||
|
'results',
|
||
|
'asc'
|
||
|
);
|
||
|
if ($this->game)
|
||
|
$andgame = "AND hlstats_PlayerUniqueIds.game='" . $this->game . "'";
|
||
|
else
|
||
|
$andgame = '';
|
||
|
$result = $db->query
|
||
|
("
|
||
|
SELECT
|
||
|
hlstats_PlayerUniqueIds.uniqueId,
|
||
|
hlstats_PlayerUniqueIds.playerId,
|
||
|
hlstats_Players.lastName,
|
||
|
hlstats_Players.flag,
|
||
|
hlstats_Players.country,
|
||
|
hlstats_Games.name AS gamename
|
||
|
FROM
|
||
|
hlstats_PlayerUniqueIds
|
||
|
LEFT JOIN
|
||
|
hlstats_Players
|
||
|
ON
|
||
|
hlstats_Players.playerId = hlstats_PlayerUniqueIds.playerId
|
||
|
LEFT JOIN
|
||
|
hlstats_Games
|
||
|
ON
|
||
|
hlstats_Games.code = hlstats_PlayerUniqueIds.game
|
||
|
WHERE
|
||
|
hlstats_Games.hidden = '0' AND
|
||
|
hlstats_PlayerUniqueIds.uniqueId LIKE '%$sr_query%'
|
||
|
$andgame
|
||
|
ORDER BY
|
||
|
$table->sort $table->sortorder,
|
||
|
$table->sort2 $table->sortorder
|
||
|
LIMIT
|
||
|
$table->startitem,
|
||
|
$table->numperpage
|
||
|
");
|
||
|
$resultCount = $db->query
|
||
|
("
|
||
|
SELECT
|
||
|
COUNT(*)
|
||
|
FROM
|
||
|
hlstats_PlayerUniqueIds
|
||
|
LEFT JOIN
|
||
|
hlstats_Players
|
||
|
ON
|
||
|
hlstats_Players.playerId = hlstats_PlayerUniqueIds.playerId
|
||
|
WHERE
|
||
|
hlstats_PlayerUniqueIds.uniqueId LIKE '%$sr_query%'
|
||
|
$andgame
|
||
|
");
|
||
|
list($numitems) = $db->fetch_row($resultCount);
|
||
|
$table->draw($result, $numitems, 95);
|
||
|
}
|
||
|
elseif ($this->type == 'ip')
|
||
|
{
|
||
|
if (!isset($_SESSION['loggedin']) || $_SESSION['acclevel'] < 80) {
|
||
|
die ("Access denied!");
|
||
|
}
|
||
|
$table = new Table
|
||
|
(
|
||
|
array
|
||
|
(
|
||
|
new TableColumn
|
||
|
(
|
||
|
'player_id',
|
||
|
'ID',
|
||
|
'width=5&align=right'
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'name',
|
||
|
'Player',
|
||
|
'width=65&flag=1&link=' . urlencode($link_player)
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'gamename',
|
||
|
'Game',
|
||
|
'width=30'
|
||
|
)
|
||
|
),
|
||
|
'player_id',
|
||
|
'name',
|
||
|
'player_id',
|
||
|
false,
|
||
|
50,
|
||
|
'page',
|
||
|
'sort',
|
||
|
'sortorder',
|
||
|
'results',
|
||
|
'asc'
|
||
|
);
|
||
|
if ($this->game)
|
||
|
$andgame = "AND hlstats_Players.game='" . $this->game . "'";
|
||
|
else
|
||
|
$andgame = '';
|
||
|
$result = $db->query
|
||
|
("
|
||
|
SELECT
|
||
|
connects.playerId AS player_id,
|
||
|
hlstats_Players.lastname AS name,
|
||
|
hlstats_Players.flag,
|
||
|
hlstats_Players.country,
|
||
|
hlstats_Games.name AS gamename
|
||
|
FROM
|
||
|
(
|
||
|
SELECT
|
||
|
playerId,
|
||
|
ipAddress
|
||
|
FROM
|
||
|
`hlstats_Events_Connects`
|
||
|
GROUP BY
|
||
|
playerId,
|
||
|
ipAddress
|
||
|
) AS connects
|
||
|
LEFT JOIN
|
||
|
hlstats_Players
|
||
|
ON
|
||
|
hlstats_Players.playerId = connects.playerId
|
||
|
LEFT JOIN
|
||
|
hlstats_Games
|
||
|
ON
|
||
|
hlstats_Games.code = hlstats_Players.game
|
||
|
WHERE
|
||
|
hlstats_Games.hidden = '0'
|
||
|
AND connects.ipAddress LIKE '$sr_query%'
|
||
|
$andgame
|
||
|
ORDER BY
|
||
|
$table->sort $table->sortorder,
|
||
|
$table->sort2 $table->sortorder
|
||
|
LIMIT
|
||
|
$table->startitem,
|
||
|
$table->numperpage
|
||
|
");
|
||
|
$resultCount = $db->query
|
||
|
("
|
||
|
SELECT
|
||
|
COUNT(*)
|
||
|
FROM
|
||
|
(
|
||
|
SELECT
|
||
|
playerId,
|
||
|
ipAddress
|
||
|
FROM
|
||
|
`hlstats_Events_Connects`
|
||
|
GROUP BY
|
||
|
playerId,
|
||
|
ipAddress
|
||
|
) AS connects
|
||
|
LEFT JOIN
|
||
|
hlstats_Players
|
||
|
ON
|
||
|
hlstats_Players.playerId = connects.playerId
|
||
|
LEFT JOIN
|
||
|
hlstats_Games
|
||
|
ON
|
||
|
hlstats_Games.code = hlstats_Players.game
|
||
|
WHERE
|
||
|
hlstats_Games.hidden = '0'
|
||
|
AND connects.ipAddress LIKE '$sr_query%'
|
||
|
$andgame
|
||
|
");
|
||
|
list($numitems) = $db->fetch_row($resultCount);
|
||
|
$table->draw($result, $numitems, 95);
|
||
|
}
|
||
|
elseif ($this->type == 'clan')
|
||
|
{
|
||
|
$table = new Table
|
||
|
(
|
||
|
array
|
||
|
(
|
||
|
new TableColumn
|
||
|
(
|
||
|
'tag',
|
||
|
'Tag',
|
||
|
'width=15'
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'name',
|
||
|
'Name',
|
||
|
'width=50&icon=clan&link=' . urlencode($link_clan)
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'gamename',
|
||
|
'Game',
|
||
|
'width=30'
|
||
|
),
|
||
|
new TableColumn
|
||
|
(
|
||
|
'clanId',
|
||
|
'ID',
|
||
|
'width=5&align=right'
|
||
|
)
|
||
|
),
|
||
|
'clanId',
|
||
|
'name',
|
||
|
'tag',
|
||
|
false,
|
||
|
50,
|
||
|
'page',
|
||
|
'sort',
|
||
|
'sortorder',
|
||
|
'results',
|
||
|
'asc'
|
||
|
);
|
||
|
if ($this->game)
|
||
|
$andgame = "AND hlstats_Clans.game='" . $this->game . "'";
|
||
|
else
|
||
|
$andgame = "";
|
||
|
$result = $db->query
|
||
|
("
|
||
|
SELECT
|
||
|
hlstats_Clans.clanId,
|
||
|
hlstats_Clans.tag,
|
||
|
hlstats_Clans.name,
|
||
|
hlstats_Games.name AS gamename
|
||
|
FROM
|
||
|
hlstats_Clans
|
||
|
LEFT JOIN hlstats_Games ON
|
||
|
hlstats_Games.code = hlstats_Clans.game
|
||
|
WHERE
|
||
|
hlstats_Games.hidden = '0'
|
||
|
AND (
|
||
|
hlstats_Clans.tag LIKE '%$sr_query%'
|
||
|
OR hlstats_Clans.name LIKE '%$sr_query%'
|
||
|
)
|
||
|
$andgame
|
||
|
ORDER BY
|
||
|
$table->sort $table->sortorder,
|
||
|
$table->sort2 $table->sortorder
|
||
|
LIMIT
|
||
|
$table->startitem,
|
||
|
$table->numperpage
|
||
|
");
|
||
|
$resultCount = $db->query
|
||
|
("
|
||
|
SELECT
|
||
|
COUNT(*)
|
||
|
FROM
|
||
|
hlstats_Clans
|
||
|
WHERE
|
||
|
hlstats_Clans.tag LIKE '%$sr_query%'
|
||
|
OR hlstats_Clans.name LIKE '%$sr_query%'
|
||
|
$andgame
|
||
|
");
|
||
|
list($numitems) = $db->fetch_row($resultCount);
|
||
|
$table->draw($result, $numitems, 95);
|
||
|
}
|
||
|
?>
|
||
|
<br /><br />
|
||
|
<div class="subblock" style="text-align:center;">
|
||
|
Search results: <strong><?php echo $numitems; ?></strong> items matching
|
||
|
</div>
|
||
|
</div>
|
||
|
<?php
|
||
|
}
|
||
|
}
|
||
|
?>
|