63 lines
1.5 KiB
PHP
63 lines
1.5 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Console\Commands;
|
||
|
|
||
|
use Illuminate\Console\Command;
|
||
|
use App\Models\ApiKey;
|
||
|
|
||
|
class GenerateApiKey extends Command
|
||
|
{
|
||
|
/**
|
||
|
* Error messages
|
||
|
*/
|
||
|
const MESSAGE_ERROR_INVALID_NAME_FORMAT = 'Invalid name. Must be lowercase alpha & hyphens less than 255 char.';
|
||
|
const MESSAGE_ERROR_NAME_ALREADY_USED = 'Name is unavailable.';
|
||
|
/**
|
||
|
* The name and signature of the console command.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $signature = 'apikey:generate {name}';
|
||
|
/**
|
||
|
* The console command description.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $description = 'Generate a new API key';
|
||
|
/**
|
||
|
* Execute the console command.
|
||
|
*/
|
||
|
public function handle()
|
||
|
{
|
||
|
$name = $this->argument('name');
|
||
|
$error = $this->validateName($name);
|
||
|
if ($error) {
|
||
|
$this->error($error);
|
||
|
return;
|
||
|
}
|
||
|
$apiKey = new ApiKey;
|
||
|
$apiKey->name = $name;
|
||
|
$apiKey->key = ApiKey::generate();
|
||
|
$apiKey->save();
|
||
|
$this->info('API key created');
|
||
|
$this->info('Name: ' . $apiKey->name);
|
||
|
$this->info('Key: ' . $apiKey->key);
|
||
|
}
|
||
|
/**
|
||
|
* Validate name
|
||
|
*
|
||
|
* @param string $name
|
||
|
* @return string
|
||
|
*/
|
||
|
protected function validateName($name)
|
||
|
{
|
||
|
if (!ApiKey::isValidName($name)) {
|
||
|
return self::MESSAGE_ERROR_INVALID_NAME_FORMAT;
|
||
|
}
|
||
|
if (ApiKey::nameExists($name)) {
|
||
|
return self::MESSAGE_ERROR_NAME_ALREADY_USED;
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
}
|