<?php
namespace App\Entity;
use ApiPlatform\Metadata\ApiResource;
use App\Repository\ConfigurationItemParentRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
#[ApiResource(operations: [])]
#[ORM\Entity(repositoryClass: ConfigurationItemParentRepository::class)]
class ConfigurationItemParent extends ConfigurationItem
{
#[ORM\OneToMany(mappedBy: 'parent', targetEntity: ConfigurationItem::class, cascade: ['persist', 'remove'])]
#[Groups(['configuration-item:read'])]
private Collection $nodes;
public function __construct(string $name = null, array $values = [])
{
parent::__construct($name);
$this->nodes = new ArrayCollection();
foreach ($values as $node) {
$this->addNode($node);
}
}
/**
* @return Collection<int, ConfigurationItem>
*/
public function getNodes(): Collection
{
return $this->nodes;
}
public function addNode(ConfigurationItem $node): self
{
if (!$this->nodes->contains($node)) {
$this->nodes->add($node);
$node->setParent($this);
}
return $this;
}
public function removeNode(ConfigurationItem $node): self
{
if ($this->nodes->removeElement($node)) {
// set the owning side to null (unless already changed)
if ($node->getParent() === $this) {
$node->setParent(null);
}
}
return $this;
}
public function getData(): mixed
{
$data = [];
/** @var ConfigurationItem $item */
foreach ($this->getNodes() as $item) {
$data[$item->getName()] = $item->getData();
}
return $data;
}
public function setNodes(array $nodes = []): self
{
$this->nodes = new ArrayCollection($nodes);
return $this;
}
}