gpt4 book ai didi

service - 在服务类中重定向?

转载 作者:行者123 更新时间:2023-12-02 16:03:25 25 4
gpt4 key购买 nike

我创建了自己的服务类,其中有一个函数,handleRedirect(),该函数应该在选择要重定向的路由之前执行一些最小的逻辑检查。

class LoginService
{
private $CartTable;
private $SessionCustomer;
private $Customer;

public function __construct(Container $SessionCustomer, CartTable $CartTable, Customer $Customer)
{
$this->SessionCustomer = $SessionCustomer;
$this->CartTable = $CartTable;
$this->Customer = $Customer;

$this->prepareSession();
$this->setCartOwner();
$this->handleRedirect();
}

public function prepareSession()
{
// Store user's first name
$this->SessionCustomer->offsetSet('first_name', $this->Customer->first_name);
// Store user id
$this->SessionCustomer->offsetSet('customer_id', $this->Customer->customer_id);
}

public function handleRedirect()
{
// If redirected to log in, or if previous page visited before logging in is cart page:
// Redirect to shipping_info
// Else
// Redirect to /
}

public function setCartOwner()
{
// GET USER ID FROM SESSION
$customer_id = $this->SessionCustomer->offsetGet('customer_id');
// GET CART ID FROM SESSION
$cart_id = $this->SessionCustomer->offsetGet('cart_id');
// UPDATE
$this->CartTable->updateCartCustomerId($customer_id, $cart_id);
}
}

成功登录或注册后,在 Controller 中调用此服务。我不确定从这里访问 redirect()->toRoute(); 的最佳方式是什么(或者我是否应该在这里这样做)。

此外,如果您对我的代码的结构有其他意见,请随时留下。

最佳答案

在服务中使用插件是一个坏主意,因为它们需要设置 Controller 。当创建服务并注入(inject)插件时,它不知道 Controller 实例,因此会导致错误异常。如果您想重定向用户,您可以像重定向插件一样编辑响应对象。

请注意,我删除了代码以使示例清晰简单。

class LoginServiceFactory implements FactoryInterface
{
public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
{
return new LoginService($container->get('Application')->getMvcEvent());
}
}

class LoginService
{
/**
* @var \Zend\Mvc\MvcEvent
*/
private $event;

/**
* RedirectService constructor.
* @param \Zend\Mvc\MvcEvent $event
*/
public function __construct(\Zend\Mvc\MvcEvent $event)
{
$this->event = $event;
}

/**
* @return Response|\Zend\Stdlib\ResponseInterface
*/
public function handleRedirect()
{
// conditions check
if (true) {
$url = $this->event->getRouter()->assemble([], ['name' => 'home']);
} else {
$url = $this->event->getRouter()->assemble([], ['name' => 'cart/shipping-info']);
}

/** @var \Zend\Http\Response $response */
$response = $this->event->getResponse();
$response->getHeaders()->addHeaderLine('Location', $url);
$response->setStatusCode(302);

return $response;
}
}

现在,您可以在 Controller 中执行以下操作:

返回$loginService->handleRedirect();

关于service - 在服务类中重定向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48000801/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com