Skip to content

Commit b28fbba

Browse files
nunomaduroStyleCIBottaylorotwell
authored
[develop] Improves health checker (#171)
* Improves `vapor:health-check` command * Apply fixes from StyleCI * Update VaporHealthCheckCommand.php --------- Co-authored-by: StyleCI Bot <[email protected]> Co-authored-by: Taylor Otwell <[email protected]>
1 parent ed4f99b commit b28fbba

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

src/Console/Commands/VaporHealthCheckCommand.php

+37
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22

33
namespace Laravel\Vapor\Console\Commands;
44

5+
use Exception;
56
use Illuminate\Console\Command;
7+
use Illuminate\Support\Facades\Cache;
8+
use Illuminate\Support\Str;
69

710
class VaporHealthCheckCommand extends Command
811
{
@@ -34,6 +37,40 @@ class VaporHealthCheckCommand extends Command
3437
*/
3538
public function handle()
3639
{
40+
$this->ensureBaseConfigurationFilesWereHarmonized();
41+
42+
$this->ensureCacheIsWorking();
43+
3744
return $this->info('Health check complete!');
3845
}
46+
47+
/**
48+
* Ensure the configuration files were harmonized.
49+
*
50+
* @return void
51+
*/
52+
protected function ensureBaseConfigurationFilesWereHarmonized()
53+
{
54+
if (! file_exists($filename = __DIR__.'/../../../../framework/config/cache.php')) {
55+
return;
56+
}
57+
58+
$configuration = file_get_contents($filename);
59+
60+
if (! Str::contains($configuration, "'key' => env('NULL_AWS_ACCESS_KEY_ID')")) {
61+
throw new Exception(
62+
'Laravel 11 or later requires the latest version of Vapor CLI.'
63+
);
64+
}
65+
}
66+
67+
/**
68+
* Ensure cache calls are working as expected.
69+
*
70+
* @return void
71+
*/
72+
protected function ensureCacheIsWorking()
73+
{
74+
Cache::get('vapor-health-check');
75+
}
3976
}

0 commit comments

Comments
 (0)