refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
70
app/Console/Commands/CreateAccount.php
Normal file
70
app/Console/Commands/CreateAccount.php
Normal file
@@ -0,0 +1,70 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Models\Account\Account;
|
||||
use Illuminate\Console\Command;
|
||||
use Illuminate\Console\ConfirmableTrait;
|
||||
|
||||
class CreateAccount extends Command
|
||||
{
|
||||
use ConfirmableTrait;
|
||||
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'account:create
|
||||
{--email= : Login email for the account.}
|
||||
{--password= : Password to set for the account.}
|
||||
{--firstname= : First name for the account.}
|
||||
{--lastname= : Last name for the account.}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Create a new account';
|
||||
|
||||
/**
|
||||
* Missing argument errors. Exposed for testing.
|
||||
*/
|
||||
const ERROR_MISSING_EMAIL = '! You must specify an email';
|
||||
const ERROR_MISSING_PASSWORD = '! You must specify a password';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
$email = $this->option('email');
|
||||
if (empty($email)) {
|
||||
$this->error($this::ERROR_MISSING_EMAIL);
|
||||
}
|
||||
|
||||
$password = $this->option('password');
|
||||
if (empty($password)) {
|
||||
$this->error($this::ERROR_MISSING_PASSWORD);
|
||||
}
|
||||
|
||||
$firstName = $this->option('firstname') ?? 'John';
|
||||
|
||||
$lastName = $this->option('lastname') ?? 'Doe';
|
||||
|
||||
if (empty($email) || empty($password)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if ($this->confirmToProceed('This will create a new user for '.$firstName.' '.$lastName.' with email '.$email)) {
|
||||
Account::createDefault($firstName, $lastName, $email, $password);
|
||||
|
||||
$this->info('| You can now sign in to your account:');
|
||||
$this->line('| username: '.$email);
|
||||
$this->line('| password: <hidden>');
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user