-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinstaller.php
575 lines (563 loc) · 17.3 KB
/
installer.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
<?php
/*
MCCodes FREE
installer.php Rev 1.1.0
Copyright (C) 2005-2012 Dabomstew
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 Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
if (file_exists('./installer.lock'))
{
exit;
}
define('MONO_ON', 1);
session_name('MCCSID');
session_start();
if (!isset($_SESSION['started']))
{
session_regenerate_id();
$_SESSION['started'] = true;
}
require_once('installer_head.php');
require_once('global_func.php');
require_once('lib/installer_error_handler.php');
set_error_handler('error_php');
if (!isset($_GET['code']))
{
$_GET['code'] = '';
}
switch ($_GET['code'])
{
case "install":
install();
break;
case "config":
config();
break;
default:
diagnostics();
break;
}
function menuprint($highlight)
{
$items =
array('diag' => '1. Diagnostics', 'input' => '2. Configuration',
'sql' => '3. Installation & Extras',);
$c = 0;
echo "<hr />";
foreach ($items as $k => $v)
{
$c++;
if ($c > 1)
{
echo ' >> ';
}
if ($k == $highlight)
{
echo '<span style="color: black;">' . $v . '</span>';
}
else
{
echo '<span style="color: gray;">' . $v . '</span>';
}
}
echo '<hr />';
}
function diagnostics()
{
menuprint("diag");
if (version_compare(phpversion(), '4.3.3') < 0)
{
$pv = '<span style="color: red">Failed</span>';
$pvf = 0;
}
else
{
$pv = '<span style="color: green">OK</span>';
$pvf = 1;
}
if (is_writable('./'))
{
$wv = '<span style="color: green">OK</span>';
$wvf = 1;
}
else
{
$wv = '<span style="color: red">Failed</span>';
$wvf = 0;
}
if (function_exists('mysql_connect'))
{
$dv = '<span style="color: green">OK</span>';
$dvf = 1;
}
else
{
$dv = '<span style="color: red">Failed</span>';
$dvf = 0;
}
echo "
<h3>Basic Diagnostic Results:</h3>
<table width='80%' border='1' cellspacing='1' cellpadding='1' align='center'>
<tr>
<td>PHP version >= 4.3.3</td>
<td>{$pv}</td>
</tr>
<tr>
<td>Game folder writable</td>
<td>{$wv}</td>
</tr>
<tr>
<td>MySQL support in PHP present</td>
<td>{$dv}</td>
</tr>
<tr>
<td>MCCodes up to date</td>
<td>
<iframe
src='http://www.mccodes.com/update_check.php?version=11000&type=free'
width='250' height='30'></iframe>
</td>
</table>
";
if ($pvf + $wvf + $dvf < 3)
{
echo "
<hr />
<span style='color: red; font-weight: bold;'>
One of the basic diagnostics failed, so Setup cannot continue.
Please fix the ones that failed and try again.
</span>
<hr />
";
}
else
{
echo "
<hr />
> <a href='installer.php?code=config'>Next Step</a>
<hr />
";
}
}
function config()
{
menuprint("input");
echo "
<h3>Configuration:</h3>
<form action='installer.php?code=install' method='post'>
<table width='75%' class='table' cellspacing='1' cellpadding='1' align='center'>
<tr>
<th colspan='2'>Database Config</th>
</tr>
<tr>
<td align='center'>
Hostname<br />
<small>This is usually localhost</small>
</td>
<td><input type='text' name='hostname' value='localhost' /></td>
</tr>
<tr>
<td align='center'>
Username<br />
<small>The user must be able to use the database</small>
</td>
<td><input type='text' name='username' value='' /></td>
</tr>
<tr>
<td align='center'>Password</td>
<td><input type='text' name='password' value='' /></td>
</tr>
<tr>
<td align='center'>
Database Name<br />
<small>The database should not have any other software using it.</small>
</td>
<td><input type='text' name='database' value='' /></td>
</tr>
<tr>
<th colspan='2'>Game Config</th>
</tr>
<tr>
<td align='center'>Game Name</td>
<td><input type='text' name='game_name' /></td>
</tr>
<tr>
<td align='center'>
Game Owner<br />
<small>This can be your nick, real name, or a company</small>
</td>
<td><input type='text' name='game_owner' /></td>
</tr>
<tr>
<td align='center'>
Game Description<br />
<small>This is shown on the login page.</small>
</td>
<td><textarea rows='6' cols='40' name='game_description'></textarea></td>
</tr>
<tr>
<td align='center'>
PayPal Address<br />
<small>This is where the payments for game DPs go. Must be at least Premier.</small>
</td>
<td><input type='text' name='paypal' /></td>
</tr>
<tr>
<th colspan='2'>Admin User</th>
</tr>
<tr>
<td align='center'>Username</td>
<td><input type='text' name='a_username' /></td>
</tr>
<tr>
<td align='center'>Password</td>
<td><input type='password' name='a_password' /></td>
</tr>
<tr>
<td align='center'>Confirm Password</td>
<td><input type='password' name='a_cpassword' /></td>
</tr>
<tr>
<td align='center'>E-Mail</td>
<td><input type='text' name='a_email' /></td>
</tr>
<tr>
<td align='center'>Gender</td>
<td>
<select name='gender' type='dropdown'>
<option value='Male'>Male</option>
<option value='Female'>Female</option>
</select>
</td>
</tr>
<tr>
<td colspan='2' align='center'>
<input type='submit' value='Install' />
</td>
</tr>
</table>
</form>
";
}
function gpc_cleanup($text)
{
return stripslashes($text);
}
function install()
{
menuprint('sql');
$paypal =
(isset($_POST['paypal']) && valid_email($_POST['paypal']))
? gpc_cleanup($_POST['paypal']) : '';
$adm_email =
(isset($_POST['a_email']) && valid_email($_POST['a_email']))
? gpc_cleanup($_POST['a_email']) : '';
$adm_username =
(isset($_POST['a_username']) && strlen($_POST['a_username']) > 2)
? gpc_cleanup($_POST['a_username']) : '';
$adm_gender =
(isset($_POST['gender'])
&& in_array($_POST['gender'], array('Male', 'Female'),
true)) ? $_POST['gender'] : 'Male';
$description =
(isset($_POST['game_description']))
? gpc_cleanup($_POST['game_description']) : '';
$owner =
(isset($_POST['game_owner']) && strlen($_POST['game_owner']) > 2)
? gpc_cleanup($_POST['game_owner']) : '';
$game_name =
(isset($_POST['game_name'])) ? gpc_cleanup($_POST['game_name'])
: '';
$adm_pswd =
(isset($_POST['a_password']) && strlen($_POST['a_password']) > 3)
? gpc_cleanup($_POST['a_password']) : '';
$adm_cpswd =
isset($_POST['a_cpassword']) ? gpc_cleanup($_POST['a_cpassword'])
: '';
$db_hostname =
isset($_POST['hostname']) ? gpc_cleanup($_POST['hostname']) : '';
$db_username =
isset($_POST['username']) ? gpc_cleanup($_POST['username']) : '';
$db_password =
isset($_POST['password']) ? gpc_cleanup($_POST['password']) : '';
$db_database =
isset($_POST['database']) ? gpc_cleanup($_POST['database']) : '';
$errors = array();
if (empty($db_hostname))
{
$errors[] = 'No Database hostname specified';
}
if (empty($db_username))
{
$errors[] = 'No Database username specified';
}
if (empty($db_database))
{
$errors[] = 'No Database database specified';
}
if (empty($adm_username)
|| !preg_match("/^[a-z0-9_]+([\\s]{1}[a-z0-9_]|[a-z0-9_])+$/i",
$adm_username))
{
$errors[] = 'Invalid admin username specified';
}
if (empty($adm_pswd))
{
$errors[] = 'Invalid admin password specified';
}
if ($adm_pswd !== $adm_cpswd)
{
$errors[] = 'The admin passwords did not match';
}
if (empty($adm_email))
{
$errors[] = 'Invalid admin email specified';
}
if (empty($owner)
|| !preg_match("/^[a-z0-9_]+([\\s]{1}[a-z0-9_]|[a-z0-9_])+$/i",
$owner))
{
$errors[] = 'Invalid game owner specified';
}
if (empty($game_name))
{
$errors[] = 'Invalid game name specified';
}
if (empty($description))
{
$errors[] = 'Invalid game description specified';
}
if (empty($paypal))
{
$errors[] = 'Invalid game PayPal specified';
}
if (count($errors) > 0)
{
echo "Installation failed.<br />
There were one or more problems with your input.<br />
<br />
<b>Problem(s) encountered:</b>
<ul>";
foreach ($errors as $error)
{
echo "<li><span style='color: red;'>{$error}</span></li>";
}
echo "</ul>
> <a href='installer.php?code=config'>Go back to config</a>";
require_once('installer_foot.php');
exit;
}
// Try to establish DB connection first...
echo 'Attempting DB connection...<br />';
$c = mysql_connect($db_hostname, $db_username, $db_password);
mysql_select_db($db_database, $c);
// Done, move on
echo '... Successful.<br />';
echo 'Writing game config file...<br />';
echo 'Write DB Connector...<br />';
$code = md5(rand(1, 100000000000));
if (file_exists("mysql.php"))
{
unlink("mysql.php");
}
$e_db_hostname = addslashes($db_hostname);
$e_db_username = addslashes($db_username);
$e_db_password = addslashes($db_password);
$e_db_database = addslashes($db_database);
$config_file =
<<<EOF
<?php
\$c = mysql_connect('{$e_db_hostname}', '{$e_db_username}', '{$e_db_password}') or die(mysql_error());
mysql_select_db('{$e_db_database}', \$c);
EOF;
$f = fopen('mysql.php', 'w');
fwrite($f, $config_file);
fclose($f);
echo '... file written.<br />';
echo 'Writing base database schema...<br />';
$fo = fopen("dbdata.sql", "r");
$query = '';
$lines = explode("\n", fread($fo, 1024768));
fclose($fo);
foreach ($lines as $line)
{
if (!(strpos($line, "--") === 0) && trim($line) != '')
{
$query .= $line;
if (!(strpos($line, ";") === FALSE))
{
mysql_query($query);
$query = '';
}
}
}
echo '... done.<br />';
echo 'Writing game configuration...<br />';
$ins_username =
mysql_real_escape_string(
htmlentities($adm_username, ENT_QUOTES, 'ISO-8859-1'), $c);
$salt = generate_pass_salt();
$e_salt = mysql_real_escape_string($salt, $c);
$encpsw = encode_password($adm_pswd, $salt);
$e_encpsw = mysql_real_escape_string($encpsw, $c);
$ins_email = mysql_real_escape_string($adm_email, $c);
$IP = mysql_real_escape_string($_SERVER['REMOTE_ADDR'], $c);
$ins_game_name = htmlentities($game_name, ENT_QUOTES, 'ISO-8859-1');
$ins_game_desc =
nl2br(htmlentities($description, ENT_QUOTES, 'ISO-8859-1'));
$ins_game_owner = htmlentities($owner, ENT_QUOTES, 'ISO-8859-1');
$ins_game_id1name =
htmlentities($adm_username, ENT_QUOTES, 'ISO-8859-1');
mysql_query(
"INSERT INTO `users`
(`username`, `login_name`, `userpass`, `level`, `money`,
`crystals`, `donatordays`, `user_level`, `energy`, `maxenergy`,
`will`, `maxwill`, `brave`, `maxbrave`, `hp`, `maxhp`, `location`,
`gender`, `signedup`, `email`, `bankmoney`, `lastip`,
`pass_salt`)
VALUES ('{$ins_username}', '{$ins_username}', '{$e_encpsw}', 1,
100, 0, 0, 2, 12, 12, 100, 100, 5, 5, 100, 100, 1,
'{$adm_gender}', " . time()
. ", '{$ins_email}', -1, '$IP',
'{$e_salt}')", $c) or die(mysql_error());
$i = mysql_insert_id($c);
mysql_query(
"INSERT INTO `userstats`
VALUES($i, 10, 10, 10, 10, 10)", $c);
$gamename_files =
array('authenticate.php', 'donator.php', 'explore.php',
'gamerules.php', 'header.php', 'helptutorial.php',
'loggedin.php', 'login.php', 'new_staff.php',
'register.php', 'voting.php');
$gameowner_files = array('header.php', 'login.php');
$paypal_files = array('donator.php', 'willpotion.php');
$gamedesc_files = array('login.php');
$id1_files = array('gamerules.php');
$cron_files =
array('crons/cron_day.php', 'crons/cron_fivemins.php',
'crons/cron_hour.php', 'crons/cron_minute.php');
foreach ($gamename_files as $file)
{
file_update($file, '{GAME_NAME}', $ins_game_name);
}
foreach ($gameowner_files as $file)
{
file_update($file, '{GAME_OWNER}', $ins_game_owner);
}
foreach ($paypal_files as $file)
{
file_update($file, '{PAYPAL}', $paypal);
}
foreach ($gamedesc_files as $file)
{
file_update($file, '{GAME_DESCRIPTION}', $ins_game_desc);
}
foreach ($id1_files as $file)
{
file_update($file, '{ID1_NAME}', $ins_game_id1name);
}
foreach ($cron_files as $file)
{
file_update($file, '{CRON_CODE}', $code);
}
echo '... Done.<br />';
$path = dirname($_SERVER['SCRIPT_FILENAME']);
echo "
<h2>Installation Complete!</h2>
<hr />
<h3>Cron Info</h3>
<br />
This is the cron info you need for section <b>1.2 Cronjobs</b> of the installation instructions.<br />
<pre>
*/5 * * * * php $path/crons/cron_fivemins.php $code
* * * * * php $path/crons/cron_minute.php $code
0 * * * * php $path/crons/cron_hour.php $code
0 0 * * * php $path/crons/cron_day.php $code
</pre>
";
echo "<h3>Installer Security</h3>
Attempting to lock installer... ";
echo "Attempting to lock installer... ";
@touch('./installer.lock');
$success2 = file_exists('installer.lock');
echo "<span style='color: "
. ($success2 ? "green;'>Succeeded" : "red;'>Failed")
. "</span><br />";
if ($success2)
{
echo "<span style='font-weight: bold;'>"
. "You should now remove dbdata.sql, installer.php, installer_foot.php and installer_home.php from your server."
. "</span>";
}
else
{
echo "<span style='font-weight: bold; font-size: 20pt;'>"
. "YOU MUST REMOVE dbdata.sql, installer.php, "
. "installer_foot.php and installer_home.php from your server.<br />"
. "Failing to do so will allow other people "
. "to run the installer again and potentially "
. "mess up your game entirely." . "</span>";
}
}
function file_update($file, $from, $to)
{
$fct = file_get_contents($file);
$fct = str_replace($from, $to, $fct);
$fh = fopen($file, 'w');
if ($fh !== false)
{
fwrite($fh, $fct);
fclose($fh);
}
}
//thx to http://www.phpit.net/code/valid-email/ for valid_email
function valid_email($email)
{
// First, we check that there's one @ symbol, and that the lengths are right
if (preg_match("/^[^@]{1,64}@[^@]{1,255}$/s", $email) == 0)
{
// Email invalid because wrong number of characters in one section, or wrong number of @ symbols.
return false;
}
// Split it into sections to make life easier
$email_array = explode("@", $email);
$local_array = explode(".", $email_array[0]);
for ($i = 0; $i < sizeof($local_array); $i++)
{
if (preg_match(
"/^(([A-Za-z0-9!#$%&'*+\\/=?^_`{|}~-][A-Za-z0-9!#$%&'*+\\/=?^_`{|}~\.-]{0,63})|(\"[^(\\|\")]{0,62}\"))$/s",
$local_array[$i]) == 0)
{
return false;
}
}
if (preg_match("/^\[?[0-9\.]+\]?$/s", $email_array[1]) == 0)
{ // Check if domain is IP. If not, it should be valid domain name
$domain_array = explode(".", $email_array[1]);
if (sizeof($domain_array) < 2)
{
return false; // Not enough parts to domain
}
for ($i = 0; $i < sizeof($domain_array); $i++)
{
if (preg_match(
"/^(([A-Za-z0-9][A-Za-z0-9-]{0,61}[A-Za-z0-9])|([A-Za-z0-9]+))$/s",
$domain_array[$i]) == 0)
{
return false;
}
}
}
return true;
}
require_once('installer_foot.php');