![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-quote/Model/GuestCartManagement/Plugin/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Quote\Model\GuestCartManagement\Plugin; use Magento\Framework\Exception\StateException; class Authorization { /** * @var \Magento\Authorization\Model\UserContextInterface */ protected $userContext; /** * @param \Magento\Authorization\Model\UserContextInterface $userContext */ public function __construct( \Magento\Authorization\Model\UserContextInterface $userContext ) { $this->userContext = $userContext; } /** * @param \Magento\Quote\Model\GuestCart\GuestCartManagement $subject * @param string $cartId * @param int $customerId * @param int $storeId * @throws StateException * @return void * @SuppressWarnings(PHPMD.UnusedFormalParameter) */ public function beforeAssignCustomer( \Magento\Quote\Model\GuestCart\GuestCartManagement $subject, $cartId, $customerId, $storeId ) { if (((int) $customerId) !== (int)$this->userContext->getUserId()) { throw new StateException( __("You don't have the correct permissions to assign the customer to the cart.") ); } } }