Magento2에서 핵심 플러그인을 무시하거나 비활성화하는 방법은 무엇입니까?


14

Magento2를 사용하여 마켓 플레이스를 만들고 있습니다. 따라서 공급 업체의 고객 자격 증명을 사용하여 고객 주문을로드 할 수 있어야합니다.

Magento2는 플러그인을 사용하여이 주문의 고객 (또는 관리자) 만 주문을로드 할 수 있는지 확인합니다.

이 경우 플러그인 전체를 재정의하거나 protected 메소드를 재정의해야합니다 isAllowed(). 코어를 수정하지 않고 무엇을 할 수 있습니까?

Magento\Sales\Model\ResourceModel\Order\Plugin\Authorization 다음과 같습니다 :

use Magento\Authorization\Model\UserContextInterface;
use Magento\Framework\Exception\NoSuchEntityException;
class Authorization
{
    /**
     * @var UserContextInterface
     */
    protected $userContext;

    /**
     * @param UserContextInterface $userContext
     */
    public function __construct(
        \Magento\Authorization\Model\UserContextInterface $userContext
    ) {
        $this->userContext = $userContext;
    }

    /**
     * Checks if order is allowed
     *
     * @param \Magento\Sales\Model\ResourceModel\Order $subject
     * @param callable $proceed
     * @param \Magento\Framework\Model\AbstractModel $order
     * @param mixed $value
     * @param null|string $field
     * @return \Magento\Sales\Model\Order
     * @throws NoSuchEntityException
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function aroundLoad(
        \Magento\Sales\Model\ResourceModel\Order $subject,
        \Closure $proceed,
        \Magento\Framework\Model\AbstractModel $order,
        $value,
        $field = null
    ) {
        $result = $proceed($order, $value, $field);
        if (!$this->isAllowed($order)) {
            throw NoSuchEntityException::singleField('orderId', $order->getId());
        }
        return $result;
    }

    /**
     * Checks if order is allowed for current customer
     *
     * @param \Magento\Sales\Model\Order $order
     * @return bool
     */
    protected function isAllowed(\Magento\Sales\Model\Order $order)
    {
        return $this->userContext->getUserType() == UserContextInterface::USER_TYPE_CUSTOMER
            ? $order->getCustomerId() == $this->userContext->getUserId()
            : true;
    }
}

답변:


23

1) 이름으로 플러그인을 비활성화 할 수 있습니다. 귀하의 경우에는 authorization.

<type name="Magento\Sales\Model\ResourceModel\Order\Plugin\Authorization">
    <plugin name="authorization" disabled="true" />
</type>
<type name="Magento\Sales\Model\ResourceModel\Order\Plugin\Authorization">
    <plugin name="vendor_name_authorization" type="Vendor\Name\Model\ResourceModel\Plugin\Sales\Order\Authorization" sortOrder="1" />
</type>

그런 다음 magento 플러그인 클래스를 확장하는 자체 클래스를 작성해야합니다. 자체 클래스에서 보호 된 메소드를 겹쳐 쓸 수 있습니다.

2) 플러그인을 삭제하고 다시 만들지 않고도 할 수 있습니다.

<type name="Magento\Sales\Model\ResourceModel\Order\Plugin\Authorization">
    <plugin name="authorization" type="Vendor\Name\Model\ResourceModel\Plugin\Sales\Order\Authorization" sortOrder="1" />
</type>

플러그인 클래스의 샘플 코드 :

namespace Vendor\Name\Model\ResourceModel\Plugin\Sales\Order;
class Authorization extends \Magento\Sales\Model\ResourceModel\Order\Plugin\Authorization
{
    protected function isAllowed(\Magento\Sales\Model\Order $order)
    {
            ///You code here
    }
}

나는 webapi_rest 폴더 안에 플러그인을 재정 의하여 시도했지만 작동하지 않습니다
bhargav shastri

6

sergei.sss 첫 번째 솔루션 을 사용 하면 중복 Magento \ Sales \ Model \ ResourceModel \ Order \ Plugin \ Authorization 오류가 발생합니다
. 올바른 방법은 다음과 같습니다.

<type name="Magento\Sales\Model\ResourceModel\Order\Plugin\Authorization">
    <plugin name="authorization" disabled="true" />
    <plugin name="vendor_name_authorization" type="Vendor\Name\Model\ResourceModel\Plugin\Sales\Order\Authorization" sortOrder="1" />
</type>
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.