Skip to content

Commit

Permalink
feat: add a remarks field on entities
Browse files Browse the repository at this point in the history
  • Loading branch information
maelgangloff committed Dec 28, 2024
1 parent c3c7de1 commit ee4d117
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 0 deletions.
31 changes: 31 additions & 0 deletions migrations/Version20241228180950.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?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 Version20241228180950 extends AbstractMigration
{
public function getDescription(): string
{
return 'add remarks field on entities';
}

public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE entity ADD remarks JSONB DEFAULT NULL');
}

public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE entity DROP remarks');
}
}
16 changes: 16 additions & 0 deletions src/Entity/Entity.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@ class Entity
#[Groups(['entity:item', 'domain:item'])]
private array $jCard = [];

#[ORM\Column(nullable: true)]
#[Groups(['entity:item', 'domain:item'])]
private ?array $remarks = null;

public function __construct()
{
$this->domainEntities = new ArrayCollection();
Expand Down Expand Up @@ -189,4 +193,16 @@ public function setJCard(array $jCard): static

return $this;
}

public function getRemarks(): ?array
{
return $this->remarks;
}

public function setRemarks(?array $remarks): static
{
$this->remarks = $remarks;

return $this;
}
}
4 changes: 4 additions & 0 deletions src/Service/RDAPService.php
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,10 @@ private function registerEntity(array $rdapEntity, array $roles, string $domain)

$entity->setHandle($rdapEntity['handle']);

if (array_key_exists('remarks', $rdapEntity) && is_array($rdapEntity['remarks'])) {
$entity->setRemarks($rdapEntity['remarks']);
}

if (array_key_exists('vcardArray', $rdapEntity) && !in_array($rdapEntity['handle'], self::IANA_RESERVED_IDS)) {
if (empty($entity->getJCard())) {
$entity->setJCard($rdapEntity['vcardArray']);
Expand Down

0 comments on commit ee4d117

Please sign in to comment.