Skip to content

Instantly share code, notes, and snippets.

@joseluisq
Forked from krisanalfa/KeyGenerateCommand.php
Created August 31, 2016 22:19
Show Gist options
  • Save joseluisq/4c5a14de2a052cdd6cc4cfdaa8f2560b to your computer and use it in GitHub Desktop.
Save joseluisq/4c5a14de2a052cdd6cc4cfdaa8f2560b to your computer and use it in GitHub Desktop.
Lumen Key Generator Commands
<?php
namespace App\Console\Commands;
use Illuminate\Support\Str;
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
class KeyGenerateCommand extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $name = 'key:generate';
/**
* The console command description.
*
* @var string
*/
protected $description = "Set the application key";
/**
* Execute the console command.
*
* @return void
*/
public function fire()
{
$key = $this->getRandomKey();
if ($this->option('show')) {
return $this->line('<comment>'.$key.'</comment>');
}
$path = base_path('.env');
if (file_exists($path)) {
file_put_contents(
$path,
str_replace(env('APP_KEY'), $key, file_get_contents($path))
);
}
$this->info("Application key [$key] set successfully.");
}
/**
* Generate a random key for the application.
*
* @return string
*/
protected function getRandomKey()
{
return Str::random(32);
}
/**
* Get the console command options.
*
* @return array
*/
protected function getOptions()
{
return array(
array('show', null, InputOption::VALUE_NONE, 'Simply display the key instead of modifying files.'),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment