1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Bytesfield\KeyManager\Commands; |
4
|
|
|
|
5
|
|
|
use Illuminate\Console\Command; |
6
|
|
|
use Illuminate\Support\Facades\File; |
7
|
|
|
use Illuminate\Support\Str; |
8
|
|
|
|
9
|
|
|
class GenerateEncryptionKeyCommand extends Command |
10
|
|
|
{ |
11
|
|
|
protected const ENCRYPTION_KEY_NAME = 'API_ENCRYPTION_KEY'; |
12
|
|
|
|
13
|
|
|
protected string $envFile = '.env'; |
|
|
|
|
14
|
|
|
|
15
|
|
|
/** |
16
|
|
|
* The name and signature of the console command. |
17
|
|
|
* |
18
|
|
|
* @var string |
19
|
|
|
*/ |
20
|
|
|
protected $signature = 'encryption:generate'; |
21
|
|
|
|
22
|
|
|
/** |
23
|
|
|
* The console command description. |
24
|
|
|
* |
25
|
|
|
* @var string |
26
|
|
|
*/ |
27
|
|
|
protected $description = 'Generates new encryption key for api credentials'; |
28
|
|
|
|
29
|
|
|
/** |
30
|
|
|
* Execute the console command. |
31
|
|
|
* |
32
|
|
|
* @throws \Exception |
33
|
|
|
*/ |
34
|
|
|
public function handle(): void |
35
|
|
|
{ |
36
|
|
|
if (app()->environment() === 'testing') { |
37
|
|
|
$this->envFile = '.env.testing'; |
38
|
|
|
} |
39
|
|
|
|
40
|
|
|
if (! File::exists($this->envFile)) { |
41
|
|
|
exec('cp .env.example '.$this->envFile); |
42
|
|
|
exec('echo "'.self::ENCRYPTION_KEY_NAME.'=">>'.$this->envFile); |
43
|
|
|
} |
44
|
|
|
|
45
|
|
|
if (! config('keymanager.api_encryption_key')) { |
46
|
|
|
exec('echo "'.self::ENCRYPTION_KEY_NAME.'=">>'.$this->envFile); |
47
|
|
|
} |
48
|
|
|
|
49
|
|
|
$envContents = File::get($this->envFile); |
50
|
|
|
$envVariablesArray = explode(PHP_EOL, $envContents); |
51
|
|
|
|
52
|
|
|
$filter = fn ($variable) => Str::contains($variable, self::ENCRYPTION_KEY_NAME); |
53
|
|
|
$envKeyValueToReplace = collect($envVariablesArray)->filter($filter)->first(); |
54
|
|
|
|
55
|
|
|
$newKey = \bin2hex(\random_bytes(32)); |
56
|
|
|
$newEncryptionKey = self::ENCRYPTION_KEY_NAME.'='.$newKey; |
57
|
|
|
|
58
|
|
|
$newContents = Str::replaceFirst($envKeyValueToReplace, $newEncryptionKey, $envContents); |
59
|
|
|
|
60
|
|
|
File::put($this->envFile, $newContents); |
61
|
|
|
$this->callSilently('config:clear'); |
62
|
|
|
|
63
|
|
|
$this->info('New api encryption key generated'); |
64
|
|
|
} |
65
|
|
|
} |
66
|
|
|
|