Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[11.x] Fixes install:broadcasting command #50550

Merged
merged 4 commits into from
Mar 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 19 additions & 7 deletions src/Illuminate/Foundation/Console/BroadcastingInstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,14 @@ public function handle()
$this->call('config:publish', ['name' => 'broadcasting']);

// Install channel routes file...
if (file_exists($broadcastingRoutesPath = $this->laravel->basePath('routes/channels.php')) &&
! $this->option('force')) {
$this->components->error('Broadcasting routes file already exists.');
} else {
if (! file_exists($broadcastingRoutesPath = $this->laravel->basePath('routes/channels.php')) || $this->option('force')) {
$this->components->info("Published 'channels' route file.");

copy(__DIR__.'/stubs/broadcasting-routes.stub', $broadcastingRoutesPath);
}

$this->uncommentChannelsRoutesFile();
$this->enableBroadcastServiceProvider();

// Install bootstrapping...
if (! file_exists($echoScriptPath = $this->laravel->resourcePath('js/echo.js'))) {
Expand Down Expand Up @@ -101,10 +99,24 @@ protected function uncommentChannelsRoutesFile()
'commands: __DIR__.\'/../routes/console.php\','.PHP_EOL.' channels: __DIR__.\'/../routes/channels.php\',',
$appBootstrapPath,
);
} else {
$this->components->warn('Unable to automatically add channel route definition to bootstrap file. Channel route file should be registered manually.');
}
}

return;
/**
* Uncomment the "BroadcastServiceProvider" in the application configuration.
*
* @return void
*/
protected function enableBroadcastServiceProvider()
{
$config = ($filesystem = new Filesystem)->get(app()->configPath('app.php'));

if (str_contains($config, '// App\Providers\BroadcastServiceProvider::class')) {
$filesystem->replaceInFile(
'// App\Providers\BroadcastServiceProvider::class',
'App\Providers\BroadcastServiceProvider::class',
app()->configPath('app.php'),
);
}
}

Expand Down
Loading