fix: a domain may not have status

This commit is contained in:
Maël Gangloff 2024-07-23 14:30:21 +02:00
parent fa11235270
commit 75789b750d
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629
3 changed files with 50 additions and 5 deletions

View File

@ -0,0 +1,47 @@
<?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 Version20240723122603 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('CREATE TEMPORARY TABLE __temp__domain AS SELECT ldh_name, tld_id, handle, status, created_at, updated_at FROM domain');
$this->addSql('DROP TABLE domain');
$this->addSql('CREATE TABLE domain (ldh_name VARCHAR(255) NOT NULL, tld_id VARCHAR(63) NOT NULL, handle VARCHAR(255) DEFAULT NULL, status CLOB DEFAULT NULL --(DC2Type:simple_array)
, created_at DATE NOT NULL --(DC2Type:date_immutable)
, updated_at DATE NOT NULL --(DC2Type:date_immutable)
, PRIMARY KEY(ldh_name), CONSTRAINT FK_A7A91E0B50F7084E FOREIGN KEY (tld_id) REFERENCES tld (tld) ON UPDATE NO ACTION ON DELETE NO ACTION NOT DEFERRABLE INITIALLY IMMEDIATE)');
$this->addSql('INSERT INTO domain (ldh_name, tld_id, handle, status, created_at, updated_at) SELECT ldh_name, tld_id, handle, status, created_at, updated_at FROM __temp__domain');
$this->addSql('DROP TABLE __temp__domain');
$this->addSql('CREATE INDEX IDX_A7A91E0B50F7084E ON domain (tld_id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE TEMPORARY TABLE __temp__domain AS SELECT ldh_name, tld_id, handle, status, created_at, updated_at FROM domain');
$this->addSql('DROP TABLE domain');
$this->addSql('CREATE TABLE domain (ldh_name VARCHAR(255) NOT NULL, tld_id VARCHAR(63) NOT NULL, handle VARCHAR(255) DEFAULT NULL, status CLOB NOT NULL --(DC2Type:simple_array)
, created_at DATE NOT NULL --(DC2Type:date_immutable)
, updated_at DATE NOT NULL --(DC2Type:date_immutable)
, PRIMARY KEY(ldh_name), CONSTRAINT FK_A7A91E0B50F7084E FOREIGN KEY (tld_id) REFERENCES tld (tld) NOT DEFERRABLE INITIALLY IMMEDIATE)');
$this->addSql('INSERT INTO domain (ldh_name, tld_id, handle, status, created_at, updated_at) SELECT ldh_name, tld_id, handle, status, created_at, updated_at FROM __temp__domain');
$this->addSql('DROP TABLE __temp__domain');
$this->addSql('CREATE INDEX IDX_A7A91E0B50F7084E ON domain (tld_id)');
}
}

View File

@ -71,7 +71,7 @@ class Domain
#[SerializedName('entities')]
private Collection $domainEntities;
#[ORM\Column(type: Types::SIMPLE_ARRAY)]
#[ORM\Column(type: Types::SIMPLE_ARRAY, nullable: true)]
#[Groups(['domain:item'])]
private array $status = [];

View File

@ -87,11 +87,9 @@ readonly class RDAPService
$domain = $this->domainRepository->findOneBy(["ldhName" => strtolower($res['ldhName'])]);
if ($domain === null) $domain = new Domain();
$domain
->setTld($tld)
->setLdhName($res['ldhName'])
->setStatus($res['status']);
$domain->setTld($tld)->setLdhName($res['ldhName']);
if (array_key_exists('status', $res)) $domain->setStatus($res['status']);
if (array_key_exists('handle', $res)) $domain->setHandle($res['handle']);
$this->em->persist($domain);