mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-12 11:14:04 +00:00
97 lines
3 KiB
PHP
97 lines
3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Stancl\Tenancy;
|
|
|
|
use Illuminate\Cache\CacheManager;
|
|
use Illuminate\Queue\Events\JobProcessing;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Stancl\Tenancy\TenancyBootstrappers\FilesystemTenancyBootstrapper;
|
|
use Stancl\Tenancy\Contracts\Tenant;
|
|
|
|
class TenancyServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$this->mergeConfigFrom(__DIR__ . '/../assets/config.php', 'tenancy');
|
|
|
|
$this->app->bind(Contracts\UniqueIdentifierGenerator::class, $this->app['config']['tenancy.id_generator']);
|
|
$this->app->singleton(DatabaseManager::class);
|
|
$this->app->singleton(Tenancy::class);
|
|
$this->app->extend(Tenancy::class, function (Tenancy $tenancy) {
|
|
foreach ($this->app['config']['tenancy.features'] as $feature) {
|
|
$this->app[$feature]->bootstrap($tenancy);
|
|
}
|
|
|
|
return $tenancy;
|
|
});
|
|
$this->app->bind(Tenant::class, function ($app) {
|
|
return $app[Tenancy::class]->tenant;
|
|
});
|
|
|
|
foreach ($this->app['config']['tenancy.bootstrappers'] as $bootstrapper) {
|
|
$this->app->singleton($bootstrapper);
|
|
}
|
|
|
|
$this->app->singleton(Commands\Migrate::class, function ($app) {
|
|
return new Commands\Migrate($app['migrator'], $app[DatabaseManager::class]);
|
|
});
|
|
$this->app->singleton(Commands\Rollback::class, function ($app) {
|
|
return new Commands\Rollback($app['migrator'], $app[DatabaseManager::class]);
|
|
});
|
|
$this->app->singleton(Commands\Seed::class, function ($app) {
|
|
return new Commands\Seed($app['db'], $app[DatabaseManager::class]);
|
|
});
|
|
|
|
$this->app->bind('globalCache', function ($app) {
|
|
return new CacheManager($app);
|
|
});
|
|
|
|
$this->app->register(TenantRouteServiceProvider::class);
|
|
}
|
|
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
$this->commands([
|
|
Commands\Run::class,
|
|
Commands\Seed::class,
|
|
Commands\Install::class,
|
|
Commands\Migrate::class,
|
|
Commands\Rollback::class,
|
|
Commands\TenantList::class,
|
|
Commands\MigrateFresh::class,
|
|
]);
|
|
|
|
$this->publishes([
|
|
__DIR__ . '/../assets/config.php' => config_path('tenancy.php'),
|
|
], 'config');
|
|
|
|
$this->publishes([
|
|
__DIR__ . '/../assets/migrations/' => database_path('migrations'),
|
|
], 'migrations');
|
|
|
|
$this->loadRoutesFrom(__DIR__ . '/routes.php');
|
|
|
|
$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;
|
|
});
|
|
}
|
|
}
|