feat: add Connector to WatchListTrigger

This commit is contained in:
Maël Gangloff
2024-07-28 23:39:38 +02:00
parent 1f5c1f812b
commit 50c5b75067
7 changed files with 77 additions and 67 deletions

View File

@@ -32,14 +32,14 @@ class Connector
private array $authData = [];
/**
* @var Collection<int, WatchList>
* @var Collection<int, WatchListTrigger>
*/
#[ORM\OneToMany(targetEntity: WatchList::class, mappedBy: 'connector')]
private Collection $watchLists;
#[ORM\OneToMany(targetEntity: WatchListTrigger::class, mappedBy: 'connector')]
private Collection $watchListTriggers;
public function __construct()
{
$this->watchLists = new ArrayCollection();
$this->watchListTriggers = new ArrayCollection();
}
public function getId(): ?int
@@ -84,29 +84,29 @@ class Connector
}
/**
* @return Collection<int, WatchList>
* @return Collection<int, WatchListTrigger>
*/
public function getWatchLists(): Collection
public function getWatchListTriggers(): Collection
{
return $this->watchLists;
return $this->watchListTriggers;
}
public function addWatchList(WatchList $watchList): static
public function addWatchListTrigger(WatchListTrigger $watchListTrigger): static
{
if (!$this->watchLists->contains($watchList)) {
$this->watchLists->add($watchList);
$watchList->setConnector($this);
if (!$this->watchListTriggers->contains($watchListTrigger)) {
$this->watchListTriggers->add($watchListTrigger);
$watchListTrigger->setConnector($this);
}
return $this;
}
public function removeWatchList(WatchList $watchList): static
public function removeWatchListTrigger(WatchListTrigger $watchListTrigger): static
{
if ($this->watchLists->removeElement($watchList)) {
if ($this->watchListTriggers->removeElement($watchListTrigger)) {
// set the owning side to null (unless already changed)
if ($watchList->getConnector() === $this) {
$watchList->setConnector(null);
if ($watchListTrigger->getConnector() === $this) {
$watchListTrigger->setConnector(null);
}
}

View File

@@ -2,9 +2,11 @@
namespace App\Entity;
use App\Config\ConnectorInterface;
use Doctrine\ORM\Mapping\Entity;
#[Entity]
class OVHConnector extends Connector
class OVHConnector extends Connector implements ConnectorInterface
{
}

View File

@@ -69,9 +69,6 @@ class WatchList
#[SerializedName("triggers")]
private Collection $watchListTriggers;
#[ORM\ManyToOne(inversedBy: 'watchLists')]
private ?Connector $connector = null;
public function __construct()
{
$this->token = Uuid::v4();
@@ -149,16 +146,4 @@ class WatchList
return $this;
}
public function getConnector(): ?Connector
{
return $this->connector;
}
public function setConnector(?Connector $connector): static
{
$this->connector = $connector;
return $this;
}
}

View File

@@ -26,6 +26,9 @@ class WatchListTrigger
#[Groups(['watchlist:list', 'watchlist:item', 'watchlist:create', 'watchlist:update'])]
private ?TriggerAction $action = null;
#[ORM\ManyToOne(inversedBy: 'watchListTriggers')]
private ?Connector $connector = null;
public function getEvent(): ?string
{
return $this->event;
@@ -61,4 +64,16 @@ class WatchListTrigger
return $this;
}
public function getConnector(): ?Connector
{
return $this->connector;
}
public function setConnector(?Connector $connector): static
{
$this->connector = $connector;
return $this;
}
}