forked from kestasjk/webDiplomacy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gamecreate.php
executable file
·167 lines (134 loc) · 5.13 KB
/
gamecreate.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
<?php
/*
Copyright (C) 2004-2010 Kestas J. Kuliukas
This file is part of webDiplomacy.
webDiplomacy is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
webDiplomacy 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 Affero General Public License
along with webDiplomacy. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @package Base
* @subpackage Forms
*/
require_once('header.php');
if ( $Misc->Panic )
{
libHTML::notice('Game creation disabled',
"Game creation has been temporarily disabled while we take care of an
unexpected problem. Please try again later, sorry for the inconvenience.");
}
if( !$User->type['User'] )
{
libHTML::notice('Not logged on',"Only a logged on user can create games, guests can't.
Please <a href='logon.php' class='light'>log on</a> to create your own games.");
}
libHTML::starthtml();
//print '<div class="content">';
if( isset($_REQUEST['newGame']) and is_array($_REQUEST['newGame']) )
{
try
{
$form = $_REQUEST['newGame']; // This makes $form look harmless when it is unsanitized; the parameters must all be sanitized
$input = array();
$required = array('variantID', 'name', 'password', 'passwordcheck', 'bet', 'potType', 'phaseMinutes', 'joinPeriod', 'anon', 'pressType');
foreach($required as $requiredName)
{
if ( isset($form[$requiredName]) )
{
$input[$requiredName] = $form[$requiredName];
}
else
{
throw new Exception('The variable "'.$requiredName.'" is needed to create a game, but was not entered.');
}
}
unset($required, $form);
$input['variantID']=(int)$input['variantID'];
if( !isset(Config::$variants[$input['variantID']]) )
throw new Exception("Variant ID given (".$input['variantID'].") doesn't represent a real variant.");
// If the name isn't unique or is too long the database will stop it
$input['name'] = $DB->escape($input['name']);
if ( !$input['name'] )
throw new Exception("No name entered.");
// This is hashed, so doesn't need validation
if ( $input['password'] != $input['passwordcheck'] )
{
throw new Exception("The two passwords entered don't match.");
}
$input['bet'] = (int) $input['bet'];
if ( $input['bet'] < 5 or $input['bet'] > $User->points )
{
throw new Exception((string)$input['bet']." is an invalid bet size.");
}
if ( $input['potType'] != 'Winner-takes-all' and $input['potType'] != 'Points-per-supply-center' )
{
throw new Exception('Invalid potType input given.');
}
$input['phaseMinutes'] = (int)$input['phaseMinutes'];
if ( $input['phaseMinutes'] < 5 or $input['phaseMinutes'] > 1440*10 )
{
throw new Exception("The phase value is too large or small; it must be between 5 minutes and 10 days.");
}
$input['joinPeriod'] = (int)$input['joinPeriod'];
if ( $input['joinPeriod'] < 5 or $input['joinPeriod'] > 1440*10 )
{
throw new Exception("Joining period value out of range.");
}
$input['anon'] = ( (strtolower($input['anon']) == 'yes') ? 'Yes' : 'No' );
switch($input['pressType']) {
case 'PublicPressOnly':
$input['pressType'] = 'PublicPressOnly';
break;
case 'NoPress':
$input['pressType'] = 'NoPress';
break;
case 'Regular': // Regular is the default
default:
$input['pressType'] = 'Regular';
}
// Create Game record & object
require_once('gamemaster/game.php');
$Game = processGame::create($input['variantID'], $input['name'], $input['password'], $input['bet'], $input['potType'], $input['phaseMinutes'], $input['joinPeriod'], $input['anon'], $input['pressType']);
// Create first Member record & object
processMember::create($User->id, $input['bet']);
$Game->Members->joinedRedirect();
}
catch(Exception $e)
{
print '<div class="content">';
print '<p class="notice">'.$e->getMessage().'</p>';
print '</div">';
libHTML::pagebreak();
}
}
if ( $User->points >= 5 )
{
$roundedDefault = round(($User->points/7)/10)*10;
if ($roundedDefault > 5 )
$defaultPoints = $roundedDefault;
else
$defaultPoints = 5;
}
else
{
print "You can't create a new game; you have fewer than 5".libHTML::points().", you only have ".$User->points.libHTML::points().".
You will always have at least 100 points, including the points that you have bet into active games, so if you want
to start a new game just wait until your other games have finished (<a href='points.php#minpoints' class='light'>read more</a>).";
print '</div>';
libHTML::footer();
}
if( isset($input) && isset($input['points']) )
$formPoints = $input['points'];
else
$formPoints = $defaultPoints;
require_once('locales/'.$User->locale.'/gamecreate.php');
print '</div>';
libHTML::footer();
?>