File tree 1 file changed +37
-0
lines changed
1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace Laravel \Vapor \Console \Commands ;
4
4
5
+ use Exception ;
5
6
use Illuminate \Console \Command ;
7
+ use Illuminate \Support \Facades \Cache ;
8
+ use Illuminate \Support \Str ;
6
9
7
10
class VaporHealthCheckCommand extends Command
8
11
{
@@ -34,6 +37,40 @@ class VaporHealthCheckCommand extends Command
34
37
*/
35
38
public function handle ()
36
39
{
40
+ $ this ->ensureBaseConfigurationFilesWereHarmonized ();
41
+
42
+ $ this ->ensureCacheIsWorking ();
43
+
37
44
return $ this ->info ('Health check complete! ' );
38
45
}
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
+ }
39
76
}
You can’t perform that action at this time.
0 commit comments