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
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\Sprinkle\Account\Bakery;
use Illuminate\Database\Capsule\Manager as Capsule;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
use UserFrosting\System\Bakery\BaseCommand;
use UserFrosting\System\Bakery\DatabaseTest;
use UserFrosting\System\Database\Model\Migrations;
use UserFrosting\Sprinkle\Account\Database\Models\User;
use UserFrosting\Sprinkle\Account\Database\Models\Role;
use UserFrosting\Sprinkle\Account\Facades\Password;
/**
* Create root user CLI command.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class CreateAdminUser extends BaseCommand
{
use DatabaseTest;
/**
* @var string[] Migration dependencies for this command to work
*/
protected $dependencies = [
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\UsersTable',
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\RolesTable',
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\RoleUsersTable'
];
/**
* {@inheritDoc}
*/
protected function configure() {
$this->setName("create-admin")
->setDescription("Create the initial admin (root) user account");
}
/**
* {@inheritDoc}
*/
protected function execute(InputInterface $input, OutputInterface $output) {
$this->io->title("Root account setup");
// Need the database
try {
$this->io->writeln("<info>Testing database connection</info>", OutputInterface::VERBOSITY_VERBOSE);
$this->testDB();
$this->io->writeln("Ok", OutputInterface::VERBOSITY_VERBOSE);
} catch (\Exception $e) {
$this->io->error($e->getMessage());
exit(1);
}
// Need migration table
if (!Capsule::schema()->hasColumn('migrations', 'id')) {
$this->io->error("Migrations doesn't appear to have been run! Make sure the database is properly migrated by using the `php bakery migrate` command.");
exit(1);
}
// Make sure the required mirgations have been run
foreach ($this->dependencies as $migration) {
if (!Migrations::where('migration', $migration)->exists()) {
$this->io->error("Migration `$migration` doesn't appear to have been run! Make sure all migrations are up to date by using the `php bakery migrate` command.");
exit(1);
}
}
// Make sure that there are no users currently in the user table
// We setup the root account here so it can be done independent of the version check
if (User::count() > 0) {
$this->io->note("Table 'users' is not empty. Skipping root account setup. To set up the root account again, please truncate or drop the table and try again.");
} else {
$this->io->writeln("Please answer the following questions to create the root account:\n");
// Get the account details
$userName = $this->askUsername();
$email = $this->askEmail();
$firstName = $this->askFirstName();
$lastName = $this->askLastName();
$password = $this->askPassword();
// Ok, now we've got the info and we can create the new user.
$this->io->write("\n<info>Saving the root user details...</info>");
$rootUser = new User([
"user_name" => $userName,
"email" => $email,
"first_name" => $firstName,
"last_name" => $lastName,
"password" => Password::hash($password)
]);
$rootUser->save();
$defaultRoles = [
'user' => Role::where('slug', 'user')->first(),
'group-admin' => Role::where('slug', 'group-admin')->first(),
'site-admin' => Role::where('slug', 'site-admin')->first()
];
foreach ($defaultRoles as $slug => $role) {
if ($role) {
$rootUser->roles()->attach($role->id);
}
}
$this->io->success("Root user creation successful!");
}
}
/**
* Ask for the username
*
* @access protected
* @return void
*/
protected function askUsername() {
while (!isset($userName) || !$this->validateUsername($userName)) {
$userName = $this->io->ask("Choose a root username (1-50 characters, no leading or trailing whitespace)");
}
return $userName;
}
/**
* Validate the username.
*
* @access protected
* @param mixed $userName
* @return void
*/
protected function validateUsername($userName) {
// Validate length
if (strlen($userName) < 1 || strlen($userName) > 50) {
$this->io->error("Username must be between 1-50 characters");
return FALSE;
}
// Validate format
$options = [
'options' => [
'regexp' => "/^\S((.*\S)|)$/"
]
];
$validate = filter_var($userName, FILTER_VALIDATE_REGEXP, $options);
if (!$validate) {
$this->io->error("Username can't have any leading or trailing whitespace");
return FALSE;
}
return TRUE;
}
/**
* Ask for the email
*
* @access protected
* @return void
*/
protected function askEmail() {
while (!isset($email) || !$this->validateEmail($email)) {
$email = $this->io->ask("Enter a valid email address (1-254 characters, must be compatible with FILTER_VALIDATE_EMAIL)");
}
return $email;
}
/**
* Validate the email.
*
* @access protected
* @param mixed $email
* @return void
*/
protected function validateEmail($email) {
// Validate length
if (strlen($email) < 1 || strlen($email) > 254) {
$this->io->error("Email must be between 1-254 characters");
return FALSE;
}
// Validate format
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$this->io->error("Email must be compatible with FILTER_VALIDATE_EMAIL");
return FALSE;
}
return TRUE;
}
/**
* Ask for the first name
*
* @access protected
* @return void
*/
protected function askFirstName() {
while (!isset($firstName) || !$this->validateFirstName($firstName)) {
$firstName = $this->io->ask("Enter the user first name (1-20 characters)");
}
return $firstName;
}
/**
* validateFirstName function.
*
* @access protected
* @param mixed $name
* @return void
*/
protected function validateFirstName($firstName) {
// Validate length
if (strlen($firstName) < 1 || strlen($firstName) > 20) {
$this->io->error("First name must be between 1-20 characters");
return FALSE;
}
return TRUE;
}
/**
* Ask for the last name
*
* @access protected
* @return void
*/
protected function askLastName() {
while (!isset($lastName) || !$this->validateLastName($lastName)) {
$lastName = $this->io->ask("Enter the user last name (1-30 characters)");
}
return $lastName;
}
/**
* validateLastName function.
*
* @access protected
* @param mixed $lastName
* @return void
*/
protected function validateLastName($lastName) {
// Validate length
if (strlen($lastName) < 1 || strlen($lastName) > 30) {
$this->io->error("Last name must be between 1-30 characters");
return FALSE;
}
return TRUE;
}
/**
* Ask for the password
*
* @access protected
* @return void
*/
protected function askPassword() {
while (!isset($password) || !$this->validatePassword($password) || !$this->confirmPassword($password)) {
$password = $this->io->askHidden("Enter password (12-255 characters)");
}
return $password;
}
/**
* validatePassword function.
*
* @access protected
* @param mixed $password
* @return void
*/
protected function validatePassword($password) {
if (strlen($password) < 12 || strlen($password) > 255) {
$this->io->error("Password must be between 12-255 characters");
return FALSE;
}
return TRUE;
}
/**
* confirmPassword function.
*
* @access protected
* @param mixed $passwordToConfirm
* @return void
*/
protected function confirmPassword($passwordToConfirm) {
while (!isset($password)) {
$password = $this->io->askHidden("Please re-enter the chosen password");
}
return $this->validatePasswordConfirmation($password, $passwordToConfirm);
}
/**
* validatePasswordConfirmation function.
*
* @access protected
* @param mixed $password
* @param mixed $passwordToConfirm
* @return void
*/
protected function validatePasswordConfirmation($password, $passwordToConfirm) {
if ($password != $passwordToConfirm) {
$this->io->error("Passwords do not match, please try again.");
return FALSE;
}
return TRUE;
}
}
|