mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 18:34:04 +00:00
101 lines
3.6 KiB
PHP
101 lines
3.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Bootstrappers;
|
|
|
|
use Illuminate\Broadcasting\BroadcastManager;
|
|
use Illuminate\Config\Repository;
|
|
use Illuminate\Contracts\Broadcasting\Broadcaster;
|
|
use Illuminate\Foundation\Application;
|
|
use Stancl\Tenancy\Contracts\TenancyBootstrapper;
|
|
use Stancl\Tenancy\Contracts\Tenant;
|
|
use Stancl\Tenancy\Overrides\TenancyBroadcastManager;
|
|
|
|
class BroadcastingConfigBootstrapper implements TenancyBootstrapper
|
|
{
|
|
/**
|
|
* Tenant properties to be mapped to config (similarly to the TenantConfig feature).
|
|
*
|
|
* For example:
|
|
* [
|
|
* 'config.key.name' => 'tenant_property',
|
|
* ]
|
|
*/
|
|
public static array $credentialsMap = [];
|
|
|
|
public static string|null $broadcaster = null;
|
|
|
|
protected array $originalConfig = [];
|
|
protected BroadcastManager|null $originalBroadcastManager = null;
|
|
protected Broadcaster|null $originalBroadcaster = null;
|
|
|
|
public static array $mapPresets = [
|
|
'pusher' => [
|
|
'broadcasting.connections.pusher.key' => 'pusher_key',
|
|
'broadcasting.connections.pusher.secret' => 'pusher_secret',
|
|
'broadcasting.connections.pusher.app_id' => 'pusher_app_id',
|
|
'broadcasting.connections.pusher.options.cluster' => 'pusher_cluster',
|
|
],
|
|
'reverb' => [
|
|
'broadcasting.connections.reverb.key' => 'reverb_key',
|
|
'broadcasting.connections.reverb.secret' => 'reverb_secret',
|
|
'broadcasting.connections.reverb.app_id' => 'reverb_app_id',
|
|
'broadcasting.connections.reverb.options.cluster' => 'reverb_cluster',
|
|
],
|
|
'ably' => [
|
|
'broadcasting.connections.ably.key' => 'ably_key',
|
|
'broadcasting.connections.ably.public' => 'ably_public',
|
|
],
|
|
];
|
|
|
|
public function __construct(
|
|
protected Repository $config,
|
|
protected Application $app
|
|
) {
|
|
static::$broadcaster ??= $config->get('broadcasting.default');
|
|
static::$credentialsMap = array_merge(static::$credentialsMap, static::$mapPresets[static::$broadcaster] ?? []);
|
|
}
|
|
|
|
public function bootstrap(Tenant $tenant): void
|
|
{
|
|
$this->originalBroadcastManager = $this->app->make(BroadcastManager::class);
|
|
$this->originalBroadcaster = $this->app->make(Broadcaster::class);
|
|
|
|
$this->setConfig($tenant);
|
|
|
|
// Make BroadcastManager resolve to a custom BroadcastManager which makes the broadcasters use the tenant credentials
|
|
$this->app->extend(BroadcastManager::class, function (BroadcastManager $broadcastManager) {
|
|
return new TenancyBroadcastManager($this->app);
|
|
});
|
|
}
|
|
|
|
public function revert(): void
|
|
{
|
|
// Change the BroadcastManager and Broadcaster singletons back to what they were before initializing tenancy
|
|
$this->app->singleton(BroadcastManager::class, fn (Application $app) => $this->originalBroadcastManager);
|
|
$this->app->singleton(Broadcaster::class, fn (Application $app) => $this->originalBroadcaster);
|
|
|
|
$this->unsetConfig();
|
|
}
|
|
|
|
protected function setConfig(Tenant $tenant): void
|
|
{
|
|
foreach (static::$credentialsMap as $configKey => $storageKey) {
|
|
$override = $tenant->$storageKey;
|
|
|
|
if (array_key_exists($storageKey, $tenant->getAttributes())) {
|
|
$this->originalConfig[$configKey] ??= $this->config->get($configKey);
|
|
|
|
$this->config->set($configKey, $override);
|
|
}
|
|
}
|
|
}
|
|
|
|
protected function unsetConfig(): void
|
|
{
|
|
foreach ($this->originalConfig as $key => $value) {
|
|
$this->config->set($key, $value);
|
|
}
|
|
}
|
|
}
|