Add a new Software-Produkte feature to the helpdesk module that syncs contract types (Create_SaaS_License=true) from BC OData into a local database table with a nightly scheduler job, providing a Grid.js list page and detail/edit page for managing custom product names. - DB migration 003: helpdesk_software_products table (code UNIQUE key) - BcODataGateway: FS_Contract_Types entity with SaaS filter + fallback - SoftwareProductRepository: upsert, listPaged, softDelete, updateName - SoftwareProductSyncService: fetch → upsert → soft-delete lifecycle - SoftwareProductSyncJobHandler: daily at 02:00 via scheduler platform - SoftwareProductService: web UI business logic with validation - Permission: helpdesk.software-products.manage (nav-gated) - List page: Grid.js with Code, BC Description, Name, Status columns - Detail page: Code/BC Description read-only, Name editable, PRG pattern - i18n: de + en translation keys Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
109 lines
5.5 KiB
PHP
109 lines
5.5 KiB
PHP
<?php
|
|
|
|
namespace MintyPHP\Module\Helpdesk;
|
|
|
|
use MintyPHP\App\AppContainer;
|
|
use MintyPHP\App\Container\ContainerRegistrar;
|
|
use MintyPHP\Http\SessionStoreInterface;
|
|
use MintyPHP\Module\Helpdesk\Service\BcODataGateway;
|
|
use MintyPHP\Module\Helpdesk\Service\BcSoapGateway;
|
|
use MintyPHP\Module\Helpdesk\Service\DebitorDetailService;
|
|
use MintyPHP\Module\Helpdesk\Service\DebitorSearchService;
|
|
use MintyPHP\Module\Helpdesk\Service\EffectiveHelpdeskSettingsService;
|
|
use MintyPHP\Module\Helpdesk\Service\HelpdeskOAuthTokenService;
|
|
use MintyPHP\Module\Helpdesk\Service\HelpdeskSettingsGateway;
|
|
use MintyPHP\Module\Helpdesk\Service\HelpdeskTenantSettingsGateway;
|
|
use MintyPHP\Module\Helpdesk\Repository\HelpdeskTenantSettingsRepository;
|
|
use MintyPHP\Module\Helpdesk\Repository\HelpdeskTokenRepository;
|
|
use MintyPHP\Module\Helpdesk\Service\SoftwareProductService;
|
|
use MintyPHP\Module\Helpdesk\Service\SoftwareProductSyncService;
|
|
use MintyPHP\Module\Helpdesk\Service\SystemRecommendationEngine;
|
|
use MintyPHP\Module\Helpdesk\Service\TicketCommunicationService;
|
|
use MintyPHP\Module\Helpdesk\Handler\SoftwareProductSyncJobHandler;
|
|
use MintyPHP\Module\Helpdesk\Repository\SoftwareProductRepository;
|
|
use MintyPHP\Service\Access\PermissionService;
|
|
use MintyPHP\Service\Settings\SettingServicesFactory;
|
|
use MintyPHP\Service\Settings\SettingsMetadataGateway;
|
|
|
|
final class HelpdeskContainerRegistrar implements ContainerRegistrar
|
|
{
|
|
public function register(AppContainer $container): void
|
|
{
|
|
$container->set(HelpdeskAuthorizationPolicy::class, static fn (AppContainer $c): HelpdeskAuthorizationPolicy => new HelpdeskAuthorizationPolicy(
|
|
$c->get(PermissionService::class)
|
|
));
|
|
|
|
$container->set(HelpdeskSettingsGateway::class, static fn (AppContainer $c): HelpdeskSettingsGateway => new HelpdeskSettingsGateway(
|
|
$c->get(SettingsMetadataGateway::class),
|
|
$c->get(SettingServicesFactory::class)->createSettingsCryptoGateway()
|
|
));
|
|
|
|
$container->set(HelpdeskTenantSettingsRepository::class, static fn (): HelpdeskTenantSettingsRepository => new HelpdeskTenantSettingsRepository());
|
|
|
|
$container->set(HelpdeskTenantSettingsGateway::class, static fn (AppContainer $c): HelpdeskTenantSettingsGateway => new HelpdeskTenantSettingsGateway(
|
|
$c->get(HelpdeskTenantSettingsRepository::class),
|
|
$c->get(SettingServicesFactory::class)->createSettingsCryptoGateway()
|
|
));
|
|
|
|
$container->set(EffectiveHelpdeskSettingsService::class, static fn (AppContainer $c): EffectiveHelpdeskSettingsService => new EffectiveHelpdeskSettingsService(
|
|
$c->get(HelpdeskSettingsGateway::class),
|
|
$c->get(HelpdeskTenantSettingsGateway::class),
|
|
$c->get(SessionStoreInterface::class)
|
|
));
|
|
|
|
$container->set(BcODataGateway::class, static fn (AppContainer $c): BcODataGateway => new BcODataGateway(
|
|
$c->get(EffectiveHelpdeskSettingsService::class),
|
|
$c->get(HelpdeskOAuthTokenService::class),
|
|
$c->get(SessionStoreInterface::class)
|
|
));
|
|
|
|
$container->set(BcSoapGateway::class, static fn (AppContainer $c): BcSoapGateway => new BcSoapGateway(
|
|
$c->get(EffectiveHelpdeskSettingsService::class),
|
|
$c->get(HelpdeskOAuthTokenService::class),
|
|
$c->get(SessionStoreInterface::class)
|
|
));
|
|
|
|
$container->set(HelpdeskTokenRepository::class, static fn (AppContainer $c): HelpdeskTokenRepository => new HelpdeskTokenRepository(
|
|
$c->get(SettingServicesFactory::class)->createSettingsCryptoGateway()
|
|
));
|
|
|
|
$container->set(HelpdeskOAuthTokenService::class, static fn (AppContainer $c): HelpdeskOAuthTokenService => new HelpdeskOAuthTokenService(
|
|
$c->get(EffectiveHelpdeskSettingsService::class),
|
|
$c->get(HelpdeskTokenRepository::class)
|
|
));
|
|
|
|
$container->set(DebitorSearchService::class, static fn (AppContainer $c): DebitorSearchService => new DebitorSearchService(
|
|
$c->get(BcODataGateway::class),
|
|
$c->get(EffectiveHelpdeskSettingsService::class)
|
|
));
|
|
|
|
$container->set(DebitorDetailService::class, static fn (AppContainer $c): DebitorDetailService => new DebitorDetailService(
|
|
$c->get(BcODataGateway::class),
|
|
$c->get(EffectiveHelpdeskSettingsService::class)
|
|
));
|
|
|
|
$container->set(TicketCommunicationService::class, static fn (AppContainer $c): TicketCommunicationService => new TicketCommunicationService(
|
|
$c->get(BcSoapGateway::class),
|
|
$c->get(BcODataGateway::class)
|
|
));
|
|
|
|
$container->set(SystemRecommendationEngine::class, static fn (): SystemRecommendationEngine => new SystemRecommendationEngine());
|
|
|
|
$container->set(SoftwareProductRepository::class, static fn (): SoftwareProductRepository => new SoftwareProductRepository());
|
|
|
|
$container->set(SoftwareProductSyncService::class, static fn (AppContainer $c): SoftwareProductSyncService => new SoftwareProductSyncService(
|
|
$c->get(BcODataGateway::class),
|
|
$c->get(SoftwareProductRepository::class),
|
|
$c->get(HelpdeskSettingsGateway::class)
|
|
));
|
|
|
|
$container->set(SoftwareProductService::class, static fn (AppContainer $c): SoftwareProductService => new SoftwareProductService(
|
|
$c->get(SoftwareProductRepository::class)
|
|
));
|
|
|
|
$container->set(SoftwareProductSyncJobHandler::class, static fn (AppContainer $c): SoftwareProductSyncJobHandler => new SoftwareProductSyncJobHandler(
|
|
$c->get(SoftwareProductSyncService::class)
|
|
));
|
|
}
|
|
}
|