mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-06 00:34:05 +00:00
* Test that `migrate:fresh` deletes tenant databases * Delete tenants on `migrate:fresh` * Fix code style (php-cs-fixer) * Add config key for dropping tenant databases on `migrate:fresh` * Add MigrateFreshOverride * Try to override `migrate:fresh` in TenancyServiceProvider * Update `migrate:fresh` test * Fix code style (php-cs-fixer) * Drop tenant databases by default * Change `migrate:fresh` test to test if the tenant DBs are dropped by default * Override `migrate:fresh` by extending `FreshCommand` in TenancyServiceProvider * Update MigrateFreshOverride * Fix code style (php-cs-fixer) * Fix commands test * Simplify handle method * Fix code style (php-cs-fixer) * Don't drop tenant DBs on migrate:fresh by default * Change command overriding * Update migrate:fresh test * always register MigrateFreshOverride * misc Co-authored-by: PHP CS Fixer <phpcsfixer@example.com> Co-authored-by: Samuel Štancl <samuel.stancl@gmail.com>
145 lines
5 KiB
PHP
145 lines
5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy;
|
|
|
|
use Illuminate\Cache\CacheManager;
|
|
use Illuminate\Database\Console\Migrations\FreshCommand;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper;
|
|
use Stancl\Tenancy\Contracts\Domain;
|
|
use Stancl\Tenancy\Contracts\Tenant;
|
|
use Stancl\Tenancy\Enums\LogMode;
|
|
use Stancl\Tenancy\Events\Contracts\TenancyEvent;
|
|
use Stancl\Tenancy\Resolvers\DomainTenantResolver;
|
|
|
|
class TenancyServiceProvider extends ServiceProvider
|
|
{
|
|
/* Register services. */
|
|
public function register(): void
|
|
{
|
|
$this->mergeConfigFrom(__DIR__ . '/../assets/config.php', 'tenancy');
|
|
|
|
$this->app->singleton(Database\DatabaseManager::class);
|
|
|
|
// Make sure Tenancy is stateful.
|
|
$this->app->singleton(Tenancy::class);
|
|
|
|
// Make sure features are bootstrapped as soon as Tenancy is instantiated.
|
|
$this->app->extend(Tenancy::class, function (Tenancy $tenancy) {
|
|
foreach ($this->app['config']['tenancy.features'] ?? [] as $feature) {
|
|
$this->app[$feature]->bootstrap($tenancy);
|
|
}
|
|
|
|
return $tenancy;
|
|
});
|
|
|
|
// Make it possible to inject the current tenant by typehinting the Tenant contract.
|
|
$this->app->bind(Tenant::class, function ($app) {
|
|
return $app[Tenancy::class]->tenant;
|
|
});
|
|
|
|
$this->app->bind(Domain::class, function () {
|
|
return DomainTenantResolver::$currentDomain;
|
|
});
|
|
|
|
// Make sure bootstrappers are stateful (singletons).
|
|
foreach ($this->app['config']['tenancy.bootstrappers'] ?? [] as $bootstrapper) {
|
|
if (method_exists($bootstrapper, '__constructStatic')) {
|
|
$bootstrapper::__constructStatic($this->app);
|
|
}
|
|
|
|
$this->app->singleton($bootstrapper);
|
|
}
|
|
|
|
// Bind the class in the tenancy.id_generator config to the UniqueIdentifierGenerator abstract.
|
|
if (! is_null($this->app['config']['tenancy.id_generator'])) {
|
|
$this->app->bind(Contracts\UniqueIdentifierGenerator::class, $this->app['config']['tenancy.id_generator']);
|
|
}
|
|
|
|
$this->app->singleton(Commands\Migrate::class, function ($app) {
|
|
return new Commands\Migrate($app['migrator'], $app['events']);
|
|
});
|
|
$this->app->singleton(Commands\Rollback::class, function ($app) {
|
|
return new Commands\Rollback($app['migrator']);
|
|
});
|
|
$this->app->singleton(Commands\Seed::class, function ($app) {
|
|
return new Commands\Seed($app['db']);
|
|
});
|
|
|
|
$this->app->bind('globalCache', function ($app) {
|
|
return new CacheManager($app);
|
|
});
|
|
}
|
|
|
|
/* Bootstrap services. */
|
|
public function boot(): void
|
|
{
|
|
$this->commands([
|
|
Commands\Run::class,
|
|
Commands\Link::class,
|
|
Commands\Seed::class,
|
|
Commands\Install::class,
|
|
Commands\Migrate::class,
|
|
Commands\Rollback::class,
|
|
Commands\TenantList::class,
|
|
Commands\TenantDump::class,
|
|
Commands\MigrateFresh::class,
|
|
Commands\Down::class,
|
|
Commands\Up::class,
|
|
]);
|
|
|
|
$this->app->extend(FreshCommand::class, function () {
|
|
return new Commands\MigrateFreshOverride;
|
|
});
|
|
|
|
$this->publishes([
|
|
__DIR__ . '/../assets/config.php' => config_path('tenancy.php'),
|
|
], 'config');
|
|
|
|
$this->publishes([
|
|
__DIR__ . '/../assets/migrations/' => database_path('migrations'),
|
|
], 'migrations');
|
|
|
|
$this->publishes([
|
|
__DIR__ . '/../assets/impersonation-migrations/' => database_path('migrations'),
|
|
], 'impersonation-migrations');
|
|
|
|
$this->publishes([
|
|
__DIR__ . '/../assets/tenant_routes.stub.php' => base_path('routes/tenant.php'),
|
|
], 'routes');
|
|
|
|
$this->publishes([
|
|
__DIR__ . '/../assets/TenancyServiceProvider.stub.php' => app_path('Providers/TenancyServiceProvider.php'),
|
|
], 'providers');
|
|
|
|
if (config('tenancy.routes', true)) {
|
|
$this->loadRoutesFrom(__DIR__ . '/../assets/routes.php');
|
|
}
|
|
|
|
Event::listen('Stancl\\Tenancy\\Events\\*', function (string $name, array $data) {
|
|
$event = $data[0];
|
|
|
|
if ($event instanceof TenancyEvent) {
|
|
match (tenancy()->logMode()) {
|
|
LogMode::SILENT => tenancy()->logEvent($event),
|
|
LogMode::INSTANT => dump($event), // todo1 perhaps still log
|
|
default => null,
|
|
};
|
|
}
|
|
});
|
|
|
|
$this->app->singleton('globalUrl', function ($app) {
|
|
if ($app->bound(FilesystemTenancyBootstrapper::class)) {
|
|
$instance = clone $app['url'];
|
|
$instance->setAssetRoot($app[FilesystemTenancyBootstrapper::class]->originalPaths['asset_url']);
|
|
} else {
|
|
$instance = $app['url'];
|
|
}
|
|
|
|
return $instance;
|
|
});
|
|
}
|
|
}
|