本文探讨了 PHP 中的领域驱动设计 (DDD) 用例模型,演示了如何利用接口和特定于领域的类来管理数据持久性。我们将检查 TaxPersistUseCase 类,它使用持久性管理器 (TaxManagerInterface) 来保存代表税的 Tax 类型的实体。
该模型强调 DDD 原则:每个组件都清晰地分为接口、具体实现和异常,遵循依赖注入和错误处理的最佳实践。
TaxPersistUseCase 类处理与持久税收相关的业务逻辑。它分为几个部分来阐明这种方法的逻辑和结构。
namespace Domain\Application\UseCase\Order; use Domain\Application\Entity\Order\Tax; use Domain\Application\Gateway\Manager\Order\TaxManagerInterface; use Domain\Application\UseCase\Order\Exception\NotFoundException; use Domain\Application\UseCase\Order\Interfaces\TaxPersistRequestInterface; use Domain\Application\UseCase\Order\Interfaces\TaxPersistResponseInterface; use Domain\Exception\BadRequestException; use Domain\Exception\FormException; use Small\CleanApplication\Contract\UseCaseInterface; use Small\Collection\Collection\StringCollection; use Small\SwooleEntityManager\EntityManager\Exception\EmptyResultException;
TaxPersistUseCase 类依赖于多个接口和异常来处理税务持久性。以下是他们的角色细分:
TaxPersistRequestInterface 和 TaxPersistResponseInterface :用例请求和响应的接口。
异常:各种异常,例如 BadRequestException、FormException 和 NotFoundException,有助于管理特定于上下文的错误。
namespace Domain\Application\UseCase\Order; use Domain\Application\Entity\Order\Tax; use Domain\Application\Gateway\Manager\Order\TaxManagerInterface; use Domain\Application\UseCase\Order\Exception\NotFoundException; use Domain\Application\UseCase\Order\Interfaces\TaxPersistRequestInterface; use Domain\Application\UseCase\Order\Interfaces\TaxPersistResponseInterface; use Domain\Exception\BadRequestException; use Domain\Exception\FormException; use Small\CleanApplication\Contract\UseCaseInterface; use Small\Collection\Collection\StringCollection; use Small\SwooleEntityManager\EntityManager\Exception\EmptyResultException;
接口定义了每个组件必须遵守的契约,促进解耦和可测试性。
该接口指定了管理税收的方法,包括检索和持久化:
class TaxPersistUseCase implements UseCaseInterface { public function __construct( protected TaxManagerInterface $taxManager, ) {} public function execute(mixed $request): TaxPersistResponseInterface { if (!$request instanceof TaxPersistRequestInterface) { throw new BadRequestException( self::class . ' accepts only request instance of ' . TaxPersistRequestInterface::class ); } $tax = $request->getTax(); $messages = new StringCollection(); try { $this->taxManager->applicationPersist($tax); } catch (EmptyResultException $e) { throw new NotFoundException($e->getMessage()); } catch (FormException $e) { $messages = $e->getFormMessages(); } return new class($tax, $messages) implements TaxPersistResponseInterface { public function __construct( protected readonly Tax $tax, protected readonly StringCollection $messages, ) {} public function getTax(): Tax { return $this->tax; } public function getMessages(): StringCollection { return $this->messages; } }; } }
该接口定义了 TaxPersistUseCase 所期望的请求的结构:
interface TaxManagerInterface { public function findById(int $id): Tax; public function findByName(string $name): Tax; public function applicationPersist(Tax $tax): self; }
interface TaxPersistRequestInterface extends RequestInterface { public function getTax(): Tax; }
异常通过捕获特定于域的错误在 DDD 中发挥着重要作用:
以上是在 PHP 中实现 DDD 用例的详细内容。更多信息请关注PHP中文网其他相关文章!