php Laravel Valet Magento 2驱动程序,帮助我每天使用Nginx和Mysql安装本地Magento 2开发位置。欲了解更多信息

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Laravel Valet Magento 2驱动程序,帮助我每天使用Nginx和Mysql安装本地Magento 2开发位置。欲了解更多信息相关的知识,希望对你有一定的参考价值。

<?php

/**
* Laravel Valet Magento 2 Driver
* Originally written bysschlein
*
* Sligthly altered by:
* Kay in 't Veen - Microdesign B.V.
* http://www.microdesign.nl
* 
*/

class Magento2ValetDriver extends ValetDriver
{

    /**
     * Holds the MAGE_MODE from app/etc/config.php or $ENV
     *
     * @var string
     */
    private $mageMode;

    /**
     * Determine if the driver serves the request.
     *
     * @param  string $sitePath
     * @param  string $siteName
     * @param  string $uri
     * @return boolean
     */
    public function serves($sitePath, $siteName, $uri)
    {
        return file_exists($sitePath . '/bin/magento') && file_exists($sitePath . '/pub/index.php');
    }

    /**
     * Determine if the incoming request is for a static file.
     *
     * @param  string $sitePath
     * @param  string $siteName
     * @param  string $uri
     * @return string|false
     */
    public function isStaticFile($sitePath, $siteName, $uri)
    {
        $this->checkMageMode($sitePath);

        $route = parse_url(substr($uri, 1))['path'];

        $pub = '';
        if ('developer' === $this->mageMode) {
            $pub = 'pub/';
        }

        if (!$this->isPubDirectory($sitePath, $route, $pub)) {
            return false;
        }

        $magentoPackagePubDir = $sitePath;
        if ('developer' !== $this->mageMode) {
            $magentoPackagePubDir .= '/pub';
        }

        $file = $magentoPackagePubDir . '/' . $route;

        if (file_exists($file)) {
            return $magentoPackagePubDir . $uri;
        }

        if (strpos($route, $pub . 'static/') === 0) {
            $route = preg_replace('#' . $pub . 'static/#', '', $route, 1);
            $_GET['resource'] = $route;
            include $magentoPackagePubDir . '/' . $pub . 'static.php';
            exit;
        }

        if (strpos($route, $pub . 'media/') === 0) {
            include $magentoPackagePubDir . '/' . $pub . 'get.php';
            exit;
        }

        return false;
    }

    /**
     * Determine the current MAGE_MODE
     *
     * @param  string $sitePath
     */
    private function checkMageMode($sitePath)
    {
        if (null !== $this->mageMode) {
            // We have already figure out mode, no need to check it again
            return;
        }
        if (!file_exists($sitePath . '/index.php')) {
            $this->mageMode = 'production'; // Can't use developer mode without index.php in project root
            return;
        }
        $mageConfig = [];
        if (file_exists($sitePath . '/app/etc/env.php')) {
            $mageConfig = require $sitePath . '/app/etc/env.php';
        }
        if (array_key_exists('MAGE_MODE', $mageConfig)) {
            $this->mageMode = $mageConfig['MAGE_MODE'];
        }
    }

    /**
     * Checks to see if route is referencing any directory inside pub. This is a dynamic check so that if any new
     * directories are added to pub this driver will not need to be updated.
     *
     * @param string $sitePath
     * @param string $route
     * @param string $pub
     * @return bool
     */
    private function isPubDirectory($sitePath, $route, $pub = '')
    {
        $sitePath .= '/pub/';
        $dirs = glob($sitePath . '*', GLOB_ONLYDIR);

        $dirs = str_replace($sitePath, '', $dirs);
        foreach ($dirs as $dir) {
            if (strpos($route, $pub . $dir . '/') === 0) {
                return true;
            }
        }
        return false;
    }

    /**
     * Get the fully resolved path to the application's front controller.
     *
     * @param  string $sitePath
     * @param  string $siteName
     * @param  string $uri
     * @return string
     */
    public function frontControllerPath($sitePath, $siteName, $uri)
    {
        $this->checkMageMode($sitePath);

        if ('developer' === $this->mageMode) {
            return $sitePath . '/index.php';
        }
        return $sitePath . '/pub/index.php';
    }
}

以上是关于php Laravel Valet Magento 2驱动程序,帮助我每天使用Nginx和Mysql安装本地Magento 2开发位置。欲了解更多信息的主要内容,如果未能解决你的问题,请参考以下文章

Laravel Valet php-fpm 已经在监听 valet sock

Laravel 4.2 + Laravel Valet + PHP 7 = 需要 Mcrypt PHP 扩展

markdown 如何在PHP 7.1和PHP 5.6之间的Laravel Valet中切换PHP版本

MacOS Laravel Valet 增加 memory_limit

设置 Laravel Valet Mysql 问题

在Mac开发环境Laravel Valet中配置运行Flarum论坛系统的方法详解