2016-01-17 02:42:46 +00:00
|
|
|
<?php
|
2016-01-20 20:56:40 +00:00
|
|
|
/**
|
2016-01-20 21:05:16 +00:00
|
|
|
* Pterodactyl - Panel
|
2017-01-24 22:57:08 +00:00
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
2016-01-20 20:56:40 +00:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2016-01-17 02:42:46 +00:00
|
|
|
namespace Pterodactyl\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
2017-06-11 03:28:44 +00:00
|
|
|
use Pterodactyl\Repositories\oldUserRepository;
|
2016-01-17 02:42:46 +00:00
|
|
|
|
|
|
|
class MakeUser extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2016-10-12 23:02:15 +00:00
|
|
|
protected $signature = 'pterodactyl:user
|
2017-01-22 13:47:09 +00:00
|
|
|
{--firstname= : First name to use for this account.}
|
|
|
|
{--lastname= : Last name to use for this account.}
|
|
|
|
{--username= : Username to use for this account.}
|
2016-10-12 23:02:15 +00:00
|
|
|
{--email= : Email address to use for this account.}
|
|
|
|
{--password= : Password to assign to the user.}
|
|
|
|
{--admin= : Boolean flag for if user should be an admin.}';
|
2016-01-17 02:42:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Create a user within the panel.';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new command instance.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2017-01-22 13:47:09 +00:00
|
|
|
$data['name_first'] = is_null($this->option('firstname')) ? $this->ask('First Name') : $this->option('firstname');
|
|
|
|
$data['name_last'] = is_null($this->option('lastname')) ? $this->ask('Last Name') : $this->option('lastname');
|
|
|
|
$data['username'] = is_null($this->option('username')) ? $this->ask('Username') : $this->option('username');
|
|
|
|
$data['email'] = is_null($this->option('email')) ? $this->ask('Email') : $this->option('email');
|
|
|
|
$data['password'] = is_null($this->option('password')) ? $this->secret('Password') : $this->option('password');
|
2016-10-12 23:02:15 +00:00
|
|
|
$password_confirmation = is_null($this->option('password')) ? $this->secret('Confirm Password') : $this->option('password');
|
2016-01-17 02:42:46 +00:00
|
|
|
|
2017-01-22 13:47:09 +00:00
|
|
|
if ($data['password'] !== $password_confirmation) {
|
2016-01-17 02:42:46 +00:00
|
|
|
return $this->error('The passwords provided did not match!');
|
|
|
|
}
|
|
|
|
|
2017-01-22 13:47:09 +00:00
|
|
|
$data['root_admin'] = is_null($this->option('admin')) ? $this->confirm('Is this user a root administrator?') : $this->option('admin');
|
2016-01-17 02:42:46 +00:00
|
|
|
|
|
|
|
try {
|
2017-06-11 03:28:44 +00:00
|
|
|
$user = new oldUserRepository;
|
2017-01-22 13:47:09 +00:00
|
|
|
$user->create($data);
|
2016-12-07 22:46:38 +00:00
|
|
|
|
2016-01-17 02:42:46 +00:00
|
|
|
return $this->info('User successfully created.');
|
|
|
|
} catch (\Exception $ex) {
|
|
|
|
return $this->error($ex->getMessage());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|