![]() 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-developer/Helper/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Developer\Helper; /** * Developer config data helper * * @api * @since 100.0.2 */ class Data extends \Magento\Framework\App\Helper\AbstractHelper { /** * Dev allow ips config path */ public const XML_PATH_DEV_ALLOW_IPS = 'dev/restrict/allow_ips'; /** * Check if the client remote address is allowed developer ip * * @param string|null $storeId * @return bool */ public function isDevAllowed($storeId = null) { $allow = true; $allowedIps = $this->scopeConfig->getValue( self::XML_PATH_DEV_ALLOW_IPS, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeId ); $remoteAddr = $this->_remoteAddress->getRemoteAddress(); if (!empty($allowedIps) && !empty($remoteAddr)) { $allowedIps = preg_split('#\s*,\s*#', $allowedIps, -1, PREG_SPLIT_NO_EMPTY); if (array_search($remoteAddr, $allowedIps) === false && array_search($this->_httpHeader->getHttpHost(), $allowedIps) === false ) { $allow = false; } } return $allow; } }