1
0
Files
breadcrumb-the-shire/lib/Service/User/UserGatewayFactory.php
2026-03-06 00:44:52 +01:00

81 lines
3.1 KiB
PHP

<?php
namespace MintyPHP\Service\User;
use MintyPHP\Service\Access\AccessServicesFactory;
use MintyPHP\Service\Access\PermissionGateway;
use MintyPHP\Service\Directory\DirectoryRepositoryFactory;
use MintyPHP\Service\Settings\SettingServicesFactory;
use MintyPHP\Service\Settings\SettingsAppGateway;
use MintyPHP\Service\Settings\SettingsDefaultsGateway;
use MintyPHP\Service\Settings\SettingsUserLifecycleGateway;
use MintyPHP\Service\Tenant\TenantScopeService;
class UserGatewayFactory
{
private ?SettingsDefaultsGateway $settingsDefaultsGateway = null;
private ?SettingsAppGateway $settingsAppGateway = null;
private ?SettingsUserLifecycleGateway $settingsUserLifecycleGateway = null;
private ?PermissionGateway $permissionGateway = null;
private ?UserSettingsGateway $userSettingsGateway = null;
private ?UserScopeGateway $userScopeGateway = null;
private ?UserDirectoryGateway $userDirectoryGateway = null;
private ?UserPermissionGateway $userPermissionGateway = null;
public function __construct(
private readonly AccessServicesFactory $accessServicesFactory,
private readonly SettingServicesFactory $settingServicesFactory,
private readonly TenantScopeService $tenantScopeService,
private readonly DirectoryRepositoryFactory $directoryRepositoryFactory,
) {
}
public function createUserSettingsGateway(): UserSettingsGateway
{
return $this->userSettingsGateway ??= new UserSettingsGateway(
$this->createSettingsDefaultsGateway(),
$this->createSettingsAppGateway(),
$this->createSettingsUserLifecycleGateway()
);
}
public function createUserScopeGateway(): UserScopeGateway
{
return $this->userScopeGateway ??= new UserScopeGateway($this->tenantScopeService);
}
public function createUserDirectoryGateway(): UserDirectoryGateway
{
return $this->userDirectoryGateway ??= new UserDirectoryGateway(
$this->directoryRepositoryFactory->createTenantRepository(),
$this->directoryRepositoryFactory->createRoleRepository(),
$this->directoryRepositoryFactory->createDepartmentRepository(),
);
}
public function createUserPermissionGateway(): UserPermissionGateway
{
return $this->userPermissionGateway ??= new UserPermissionGateway($this->createPermissionGateway());
}
private function createPermissionGateway(): PermissionGateway
{
return $this->permissionGateway ??= $this->accessServicesFactory->createPermissionGateway();
}
private function createSettingsDefaultsGateway(): SettingsDefaultsGateway
{
return $this->settingsDefaultsGateway ??= $this->settingServicesFactory->createSettingsDefaultsGateway();
}
private function createSettingsAppGateway(): SettingsAppGateway
{
return $this->settingsAppGateway ??= $this->settingServicesFactory->createSettingsAppGateway();
}
private function createSettingsUserLifecycleGateway(): SettingsUserLifecycleGateway
{
return $this->settingsUserLifecycleGateway ??= $this->settingServicesFactory->createSettingsUserLifecycleGateway();
}
}