69 lines
2.2 KiB
PHP
69 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* Pterodactyl - Panel
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
*
|
|
* This software is licensed under the terms of the MIT license.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
namespace Pterodactyl\Console\Commands\User;
|
|
|
|
use Illuminate\Console\Command;
|
|
use Pterodactyl\Services\Users\UserCreationService;
|
|
|
|
class MakeUserCommand extends Command
|
|
{
|
|
/**
|
|
* @var \Pterodactyl\Services\Users\UserCreationService
|
|
*/
|
|
protected $creationService;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $description = 'Creates a user on the system via the CLI.';
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
protected $signature = 'p:user:make {--email=} {--username=} {--name-first=} {--name-last=} {--password=} {--admin=} {--no-password}';
|
|
|
|
/**
|
|
* MakeUserCommand constructor.
|
|
*/
|
|
public function __construct(UserCreationService $creationService)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->creationService = $creationService;
|
|
}
|
|
|
|
/**
|
|
* Handle command request to create a new user.
|
|
*
|
|
* @throws \Exception
|
|
* @throws \Pterodactyl\Exceptions\Model\DataValidationException
|
|
*/
|
|
public function handle()
|
|
{
|
|
$root_admin = $this->option('admin') ?? $this->confirm(trans('command/messages.user.ask_admin'));
|
|
$email = $this->option('email') ?? $this->ask(trans('command/messages.user.ask_email'));
|
|
$username = $this->option('username') ?? $this->ask(trans('command/messages.user.ask_username'));
|
|
|
|
if (is_null($password = $this->option('password')) && !$this->option('no-password')) {
|
|
$this->warn(trans('command/messages.user.ask_password_help'));
|
|
$this->line(trans('command/messages.user.ask_password_tip'));
|
|
$password = $this->secret(trans('command/messages.user.ask_password'));
|
|
}
|
|
|
|
$user = $this->creationService->handle(compact('email', 'username', 'password', 'root_admin'));
|
|
$this->table(['Field', 'Value'], [
|
|
['UUID', $user->uuid],
|
|
['Email', $user->email],
|
|
['Username', $user->username],
|
|
['Name', $user->name_first],
|
|
['Admin', $user->root_admin ? 'Yes' : 'No'],
|
|
]);
|
|
}
|
|
}
|