mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 21:54:03 +00:00
53 lines
1.3 KiB
PHP
53 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy\Bootstrappers;
|
|
|
|
use Illuminate\Cache\CacheManager;
|
|
use Illuminate\Contracts\Foundation\Application;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Stancl\Tenancy\CacheManager as TenantCacheManager;
|
|
use Stancl\Tenancy\Contracts\TenancyBootstrapper;
|
|
use Stancl\Tenancy\Contracts\Tenant;
|
|
|
|
class CacheTenancyBootstrapper implements TenancyBootstrapper
|
|
{
|
|
protected ?CacheManager $originalCache = null;
|
|
|
|
public function __construct(
|
|
protected Application $app
|
|
) {
|
|
}
|
|
|
|
public function bootstrap(Tenant $tenant): void
|
|
{
|
|
$this->resetFacadeCache();
|
|
|
|
$this->originalCache = $this->originalCache ?? $this->app['cache'];
|
|
$this->app->extend('cache', function () {
|
|
return new TenantCacheManager($this->app);
|
|
});
|
|
}
|
|
|
|
public function revert(): void
|
|
{
|
|
$this->resetFacadeCache();
|
|
|
|
$this->app->extend('cache', function () {
|
|
return $this->originalCache;
|
|
});
|
|
|
|
$this->originalCache = null;
|
|
}
|
|
|
|
/**
|
|
* This wouldn't be necessary, but is needed when a call to the
|
|
* facade has been made prior to bootstrapping tenancy. The
|
|
* facade has its own cache, separate from the container.
|
|
*/
|
|
public function resetFacadeCache(): void
|
|
{
|
|
Cache::clearResolvedInstances();
|
|
}
|
|
}
|