cache = $cache; $this->webapiConfig = $webapiConfig; $this->serializer = $serializer; } /** * Return services loaded from cache if enabled or from files merged previously * * @return array * @since 100.2.0 */ public function getServices() { if (null === $this->services) { $services = $this->cache->load(self::CACHE_ID); if ($services && is_string($services)) { $this->services = $this->serializer->unserialize($services); } else { $this->services = $this->getBulkServicesConfig(); $this->cache->save($this->serializer->serialize($this->services), self::CACHE_ID); } } return $this->services; } /** * @return array */ private function getBulkServicesConfig() { $bulkServices = []; $webapiServices = $this->webapiConfig->getServices(); foreach ($webapiServices[WebapiConverter::KEY_ROUTES] as $routePath => $routeConfig) { foreach ($routeConfig as $httpMethod => $httpMethodConfig) { if ($httpMethod !== \Magento\Framework\Webapi\Rest\Request::HTTP_METHOD_GET) { $routePath = preg_replace_callback( '/\/:(\w+)/', function ($matches) { return '/' . self::URL_PARAM_PREFIX_PLACEHOLDER . ucfirst($matches[1]); }, $routePath ); $bulkServices[WebapiConverter::KEY_ROUTES][$routePath][$httpMethod] = $httpMethodConfig; } } } $bulkServices[WebapiConverter::KEY_SERVICES] = $webapiServices[WebapiConverter::KEY_SERVICES]; return $bulkServices; } }