????
Current Path : /home2/sarkar82/public_html/wp-content/plugins/siteseo/classes/Compose/ |
Current File : /home2/sarkar82/public_html/wp-content/plugins/siteseo/classes/Compose/UseJsonSchema.php |
<?php /* * SiteSEO * https://siteseo.io/ * (c) SiteSEO Team <support@siteseo.io> */ /* Copyright 2016 - 2024 - Benjamin Denis (email : contact@seopress.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ namespace SiteSEO\Compose; use SiteSEO\Models\GetJsonFromFile; trait UseJsonSchema { protected $schemasAvailable = null; /** * @since 4.5.0 * * @param string $key * * @return GetJsonFromFile */ public function getSchemaClass($key) { $schemasAvailable = $this->getSchemasAvailable(); $element = null; // Check key <=> schema if (array_key_exists($key, $schemasAvailable)) { $element = $schemasAvailable[$key]; } // Check alias <=> schema if (null === $element) { foreach ($schemasAvailable as $schema) { if (null !== $element) { break; } if ( ! array_key_exists('alias', $schema) || empty($schema['alias'])) { continue; } if (in_array($key, $schema['alias'], true)) { $element = $schema; } } } // Check custom element if (null === $element) { foreach ($schemasAvailable as $schema) { if (null !== $element) { break; } if ( ! array_key_exists('custom', $schema) || null === $schema['custom']) { continue; } if (0 === strpos($key, $schema['custom'])) { $element = $schema; } } } if ( ! $element) { return null; } if (is_string($element['class'])) { $element['class'] = new $element['class'](); } if ($element['class'] instanceof GetJsonFromFile) { return $element['class']; } return null; } /** * @since 4.5.0 * * @param string $directory * @param array $schemas * @param string $subNamespace * @param mixed $namespacesOption * * @return array */ public function buildSchemas($directory, $schemas = [], $namespacesOption = ['root' => '\\SiteSEO\\JsonSchemas\\%s%s', 'subNamespace' => '']) { $files = array_diff(scandir($directory), ['..', '.']); foreach ($files as $filename) { $class = str_replace('.php', '', $filename); $classFile = sprintf($namespacesOption['root'], $namespacesOption['subNamespace'], $class); $fullPath = sprintf('%s/%s', $directory, $filename); if (is_dir($fullPath)) { $namespacesOption['subNamespace'] = $filename . '\\'; $schemas = $this->buildSchemas($fullPath, $schemas, $namespacesOption); } else { if (defined($classFile . '::NAME')) { $name = $classFile::NAME; } else { $name = strtolower($class); } $schemas[$name] = [ 'class' => $classFile, 'name' => $name, 'alias' => defined($classFile . '::ALIAS') ? $classFile::ALIAS : [], 'custom' => defined($classFile . '::CUSTOM_FORMAT') ? $classFile::CUSTOM_FORMAT : null, 'input' => sprintf('[[%s]]', $name), ]; } } return $schemas; } /** * @since 4.5.0 * * @return array */ public function getSchemasAvailable() { if (null !== $this->schemasAvailable) { return apply_filters('siteseo_schemas_available', $this->schemasAvailable); } $schemas = $this->buildSchemas(SITESEO_CLASSES.'/JsonSchemas'); if (defined('SITESEO_PRO_CLASSES') && file_exists(SITESEO_PRO_CLASSES.'/JsonSchemas') && is_dir(SITESEO_PRO_CLASSES.'/JsonSchemas')) { $schemas = $this->buildSchemas(SITESEO_PRO_CLASSES.'/JsonSchemas', $schemas, ['root' => '\\SiteSEOPro\\JsonSchemas\\%s%s', 'subNamespace' => '']); } $this->schemasAvailable = $schemas; return apply_filters('siteseo_schemas_available', $this->schemasAvailable); } /** * @since 4.5.0 * * @param string $name * @param any $params */ public function __call($name, $params) { $schemaClass = $this->getSchemaClass($name); if (null === $schemaClass) { return ''; } return $schemaClass->getJsonWithName($name); } }