1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-10-27 20:32:28 +01:00

Add command line ability to create user

This commit is contained in:
Dane Everitt 2016-01-16 21:42:46 -05:00
parent 8613e05a72
commit d14b9ff83c
2 changed files with 62 additions and 0 deletions

View 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());
}
}
}

View File

@ -14,6 +14,7 @@ class Kernel extends ConsoleKernel
*/
protected $commands = [
\Pterodactyl\Console\Commands\Inspire::class,
\Pterodactyl\Console\Commands\MakeUser::class,
];
/**