use BookStack\Auth\UserRepo;
use Illuminate\Console\Command;
+use Illuminate\Support\Facades\Validator;
+use Illuminate\Validation\Rules\Password;
+use Illuminate\Validation\Rules\Unique;
use Symfony\Component\Console\Command\Command as SymfonyCommand;
class CreateAdmin extends Command
*/
public function handle()
{
- $email = trim($this->option('email'));
- if (empty($email)) {
- $email = $this->ask('Please specify an email address for the new admin user');
- }
- if (mb_strlen($email) < 5 || !filter_var($email, FILTER_VALIDATE_EMAIL)) {
- $this->error('Invalid email address provided');
+ $details = $this->options();
- return SymfonyCommand::FAILURE;
+ if (empty($details['email'])) {
+ $details['email'] = $this->ask('Please specify an email address for the new admin user');
}
-
- if ($this->userRepo->getByEmail($email) !== null) {
- $this->error('A user with the provided email already exists!');
-
- return SymfonyCommand::FAILURE;
+ if (empty($details['name'])) {
+ $details['name'] = $this->ask('Please specify a name for the new admin user');
}
-
- $name = trim($this->option('name'));
- if (empty($name)) {
- $name = $this->ask('Please specify an name for the new admin user');
+ if (empty($details['password'])) {
+ $details['password'] = $this->ask('Please specify a password for the new admin user (8 characters min)');
}
- if (mb_strlen($name) < 2) {
- $this->error('Invalid name provided');
- return SymfonyCommand::FAILURE;
- }
+ $validator = Validator::make($details, [
+ 'email' => ['required', 'email', 'min:5', new Unique('users', 'email')],
+ 'name' => ['required', 'min:2'],
+ 'password' => ['required', Password::default()],
+ ]);
- $password = trim($this->option('password'));
- if (empty($password)) {
- $password = $this->secret('Please specify a password for the new admin user');
- }
- if (mb_strlen($password) < 5) {
- $this->error('Invalid password provided, Must be at least 5 characters');
+ if ($validator->fails()) {
+ foreach ($validator->errors()->all() as $error) {
+ $this->error($error);
+ }
return SymfonyCommand::FAILURE;
}
- $user = $this->userRepo->create(['email' => $email, 'name' => $name, 'password' => $password]);
+ $user = $this->userRepo->create($validator->validated());
$this->userRepo->attachSystemRole($user, 'admin');
$this->userRepo->downloadAndAssignUserAvatar($user);
$user->email_confirmed = true;