tipo: modificación del cpanel y gitignore de la carpeta vendor
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace Laravel\Reverb\Jobs;
|
||||
|
||||
use Illuminate\Foundation\Bus\Dispatchable;
|
||||
use Laravel\Reverb\Contracts\ApplicationProvider;
|
||||
use Laravel\Reverb\Events\ConnectionPruned;
|
||||
use Laravel\Reverb\Loggers\Log;
|
||||
use Laravel\Reverb\Protocols\Pusher\Contracts\ChannelManager;
|
||||
|
||||
class PruneStaleConnections
|
||||
{
|
||||
use Dispatchable;
|
||||
|
||||
/**
|
||||
* Execute the job.
|
||||
*/
|
||||
public function handle(ChannelManager $channels): void
|
||||
{
|
||||
Log::info('Pruning Stale Connections');
|
||||
|
||||
app(ApplicationProvider::class)
|
||||
->all()
|
||||
->each(function ($application) use ($channels) {
|
||||
foreach ($channels->for($application)->connections() as $connection) {
|
||||
if (! $connection->isStale()) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$connection->send(json_encode([
|
||||
'event' => 'pusher:error',
|
||||
'data' => json_encode([
|
||||
'code' => 4201,
|
||||
'message' => 'Pong reply not received in time',
|
||||
]),
|
||||
]));
|
||||
|
||||
$channels
|
||||
->for($connection->app())
|
||||
->unsubscribeFromAll($connection->connection());
|
||||
|
||||
$connection->disconnect();
|
||||
|
||||
Log::info('Connection Pruned', $connection->id());
|
||||
|
||||
ConnectionPruned::dispatch($connection);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user