正如标题所示,我在实现 3 结构模型(域对象、数据映射器和服务)时遇到了一些小问题。
过去,当有人在我的网站上注册时,我会简单地做
$user->register($firstName, $lastName, $emailAddress, $username...);
并且该方法将按这样的步骤运行
1. Check if the form sent was valid.
2. Check if all the required fields were filled.
3. Check the if the lengths of strings were valid and the range of integers etc.
4. Check if the input is in the correct format (regex).
5. Check if the username is already taken and if the email address already exists
in the database
6. etc. etc.
所有这一切都很好,但我试图摆脱这样做,因为我希望我的代码更可重用和可测试。
现在,使用这 3 个结构模型,域对象和数据映射器应该通过服务进行通信,以使它们彼此隔离,所以这是我对用户服务的想法
class UserService {
public function register($firstName, $lastName, $email...) {
$userDO= $this->domainObjectFactory->build('User');
$mapper = $this->dataMapperFactory->build('User');
// Is this where I start doing my validation like in the steps above???
// And if this is where I start doing my checks, when I get to the part
// where I have to check if the username they want is already taken how
// how do I do that check?
}
}
然后实际运行,我会像这样从我的控制器中执行它
$userService = $this->serviceFactory->get('user');
$result = $userService->register($_POST['firstName']....);
逻辑(if's 和 else's)必须register()
放在我UserService
班级的方法中,对吗?因为如果当我到达需要数据库进行一些检查的阶段时他们进入域对象,例如用户名是否已经存在,我将如何访问数据库?我真的不知道,因为域对象不应该知道有关数据源的任何信息。
必须有一种方法可以访问数据库以进行小型查询,例如检查用户名或电子邮件地址是否已经存在以及需要完成的大量其他小型查询。
我有很多实体/域对象需要执行大量小查询,过去我的模型可以从任何方法中访问数据库并且可以执行这些查询,但这似乎不允许使用这 3 结构模型我很想知道什么是正确的方法,因为必须有一种方法。
我一直在飞行,直到我发现模型是一个分为 3 个结构的层。
任何帮助或朝着正确的方向推动将不胜感激,尤其是现实生活中的好例子。互联网似乎缺少针对我的特定问题的那些。
谢谢。