From 4098b67eb7459f55b3234aada5401c606345ec61 Mon Sep 17 00:00:00 2001 From: Gautier DELEGLISE Date: Sun, 11 Aug 2024 13:48:44 +0200 Subject: [PATCH 1/2] :bug: quick start command without api installed --- src/Console/Commands/QuickStartCommand.php | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/Console/Commands/QuickStartCommand.php b/src/Console/Commands/QuickStartCommand.php index 780e3e5..0c41d89 100644 --- a/src/Console/Commands/QuickStartCommand.php +++ b/src/Console/Commands/QuickStartCommand.php @@ -3,6 +3,7 @@ namespace Lomkit\Rest\Console\Commands; use Illuminate\Console\Command; +use Illuminate\Filesystem\Filesystem; use Illuminate\Support\Str; use Lomkit\Rest\Console\ResolvesStubPath; @@ -41,9 +42,39 @@ public function handle() $this->setAppNamespace(); $this->updateApiRoutes(); + $this->uncommentApiRoutesFile(); + $this->info('Laravel Rest Api is ready. Type \'php artisan route:list\' to see your new routes !'); } + /** + * Uncomment the API routes file in the application bootstrap file. + * + * @return void + */ + protected function uncommentApiRoutesFile() + { + $appBootstrapPath = $this->laravel->bootstrapPath('app.php'); + + $content = file_get_contents($appBootstrapPath); + + if (str_contains($content, '// api: ')) { + (new Filesystem)->replaceInFile( + '// api: ', + 'api: ', + $appBootstrapPath, + ); + } elseif (str_contains($content, 'web: __DIR__.\'/../routes/web.php\',') && !str_contains($content, 'api: __DIR__.\'/../routes/api.php\',')) { + (new Filesystem)->replaceInFile( + 'web: __DIR__.\'/../routes/web.php\',', + 'web: __DIR__.\'/../routes/web.php\','.PHP_EOL.' api: __DIR__.\'/../routes/api.php\',', + $appBootstrapPath, + ); + } else { + $this->components->warn('Unable to automatically add API route definition to bootstrap file. API route file should be registered manually if you did not already run `php artisan install:api`.'); + } + } + /** * Update the User model namespace in the generated files. * From 4f82814f609f8e7f217fd5edb25a7e206151c437 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Sun, 11 Aug 2024 11:49:02 +0000 Subject: [PATCH 2/2] Apply fixes from StyleCI --- src/Console/Commands/QuickStartCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Console/Commands/QuickStartCommand.php b/src/Console/Commands/QuickStartCommand.php index 0c41d89..4baf622 100644 --- a/src/Console/Commands/QuickStartCommand.php +++ b/src/Console/Commands/QuickStartCommand.php @@ -59,13 +59,13 @@ protected function uncommentApiRoutesFile() $content = file_get_contents($appBootstrapPath); if (str_contains($content, '// api: ')) { - (new Filesystem)->replaceInFile( + (new Filesystem())->replaceInFile( '// api: ', 'api: ', $appBootstrapPath, ); } elseif (str_contains($content, 'web: __DIR__.\'/../routes/web.php\',') && !str_contains($content, 'api: __DIR__.\'/../routes/api.php\',')) { - (new Filesystem)->replaceInFile( + (new Filesystem())->replaceInFile( 'web: __DIR__.\'/../routes/web.php\',', 'web: __DIR__.\'/../routes/web.php\','.PHP_EOL.' api: __DIR__.\'/../routes/api.php\',', $appBootstrapPath,