mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
feat: add jCard column to entity
This commit is contained in:
35
migrations/Version20240712133612.php
Normal file
35
migrations/Version20240712133612.php
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace DoctrineMigrations;
|
||||||
|
|
||||||
|
use Doctrine\DBAL\Schema\Schema;
|
||||||
|
use Doctrine\Migrations\AbstractMigration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
|
*/
|
||||||
|
final class Version20240712133612 extends AbstractMigration
|
||||||
|
{
|
||||||
|
public function getDescription(): string
|
||||||
|
{
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
|
||||||
|
public function up(Schema $schema): void
|
||||||
|
{
|
||||||
|
// this up() migration is auto-generated, please modify it to your needs
|
||||||
|
$this->addSql('ALTER TABLE entity ADD COLUMN j_card CLOB NOT NULL');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function down(Schema $schema): void
|
||||||
|
{
|
||||||
|
// this down() migration is auto-generated, please modify it to your needs
|
||||||
|
$this->addSql('CREATE TEMPORARY TABLE __temp__entity AS SELECT handle FROM entity');
|
||||||
|
$this->addSql('DROP TABLE entity');
|
||||||
|
$this->addSql('CREATE TABLE entity (handle VARCHAR(255) NOT NULL, PRIMARY KEY(handle))');
|
||||||
|
$this->addSql('INSERT INTO entity (handle) SELECT handle FROM __temp__entity');
|
||||||
|
$this->addSql('DROP TABLE __temp__entity');
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -85,7 +85,9 @@ class TestController extends AbstractController
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
if ($entity === null) $entity = new Entity();
|
if ($entity === null) $entity = new Entity();
|
||||||
$entity->setHandle($rdapEntity['handle']);
|
$entity
|
||||||
|
->setHandle($rdapEntity['handle'])
|
||||||
|
->setJCard($rdapEntity['vcardArray']);
|
||||||
|
|
||||||
|
|
||||||
foreach ($rdapEntity['events'] as $rdapEntityEvent) {
|
foreach ($rdapEntity['events'] as $rdapEntityEvent) {
|
||||||
@@ -142,7 +144,9 @@ class TestController extends AbstractController
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
if ($entity === null) $entity = new Entity();
|
if ($entity === null) $entity = new Entity();
|
||||||
$entity->setHandle($rdapEntity['handle']);
|
$entity
|
||||||
|
->setHandle($rdapEntity['handle'])
|
||||||
|
->setJCard($rdapEntity['vcardArray']);
|
||||||
|
|
||||||
|
|
||||||
foreach ($rdapEntity['events'] as $rdapEntityEvent) {
|
foreach ($rdapEntity['events'] as $rdapEntityEvent) {
|
||||||
@@ -158,6 +162,8 @@ class TestController extends AbstractController
|
|||||||
->setEntity($entity)
|
->setEntity($entity)
|
||||||
->setAction(EventAction::from($rdapEntityEvent['eventAction']))
|
->setAction(EventAction::from($rdapEntityEvent['eventAction']))
|
||||||
->setDate(new DateTimeImmutable($rdapEntityEvent['eventDate'])));
|
->setDate(new DateTimeImmutable($rdapEntityEvent['eventDate'])));
|
||||||
|
$em->persist($entity);
|
||||||
|
$em->flush();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -32,6 +32,9 @@ class Entity
|
|||||||
#[ORM\OneToMany(targetEntity: EntityEvent::class, mappedBy: 'entity', cascade: ['persist'], orphanRemoval: true)]
|
#[ORM\OneToMany(targetEntity: EntityEvent::class, mappedBy: 'entity', cascade: ['persist'], orphanRemoval: true)]
|
||||||
private Collection $events;
|
private Collection $events;
|
||||||
|
|
||||||
|
#[ORM\Column]
|
||||||
|
private array $jCard = [];
|
||||||
|
|
||||||
public function __construct()
|
public function __construct()
|
||||||
{
|
{
|
||||||
$this->domainEntities = new ArrayCollection();
|
$this->domainEntities = new ArrayCollection();
|
||||||
@@ -141,4 +144,16 @@ class Entity
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getJCard(): array
|
||||||
|
{
|
||||||
|
return $this->jCard;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setJCard(array $jCard): static
|
||||||
|
{
|
||||||
|
$this->jCard = $jCard;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user