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\Doctrine\Odm;
use ApiPlatform\Exception\InvalidArgumentException;
use Doctrine\ODM\MongoDB\Aggregation\Builder;
use Doctrine\ODM\MongoDB\Mapping\ClassMetadata as MongoDbOdmClassMetadata;
use Doctrine\ODM\MongoDB\Mapping\MappingException;
use Doctrine\Persistence\Mapping\ClassMetadata;
/**
* Helper trait regarding a property in a MongoDB document using the resource metadata.
*
* @author Alan Poulain <contact@alanpoulain.eu>
*/
trait PropertyHelperTrait
{
/**
* Splits the given property into parts.
*/
abstract protected function splitPropertyParts(string $property, string $resourceClass): array;
/**
* Gets class metadata for the given resource.
*/
abstract protected function getClassMetadata(string $resourceClass): ClassMetadata;
/**
* Adds the necessary lookups for a nested property.
*
* @throws InvalidArgumentException If property is not nested
* @throws MappingException
*
* @return array An array where the first element is the $alias of the lookup,
* the second element is the $field name
* the third element is the $associations array
*/
protected function addLookupsForNestedProperty(string $property, Builder $aggregationBuilder, string $resourceClass): array
{
$propertyParts = $this->splitPropertyParts($property, $resourceClass);
$alias = '';
foreach ($propertyParts['associations'] as $association) {
$classMetadata = $this->getClassMetadata($resourceClass);
if (!$classMetadata instanceof MongoDbOdmClassMetadata) {
break;
}
if ($classMetadata->hasReference($association)) {
$propertyAlias = "{$association}_lkup";
// previous_association_lkup.association
$localField = "$alias$association";
// previous_association_lkup.association_lkup
$alias .= $propertyAlias;
$referenceMapping = $classMetadata->getFieldMapping($association);
if (($isOwningSide = $referenceMapping['isOwningSide']) && MongoDbOdmClassMetadata::REFERENCE_STORE_AS_ID !== $referenceMapping['storeAs']) {
throw MappingException::cannotLookupDbRefReference($classMetadata->getReflectionClass()->getShortName(), $association);
}
if (!$isOwningSide) {
if (isset($referenceMapping['repositoryMethod']) || !isset($referenceMapping['mappedBy'])) {
throw MappingException::repositoryMethodLookupNotAllowed($classMetadata->getReflectionClass()->getShortName(), $association);
}
$targetClassMetadata = $this->getClassMetadata($referenceMapping['targetDocument']);
if ($targetClassMetadata instanceof MongoDbOdmClassMetadata && MongoDbOdmClassMetadata::REFERENCE_STORE_AS_ID !== $targetClassMetadata->getFieldMapping($referenceMapping['mappedBy'])['storeAs']) {
throw MappingException::cannotLookupDbRefReference($classMetadata->getReflectionClass()->getShortName(), $association);
}
}
$aggregationBuilder->lookup($classMetadata->getAssociationTargetClass($association))
->localField($isOwningSide ? $localField : '_id')
->foreignField($isOwningSide ? '_id' : $referenceMapping['mappedBy'])
->alias($alias);
$aggregationBuilder->unwind("\$$alias");
// association.property => association_lkup.property
$property = substr_replace($property, $propertyAlias, strpos($property, $association), \strlen($association));
$resourceClass = $classMetadata->getAssociationTargetClass($association);
$alias .= '.';
} elseif ($classMetadata->hasEmbed($association)) {
$alias = "$association.";
$resourceClass = $classMetadata->getAssociationTargetClass($association);
}
}
if ('' === $alias) {
throw new InvalidArgumentException(sprintf('Cannot add lookups for property "%s" - property is not nested.', $property));
}
return [$property, $propertyParts['field'], $propertyParts['associations']];
}
}
xxxxx1.0, XXX xxxx