Spaces:
No application file
No application file
File size: 1,418 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
<?php
namespace Mautic\ApiBundle\Serializer\Exclusion;
use JMS\Serializer\Context;
use JMS\Serializer\Exclusion\ExclusionStrategyInterface;
use JMS\Serializer\Metadata\ClassMetadata;
use JMS\Serializer\Metadata\PropertyMetadata;
/**
* Exclude specific fields at a specific level.
*/
class FieldExclusionStrategy implements ExclusionStrategyInterface
{
private int $level;
/**
* @param int $level
* @param string|null $path
*/
public function __construct(
private array $fields,
$level = 3,
private $path = null
) {
$this->level = (int) $level;
}
public function shouldSkipClass(ClassMetadata $metadata, Context $navigatorContext): bool
{
return false;
}
public function shouldSkipProperty(PropertyMetadata $property, Context $navigatorContext): bool
{
if ($this->path) {
$path = implode('.', $navigatorContext->getCurrentPath());
if ($path !== $this->path) {
return false;
}
}
$name = $property->serializedName ?: $property->name;
if (!in_array($name, $this->fields)) {
return false;
}
// children of children or parents of chidlren will be more than 3 levels deep
if ($navigatorContext->getDepth() <= $this->level) {
return false;
}
return true;
}
}
|