koel/app/Console/Commands/GenerateJWTSecret.php

45 lines
1,017 B
PHP
Raw Normal View History

2016-01-15 02:16:58 +00:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
2016-01-15 07:28:34 +00:00
use Illuminate\Support\Str;
2016-01-15 02:16:58 +00:00
class GenerateJWTSecret extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'koel:generate-jwt-secret';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Set the JWTAuth secret key used to sign the tokens';
/**
* Execute the console command.
2016-08-16 15:12:35 +00:00
*
2016-08-16 15:12:11 +00:00
* @throws \RuntimeException
2016-01-15 02:16:58 +00:00
*/
public function fire()
{
$key = Str::random(32);
$path = base_path('.env');
$content = file_get_contents($path);
if (strpos($content, 'JWT_SECRET=') !== false) {
file_put_contents($path, str_replace('JWT_SECRET=', "JWT_SECRET=$key", $content));
} else {
file_put_contents($path, $content.PHP_EOL."JWT_SECRET=$key");
}
2016-01-31 13:46:05 +00:00
$this->info('JWT secret key generated. Look for `JWT_SECRET` in .env.');
2016-01-15 02:16:58 +00:00
}
}