This repository has been archived by the owner on Jul 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
showServers.php
233 lines (197 loc) · 9.98 KB
/
showServers.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
<?php
// Copyright (C) 2012 Mark Vejvoda, Titus Tscharntke and Tom Reynolds
// The Glest Team, under GNU GPL v3.0
// ==============================================================
define( 'INCLUSION_PERMITTED', true );
require_once( 'config.php' );
require_once( 'functions.php' );
define( 'DB_LINK', db_connect() );
// allow for automatic refreshing in web browser by appending '?refresh=VALUE', where VALUE is a numeric value in seconds.
if ( isset( $_GET['refresh'] ) ) { define( 'REFRESH_INTERVAL', (int) $_GET['refresh'] ); } else { define( 'REFRESH_INTERVAL', '' ); }
// allow for filtering by gameserver version
if ( isset( $_GET['version'] ) ) { define( 'FILTER_VERSION', $_GET['version'] ); } else { define( 'FILTER_VERSION', '' ); }
if ( isset( $_GET['mgg_host'] ) ) { define( 'MGG_HOST', $_GET['mgg_host'] ); } else { define( 'MGG_HOST', '' ); }
if ( isset( $_GET['mgg_port'] ) ) { define( 'MGG_PORT', $_GET['mgg_port'] ); } else { define( 'MGG_PORT', '' ); }
if ( MGG_HOST != '' ) {
$body = MGG_HOST . ':' . MGG_PORT;
header( 'Content-Type: application/x-glest-gameserver; charset=utf-8' );
header( 'Content-Disposition: attachment; filename="glest_gameserver.mgg' );
header( 'Content-Length: ' . strlen( $body ));
header( 'Accept-Ranges: bytes' );
echo $body;
exit;
}
// consider replacing this by a cron job
cleanupServerList();
$servers_in_db = mysqli_query( Registry::$mysqliLink, 'SELECT a.*,b.framesToCalculatePlaytime FROM glestserver a LEFT JOIN glestgamestats b ON a.gameUUID = b.gameUUID WHERE status <> 3 OR (status = 3 AND a.lasttime > DATE_add(NOW(), INTERVAL - ' . MAX_HOURS_OLD_GAMES . ' hour)) ORDER BY status, a.lasttime DESC, connectedClients > 0 DESC, (networkSlots - connectedClients) , ip DESC;' );
$all_servers = array();
while ( $server = mysqli_fetch_array( $servers_in_db ) )
{
array_push( $all_servers, $server );
}
unset( $servers_in_db );
unset( $server );
db_disconnect( Registry::$mysqliLink );
unset( $linkid );
// Representation starts here
header( 'Content-Type: text/html; charset=utf-8' );
if ( REFRESH_INTERVAL != 0 ) {
if ( REFRESH_INTERVAL <= 10 ) {
header( 'Refresh: 10' );
} else {
header( 'Refresh: ' . REFRESH_INTERVAL );
}
}
echo '<!DOCTYPE HTML>' . PHP_EOL;
echo '<html>' . PHP_EOL;
echo ' <head>' . PHP_EOL;
echo ' <meta charset="UTF-8" />' . PHP_EOL;
echo ' <title>' . htmlspecialchars( PRODUCT_NAME ) . ' gameservers</title>' . PHP_EOL;
echo ' <link rel="stylesheet" type="text/css" href="style/screen.css" />' . PHP_EOL;
echo ' <link rel="shortcut icon" type="image/x-icon" href="images/' . htmlspecialchars( strtolower( PRODUCT_NAME ) ) . '.ico" />' . PHP_EOL;
echo ' <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />' . PHP_EOL;
echo ' </head>' . PHP_EOL;
echo ' <body>' . PHP_EOL;
echo ' <h1><a href="' . htmlspecialchars( PRODUCT_URL ) . '"><img class="logo" src="https://raw.githubusercontent.com/Glest/glest.github.io/master/docs/assets/images/glest_logo_412x207.png" height="207" width="412" title="Glest home page"></a></h1>' . PHP_EOL;
echo ' <p><a href="https://glest.dreamhosters.com/showPlayers.php">Player Activity</a></p>' . PHP_EOL;
echo ' <table id="gamesTable">' . PHP_EOL;
echo ' <tr>' . PHP_EOL;
echo ' <th title="glestVersion">Version</th>' . PHP_EOL;
echo ' <th title="status">Status</th>' . PHP_EOL;
echo ' <th title="gameDuration">Game Duration</th>' . PHP_EOL;
echo ' <th title="country">Country</th>' . PHP_EOL;
echo ' <th title="serverTitle">Title</th>' . PHP_EOL;
echo ' <th title="tech">Techtree</th>' . PHP_EOL;
echo ' <th title="connectedClients">Network players</th>' . PHP_EOL;
echo ' <th title="networkSlots">Network slots</th>' . PHP_EOL;
echo ' <th title="activeSlots">Total slots</th>' . PHP_EOL;
echo ' <th title="map">Map</th>' . PHP_EOL;
echo ' <th title="tileset">Tileset</th>' . PHP_EOL;
//echo ' <th title="ip">IPv4 address</th>' . PHP_EOL;
//echo ' <th title="externalServerPort">Game protocol port</th>' . PHP_EOL;
echo ' <th title="platform">Platform</th>' . PHP_EOL;
echo ' <th title="lasttime">Play date</th>' . PHP_EOL;
echo ' </tr>' . PHP_EOL;
$games_with_stats = 0;
foreach( $all_servers as $server )
{
# Filter by version if requested
if ( FILTER_VERSION == $server['glestVersion'] or FILTER_VERSION == '' )
{
echo "\t\t\t" . '<tr>' . PHP_EOL;
// glestVersion
printf( "\t\t\t\t<td><a href=\"?version=%s\" rel=\"nofollow\">%s</a></td>%s", htmlspecialchars( $server['glestVersion'], ENT_QUOTES ), htmlspecialchars( $server['glestVersion'], ENT_QUOTES ), PHP_EOL );
// status
$status_code = $server['status'];
if ( $status_code == 0)
{
$gameFull = ( $server['networkSlots'] <= $server['connectedClients'] );
if ( $gameFull == true )
{
$status_code = 1;
}
}
switch ( $status_code )
{
case 0:
$status_title = 'waiting for players';
$status_class = 'waiting_for_players';
break;
case 1:
$status_title = 'game full, pending start';
$status_class = 'game_full_pending_start';
break;
case 2:
$status_title = 'in progress';
$status_class = 'in_progress';
break;
case 3:
$status_title = 'finished';
$status_class = 'finished';
break;
default:
$status_title = 'unknown';
$status_class = 'unknown';
}
if (($status_code == 2 || $status_code == 3) && $server['gameUUID'] != "")
{
$games_with_stats++;
printf( "\t\t\t\t<td title=\"%s\" class=\"%s\"><a id=\"gameStats_%d\" href=\"#\" gameuuid=\"%s\">%s</a>", $server['status'], $status_class, $games_with_stats, $server['gameUUID'], htmlspecialchars( $status_title, ENT_QUOTES ) );
printf( "</td>%s", PHP_EOL );
}
else
{
printf( "\t\t\t\t<td title=\"%s\" class=\"%s\">%s</td>%s", $server['status'], $status_class, htmlspecialchars( $status_title, ENT_QUOTES ), PHP_EOL );
}
// Game Stats
$gameDuration = $server['framesToCalculatePlaytime'];
$gameDuration = getTimeString($gameDuration);
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $gameDuration, ENT_QUOTES ), PHP_EOL );
// country
if ( $server['country'] !== '' ) {
$flagfile = 'flags/' . strtolower( $server['country'] ).'.png';
if ( file_exists( $flagfile ) ) {
printf( "\t\t\t\t<td><img src=\"%s\" title=\"%s\" alt=\"%s country flag\" /></td>%s", $flagfile, $server['country'], $server['country'], PHP_EOL );
} else {
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['country'], ENT_QUOTES ), PHP_EOL );
}
}
else {
printf( "\t\t\t\t<td>unknown</td>%s", PHP_EOL );
}
// serverTitle
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['serverTitle'], ENT_QUOTES ), PHP_EOL );
// tech
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['tech'], ENT_QUOTES ), PHP_EOL );
// connectedClients
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['connectedClients'], ENT_QUOTES ), PHP_EOL );
// networkSlots
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['networkSlots'], ENT_QUOTES ), PHP_EOL );
// activeSlots
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['activeSlots'], ENT_QUOTES ), PHP_EOL );
// map
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['map'], ENT_QUOTES ), PHP_EOL );
// tileset
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['tileset'], ENT_QUOTES ), PHP_EOL );
// ip
//printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['ip'], ENT_QUOTES ), PHP_EOL );
// externalServerPort
//printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['externalServerPort'], ENT_QUOTES ), PHP_EOL );
// platform
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['platform'], ENT_QUOTES ), PHP_EOL );
// game play time
printf( "\t\t\t\t<td>%s</td>%s", htmlspecialchars( $server['lasttime'], ENT_QUOTES ), PHP_EOL );
echo "\t\t\t" . '</tr>' . PHP_EOL;
if (($status_code == 2 || $status_code == 3) && $server['gameUUID'] != "")
{
//echo "\t\t\t" . '<tr>' . PHP_EOL;
printf( "\t\t\t\t<tr width='100%%' class='fullyhide' id='content_row_%s'>%s", $server['gameUUID'], PHP_EOL );
printf( "<td width='100%%' colspan='100'></td>%s", PHP_EOL );
echo "\t\t\t" . '</tr>' . PHP_EOL;
}
}
}
echo ' </table>' . PHP_EOL;
echo ' <p>' . PHP_EOL;
echo ' <br />' . PHP_EOL;
echo ' </p>' . PHP_EOL;
echo ' <script language="javascript" type="text/javascript" src="scripts/utils.js"></script>' . PHP_EOL;
if ( FILTER_VERSION != '' )
{
echo "\t\t<p>Filters active:</p>" . PHP_EOL;
echo "\t\t<ul>" . PHP_EOL;
printf( "\t\t\t<li>Version <a href=\"?\" rel=\"nofollow\">%s</a></li>%s", htmlspecialchars( FILTER_VERSION, ENT_QUOTES ), PHP_EOL );
echo "\t\t</ul>" . PHP_EOL;
}
echo ' <p>Usage:</p>' . PHP_EOL;
echo ' <ul id="noJsUsage">' . PHP_EOL;
echo ' <li>You can have this page auto <a href="?refresh=60" rel="nofollow">refresh every 60 seconds</a> by appending <code>?refresh=60</code> to the URL. Minimum refresh time is 10 seconds.</li>' . PHP_EOL;
echo ' <li>The parameters used by the masterserver API will display when you move your mouse pointer over any of the table headings.</li>' . PHP_EOL;
echo ' </ul>' . PHP_EOL;
echo ' <script src="scripts/json2.js"></script>' . PHP_EOL;
echo ' <script src="scripts/desktop_notifications.js"></script>' . PHP_EOL;
echo ' </body>' . PHP_EOL;
echo '</html>' . PHP_EOL;
unset( $all_servers );
unset( $server );
?>