option('first-admin'); $shouldGeneratePassword = $this->option('generate-password'); $details = $this->gatherDetails($shouldGeneratePassword); $validator = Validator::make($details, [ 'email' => ['required', 'email', 'min:5', new Unique('users', 'email')], 'name' => ['required', 'min:2'], 'password' => ['required_without:external_auth_id', Password::default()], 'external_auth_id' => ['required_without:password'], ]); if ($validator->fails()) { foreach ($validator->errors()->all() as $error) { $this->error($error); } return 1; } $adminRole = Role::getSystemRole('admin'); if ($firstAdminOnly) { $handled = $this->handleFirstAdminIfExists($userRepo, $details, $shouldGeneratePassword, $adminRole); if ($handled) { return 0; } } $user = $userRepo->createWithoutActivity($validator->validated()); $user->attachRole($adminRole); $user->email_confirmed = true; $user->save(); if ($shouldGeneratePassword) { $this->line($details['password']); } else { $this->info("Admin account with email \"{$user->email}\" successfully created!"); } return 0; } /** * Handle updates to the first admin if exists. * Returns true if the action has been handled (user updated or already a non-default admin user) otherwise * returns false if no action has been taken, and we therefore need to proceed with a normal account creation. */ protected function handleFirstAdminIfExists(UserRepo $userRepo, array $data, bool $generatePassword, Role $adminRole): bool { $defaultAdmin = $userRepo->getByEmail('admin@admin.com'); if ($defaultAdmin && $defaultAdmin->hasSystemRole('admin')) { $userRepo->updateWithoutActivity($defaultAdmin, $data, true); if ($generatePassword) { $this->line($data['password']); } else { $this->info("The default admin user has been updated with the provided details!"); } return true; } else if ($adminRole->users()->count() > 0) { $this->warn('Non-default admin user already exists. Skipping creation of new admin user.'); return true; } return false; } protected function gatherDetails(bool $generatePassword): array { $details = $this->snakeCaseOptions(); if (empty($details['email'])) { $details['email'] = $this->ask('Please specify an email address for the new admin user'); } if (empty($details['name'])) { $details['name'] = $this->ask('Please specify a name for the new admin user'); } if (empty($details['password'])) { if (empty($details['external_auth_id'])) { if ($generatePassword) { $details['password'] = Str::random(32); } else { $details['password'] = $this->ask('Please specify a password for the new admin user (8 characters min)'); } } else { $details['password'] = Str::random(32); } } return $details; } protected function snakeCaseOptions(): array { $returnOpts = []; foreach ($this->options() as $key => $value) { $returnOpts[str_replace('-', '_', $key)] = $value; } return $returnOpts; } }