ControllerRest.php 1.89 KB
Newer Older
Ketan's avatar
Ketan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

declare(strict_types=1);

namespace Magento\WebapiAsync\Plugin;

use Magento\WebapiAsync\Model\ServiceConfig;
use Magento\Webapi\Controller\PathProcessor;
use Magento\Framework\App\RequestInterface;
use Magento\WebapiAsync\Model\ServiceConfig\Converter;

class ControllerRest
{
    /**
     * @var ServiceConfig
     */
    private $serviceConfig;

    /**
     * @var PathProcessor
     */
    private $pathProcessor;

    /**
     * ControllerRest constructor.
     *
     * @param ServiceConfig $serviceConfig
     * @param PathProcessor $pathProcessor
     */
    public function __construct(
        ServiceConfig $serviceConfig,
        PathProcessor $pathProcessor
    ) {
        $this->serviceConfig = $serviceConfig;
        $this->pathProcessor = $pathProcessor;
    }

    /**
     * Apply route customization.
     * @param \Magento\Webapi\Controller\Rest $subject
     * @param RequestInterface $request
     * @return array
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    public function beforeDispatch(\Magento\Webapi\Controller\Rest $subject, RequestInterface $request)
    {
        $routeCustomizations = $this->serviceConfig->getServices()[Converter::KEY_ROUTES] ?? [];
        if ($routeCustomizations) {
            $originPath = $request->getPathInfo();
            $requestMethod = $request->getMethod();
            $routePath = ltrim($this->pathProcessor->process($originPath), '/');
            if (array_key_exists($routePath, $routeCustomizations)) {
                if (isset($routeCustomizations[$routePath][$requestMethod])) {
                    $path = ltrim($routeCustomizations[$routePath][$requestMethod], '/');
                    $request->setPathInfo(str_replace($routePath, $path, $originPath));
                }
            }
        }
        return [$request];
    }
}