JEMBOT MAWOT Bypass Shell
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\JsonSchema;
/**
* Represents a JSON Schema document.
*
* Both the standard version and the OpenAPI flavors (v2 and v3) are supported.
*
* @see https://json-schema.org/latest/json-schema-core.html
* @see https://github.com/OAI/OpenAPI-Specification
*
* @author Kévin Dunglas <dunglas@gmail.com>
*/
final class Schema extends \ArrayObject
{
public const TYPE_INPUT = 'input';
public const TYPE_OUTPUT = 'output';
public const VERSION_JSON_SCHEMA = 'json-schema';
public const VERSION_OPENAPI = 'openapi';
public const VERSION_SWAGGER = 'swagger';
private $version;
public function __construct(string $version = self::VERSION_JSON_SCHEMA)
{
$this->version = $version;
parent::__construct(self::VERSION_JSON_SCHEMA === $this->version ? ['$schema' => 'http://json-schema.org/draft-07/schema#'] : []);
}
/**
* The flavor used for this document: JSON Schema, OpenAPI v2 or OpenAPI v3.
*/
public function getVersion(): string
{
return $this->version;
}
/**
* {@inheritdoc}
*
* @param bool $includeDefinitions if set to false, definitions will not be included in the resulting array
*/
public function getArrayCopy(bool $includeDefinitions = true): array
{
$schema = parent::getArrayCopy();
if (!$includeDefinitions) {
unset($schema['definitions'], $schema['components']);
}
return $schema;
}
/**
* Retrieves the definitions used by this schema.
*/
public function getDefinitions(): \ArrayObject
{
$definitions = $this['definitions'] ?? $this['components']['schemas'] ?? new \ArrayObject();
$this->setDefinitions($definitions);
return $definitions;
}
/**
* Associates existing definitions to this schema.
*/
public function setDefinitions(\ArrayObject $definitions): void
{
if (self::VERSION_OPENAPI === $this->version) {
$this['components']['schemas'] = $definitions;
return;
}
$this['definitions'] = $definitions;
}
/**
* Returns the name of the root definition, if defined.
*/
public function getRootDefinitionKey(): ?string
{
if (!isset($this['$ref'])) {
return null;
}
return $this->removeDefinitionKeyPrefix($this['$ref']);
}
/**
* Returns the name of the items definition, if defined.
*/
public function getItemsDefinitionKey(): ?string
{
$ref = $this['items']['$ref'] ?? null;
if (null === $ref) {
return null;
}
return $this->removeDefinitionKeyPrefix($ref);
}
/**
* Checks if this schema is initialized.
*/
public function isDefined(): bool
{
return isset($this['$ref']) || isset($this['type']);
}
private function removeDefinitionKeyPrefix(string $definitionKey): string
{
// strlen('#/definitions/') = 14
// strlen('#/components/schemas/') = 21
$prefix = self::VERSION_OPENAPI === $this->version ? 21 : 14;
return substr($definitionKey, $prefix);
}
}
class_alias(Schema::class, \ApiPlatform\Core\JsonSchema\Schema::class);
xxxxx1.0, XXX xxxx