-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhlstats.php
235 lines (198 loc) · 6.12 KB
/
hlstats.php
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php
/*
HLstatsX Community Edition - Real-time player and clan rankings and statistics
Copyleft (L) 2008-20XX Nicholas Hastings ([email protected])
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 ([email protected])
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 ([email protected])
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
*/
define('IN_HLSTATS', true);
require('config.php');
$historical_cache=0;
if(defined('HISTORICAL_CACHE'))
{
$historical_cache=constant('HISTORICAL_CACHE');
}
if($historical_cache==1)
{
$rawmd5=md5(http_build_query($_REQUEST));
$dir1=substr($rawmd5,0,1);
$dir2=substr($rawmd5,1,1);
$cachetarget=sprintf("cache/%s/%s/%s", $dir1, $dir2, $rawmd5);
@mkdir("cache/$dir1");
@mkdir("cache/$dir1/$dir2");
if(file_exists($cachetarget))
{
file_put_contents("cache/cachehit",$cachetarget . "\n", FILE_APPEND);
echo file_get_contents($cachetarget);
die;
}
}
session_start();
if (!empty($_GET['logout']) && $_GET['logout'] == '1') {
unset($_SESSION['loggedin']);
header("Location: http://".$_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME']);
die;
}
// Several stuff added by Malte Bayer
global $scripttime, $siteurlneo;
$scripttime = microtime(true);
$siteurlneo='http://'.$_SERVER['HTTP_HOST'].substr($_SERVER['PHP_SELF'],0,strpos($_SERVER['PHP_SELF'],strrchr($_SERVER['PHP_SELF'],'/'))+1);
$siteurlneo=str_replace('\\','/',$siteurlneo);
// Several Stuff end
foreach ($_SERVER as $key => $entry) {
if ($key !== 'HTTP_COOKIE') {
$search_pattern = array('/<script>/', '/<\/script>/', '/[^A-Za-z0-9.\-\/=:;_?#&~]/');
$replace_pattern = array('', '', '');
$entry = preg_replace($search_pattern, $replace_pattern, $entry);
if ($key == "PHP_SELF") {
if ((strrchr($entry, '/') !== '/hlstats.php') &&
(strrchr($entry, '/') !== '/ingame.php') &&
(strrchr($entry, '/') !== '/show_graph.php') &&
(strrchr($entry, '/') !== '/sig.php') &&
(strrchr($entry, '/') !== '/sig2.php') &&
(strrchr($entry, '/') !== '/index.php') &&
(strrchr($entry, '/') !== '/status.php') &&
(strrchr($entry, '/') !== '/top10.php') &&
(strrchr($entry, '/') !== '/config.php') &&
(strrchr($entry, '/') !== '/') &&
($entry !== '')) {
header("Location: http://$siteurlneo/hlstats.php");
exit;
}
}
$_SERVER[$key] = $entry;
}
}
@header('Content-Type: text/html; charset=utf-8');
// do not report NOTICE warnings
@error_reporting(E_ALL ^ E_NOTICE);
////
//// Initialisation
////
define('PAGE', 'HLSTATS');
///
/// Classes
///
// Load required files
require(INCLUDE_PATH . '/class_db.php');
require(INCLUDE_PATH . '/class_table.php');
require(INCLUDE_PATH . '/functions.php');
$db_classname = 'DB_' . DB_TYPE;
if ( class_exists($db_classname) )
{
$db = new $db_classname(DB_ADDR, DB_USER, DB_PASS, DB_NAME, DB_PCONNECT);
}
else
{
error('Database class does not exist. Please check your config.php file for DB_TYPE');
}
$g_options = getOptions();
if (!isset($g_options['scripturl'])) {
$g_options['scripturl'] = isset($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
}
////
//// Main
////
$game = valid_request(isset($_GET['game']) ? $_GET['game'] : '', false);
$realgame = $_SESSION['realgame'] ?? null;
if (!$game)
{
$game = isset($_SESSION['game'])?$_SESSION['game']:'';
}
else
{
$_SESSION['game'] = $game;
}
if (!$realgame && $game)
{
$realgame = getRealGame($game);
$_SESSION['realgame'] = $realgame;
}
$mode = isset($_GET['mode']) ? $_GET['mode'] : '';
$valid_modes = array(
'players',
'clans',
'weapons',
'roles',
'rolesinfo',
'maps',
'actions',
'claninfo',
'playerinfo',
'weaponinfo',
'mapinfo',
'actioninfo',
'playerhistory',
'playersessions',
'playerawards',
'search',
'admin',
'help',
'bans',
'servers',
'chathistory',
'ranks',
'rankinfo',
'ribbons',
'ribboninfo',
'chat',
'globalawards',
'awards',
'dailyawardinfo',
'countryclans',
'countryclansinfo',
'teamspeak',
'ventrilo',
'updater',
'profile'
);
if (file_exists('./updater') && $mode != 'updater')
{
pageHeader(array('Update Notice'), array('Update Notice' => ''));
echo "<div class=\"warning\">\n" .
"<span class=\"warning-heading\"><img src=\"".IMAGE_PATH."/warning.gif\" alt=\"Warning\"> Warning:</span><br />\n" .
"<span class=\"warning-text\">The updater folder was detected in your web directory.<br />
To perform a Database Update, please go to <strong><a href=\"{$g_options['scripturl']}?mode=updater\">HLX:CE Database Updater</a></strong> to perform the database update.<br /><br />
<strong>If you have already performed the database update, <strong>you must delete the \"updater\" folder from your web folder.</span>\n</div>";
pageFooter();
die();
}
if ( !in_array($mode, $valid_modes) )
{
$mode = 'contents';
}
if ( file_exists(PAGE_PATH . "/$mode.php") )
{
@include(PAGE_PATH . "/$mode.php");
pageFooter();
}
else
{
header('HTTP/1.1 404 File Not Found', false, 404);
error('Unable to find ' . PAGE_PATH . "/$mode.php");
pageFooter();
}
?>