2019-03-01 19:05:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use App\User;
|
|
|
|
|
|
|
|
class UserCreate extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2021-01-24 22:43:37 +00:00
|
|
|
protected $signature = 'user:create {--name=} {--username=} {--email=} {--password=} {--is_admin=0} {--confirm_email=0}';
|
2019-03-01 19:05:19 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = 'Create a new user';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new command instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
2022-06-05 05:50:57 +00:00
|
|
|
{
|
2019-03-01 19:05:19 +00:00
|
|
|
$this->info('Creating a new user...');
|
|
|
|
|
2021-01-24 22:43:37 +00:00
|
|
|
$o = $this->options();
|
|
|
|
|
|
|
|
if( $o['name'] &&
|
|
|
|
$o['username'] &&
|
|
|
|
$o['email'] &&
|
|
|
|
$o['password']
|
|
|
|
) {
|
|
|
|
$user = new User;
|
|
|
|
$user->username = $o['username'];
|
|
|
|
$user->name = $o['name'];
|
|
|
|
$user->email = $o['email'];
|
|
|
|
$user->password = bcrypt($o['password']);
|
2023-05-15 12:15:09 +00:00
|
|
|
$user->is_admin = $o['is_admin'] == 'true';
|
2022-05-21 06:23:47 +00:00
|
|
|
$user->email_verified_at = $o['confirm_email'] ? now() : null;
|
2021-01-24 22:43:37 +00:00
|
|
|
$user->save();
|
|
|
|
|
|
|
|
$this->info('Successfully created user!');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-03-01 19:05:19 +00:00
|
|
|
$name = $this->ask('Name');
|
|
|
|
|
|
|
|
$username = $this->ask('Username');
|
|
|
|
|
|
|
|
if(User::whereUsername($username)->exists()) {
|
|
|
|
$this->error('Username already in use, please try again...');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$email = $this->ask('Email');
|
|
|
|
|
|
|
|
if(User::whereEmail($email)->exists()) {
|
|
|
|
$this->error('Email already in use, please try again...');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$password = $this->secret('Password');
|
|
|
|
$confirm = $this->secret('Confirm Password');
|
|
|
|
|
|
|
|
if($password !== $confirm) {
|
|
|
|
$this->error('Password mismatch, please try again...');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2022-06-05 05:49:54 +00:00
|
|
|
if (strlen($password) < 6) {
|
|
|
|
$this->error('Must be 6 or more characters, please try again...');
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2019-03-01 19:05:19 +00:00
|
|
|
$is_admin = $this->confirm('Make this user an admin?');
|
|
|
|
$confirm_email = $this->confirm('Manually verify email address?');
|
|
|
|
|
|
|
|
if($this->confirm('Are you sure you want to create this user?') &&
|
|
|
|
$username &&
|
|
|
|
$name &&
|
|
|
|
$email &&
|
|
|
|
$password
|
|
|
|
) {
|
|
|
|
$user = new User;
|
|
|
|
$user->username = $username;
|
|
|
|
$user->name = $name;
|
|
|
|
$user->email = $email;
|
|
|
|
$user->password = bcrypt($password);
|
|
|
|
$user->is_admin = $is_admin;
|
|
|
|
$user->email_verified_at = $confirm_email ? now() : null;
|
|
|
|
$user->save();
|
|
|
|
|
|
|
|
$this->info('Created new user!');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|