Skip to content
Open
Show file tree
Hide file tree
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
20 changes: 20 additions & 0 deletions src/Tenancy.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,26 @@ public function end(): void
$this->initialized = false;
}

/**
* End tenancy and initialize it again for the current tenant.
*
* This can be helpful when changing "dependencies" of bootstrappers such as
* attributes of the current tenant that are only read once, during bootstrap().
*
* If tenancy is not initialized, this method is a no-op.
*/
public function reinitialize(): void
{
if ($this->tenant === null) {
return;
}

$tenant = $this->tenant;
$this->end();

$this->initialize($tenant);
}

/** @return TenancyBootstrapper[] */
public function getBootstrappers(): array
{
Expand Down
40 changes: 40 additions & 0 deletions tests/AutomaticModeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,33 @@
expect(tenant())->toBeNull();
});

test('reinitialize method does nothing in the central context', function () {
expect(tenancy()->initialized)->toBe(false);
expect(fn () => tenancy()->reinitialize())->not()->toThrow(\Throwable::class);
expect(tenancy()->initialized)->toBe(false);
});

test('reinitialize method runs bootstrappers again for the current tenant', function () {
config(['tenancy.bootstrappers' => [
ReinitBootstrapper::class,
]]);

tenancy()->initialize($tenant = Tenant::create(['reinit_bootstrapper_key' => 'foo']));

expect(tenant()->getKey())->toBe($tenant->getKey());
expect(app('tenancy_reinit_bootstrapper_key'))->toBe('foo');

$tenant->update(['reinit_bootstrapper_key' => 'bar']);

// Unchanged until we reinitialize...
expect(app('tenancy_reinit_bootstrapper_key'))->toBe('foo');

tenancy()->reinitialize();

expect(tenant()->getKey())->toBe($tenant->getKey());
expect(app('tenancy_reinit_bootstrapper_key'))->toBe('bar');
});

class MyBootstrapper implements TenancyBootstrapper
{
public function bootstrap(\Stancl\Tenancy\Contracts\Tenant $tenant): void
Expand All @@ -115,3 +142,16 @@ public function revert(): void
app()->instance('tenancy_ended', true);
}
}

class ReinitBootstrapper implements TenancyBootstrapper
{
public function bootstrap(\Stancl\Tenancy\Contracts\Tenant $tenant): void
{
app()->instance('tenancy_reinit_bootstrapper_key', $tenant->getAttribute('reinit_bootstrapper_key'));
}

public function revert(): void
{
app()->instance('tenancy_reinit_bootstrapper_key', null);
}
}
Loading