Add command line ability to create user
This commit is contained in:
parent
8613e05a72
commit
d14b9ff83c
2 changed files with 62 additions and 0 deletions
61
app/Console/Commands/MakeUser.php
Normal file
61
app/Console/Commands/MakeUser.php
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Pterodactyl\Console\Commands;
|
||||||
|
|
||||||
|
use Hash;
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
|
||||||
|
use Pterodactyl\Repositories\UserRepository;
|
||||||
|
|
||||||
|
class MakeUser extends Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'pterodactyl:user';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Create a user within the panel.';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new command instance.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
*
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
$email = $this->ask('Email');
|
||||||
|
$password = $this->secret('Password');
|
||||||
|
$password_confirmation = $this->secret('Confirm Password');
|
||||||
|
|
||||||
|
if ($password !== $password_confirmation) {
|
||||||
|
return $this->error('The passwords provided did not match!');
|
||||||
|
}
|
||||||
|
|
||||||
|
$admin = $this->confirm('Is this user a root administrator?');
|
||||||
|
|
||||||
|
try {
|
||||||
|
$user = new UserRepository;
|
||||||
|
$user->create($email, $password, $admin);
|
||||||
|
return $this->info('User successfully created.');
|
||||||
|
} catch (\Exception $ex) {
|
||||||
|
return $this->error($ex->getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -14,6 +14,7 @@ class Kernel extends ConsoleKernel
|
||||||
*/
|
*/
|
||||||
protected $commands = [
|
protected $commands = [
|
||||||
\Pterodactyl\Console\Commands\Inspire::class,
|
\Pterodactyl\Console\Commands\Inspire::class,
|
||||||
|
\Pterodactyl\Console\Commands\MakeUser::class,
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue