2
0
mirror of https://github.com/opencultureconsulting/oai-pmh2.git synced 2025-03-30 00:00:30 +01:00
oai-pmh2/src/Entity/Set.php

213 lines
5.3 KiB
PHP
Raw Normal View History

2024-01-03 16:54:13 +01:00
<?php
/**
* OAI-PMH 2.0 Data Provider
* Copyright (C) 2023 Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
2024-01-08 22:37:09 +01:00
namespace OCC\OaiPmh2\Entity;
2024-01-03 16:54:13 +01:00
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
2024-01-08 22:37:09 +01:00
use OCC\OaiPmh2\Entity;
2024-01-04 08:56:11 +01:00
use Symfony\Component\Validator\Exception\ValidationFailedException;
2024-01-03 16:54:13 +01:00
/**
* Doctrine/ORM Entity for sets.
*
* @author Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
* @package opencultureconsulting/oai-pmh2
*/
#[ORM\Entity]
#[ORM\Table(name: 'sets')]
2024-01-08 22:37:09 +01:00
class Set extends Entity
2024-01-03 16:54:13 +01:00
{
/**
* The unique set spec.
*/
#[ORM\Id]
#[ORM\Column(type: 'string')]
private string $spec;
/**
* The name of the set.
*/
#[ORM\Column(type: 'string')]
private string $name;
/**
* A description of the set.
*/
#[ORM\Column(type: 'text', nullable: true)]
private ?string $description = null;
2024-01-03 16:54:13 +01:00
/**
* Collection of associated records.
*
* @var Collection<int, Record>
*/
2024-01-04 05:20:55 +01:00
#[ORM\ManyToMany(targetEntity: Record::class, mappedBy: 'sets', fetch: 'EXTRA_LAZY')]
2024-01-03 16:54:13 +01:00
private Collection $records;
/**
* Update bi-directional association with records.
*
* @param Record $record The record to add to this set
*
* @return void
*/
public function addRecord(Record $record): void
{
if (!$this->records->contains($record)) {
$this->records->add($record);
2024-01-04 08:56:11 +01:00
$record->addSet($this);
2024-01-03 16:54:13 +01:00
}
}
/**
* Get the description of this set.
*
* @return ?string The set description or NULL
2024-01-03 16:54:13 +01:00
*/
public function getDescription(): ?string
2024-01-03 16:54:13 +01:00
{
return $this->description;
}
/**
* Get the name of this set.
*
* @return string The set name
*/
public function getName(): string
{
return $this->name;
}
/**
* Get the set spec.
*
* @return string The set spec
*/
public function getSpec(): string
{
return $this->spec;
}
/**
* Get a collection of associated records.
*
2024-01-04 05:20:55 +01:00
* @return array<int, Record> The associated records
2024-01-03 16:54:13 +01:00
*/
2024-01-04 05:20:55 +01:00
public function getRecords(): array
2024-01-03 16:54:13 +01:00
{
2024-01-04 05:20:55 +01:00
return $this->records->toArray();
2024-01-03 16:54:13 +01:00
}
/**
* Whether this set has a description.
*
* @return bool TRUE if description exists, FALSE otherwise
*/
public function hasDescription(): bool
{
return isset($this->description);
}
2024-01-04 08:56:11 +01:00
/**
* Whether this set contains any records.
*
* @return bool TRUE if empty or FALSE otherwise
*/
public function isEmpty(): bool
{
return count($this->records) === 0;
}
2024-01-03 16:54:13 +01:00
/**
* Update bi-directional association with records.
*
* @param Record $record The record to remove from this set
*
* @return void
*/
public function removeRecord(Record $record): void
{
2024-01-04 08:56:11 +01:00
if ($this->records->contains($record)) {
$this->records->removeElement($record);
$record->removeSet($this);
}
2024-01-03 16:54:13 +01:00
}
/**
* Set the description for this set.
*
* @param ?string $description The description
2024-01-03 16:54:13 +01:00
*
* @return void
2024-01-04 08:56:11 +01:00
*
* @throws ValidationFailedException
*/
public function setDescription(?string $description): void
2024-01-04 08:56:11 +01:00
{
if (isset($description)) {
$description = trim($description);
try {
$description = $this->validateXml($description);
} catch (ValidationFailedException $exception) {
throw $exception;
}
2024-01-04 08:56:11 +01:00
}
$this->description = $description;
2024-01-04 08:56:11 +01:00
}
2024-01-10 11:45:39 +01:00
/**
* Set the name for this set.
*
2024-01-11 14:49:43 +01:00
* @param ?string $name The name (defaults to spec)
2024-01-10 11:45:39 +01:00
*
* @return void
*/
2024-01-11 14:49:43 +01:00
public function setName(?string $name): void
2024-01-10 11:45:39 +01:00
{
2024-01-11 14:49:43 +01:00
$this->name = $name ?? $this->getSpec();
2024-01-10 11:45:39 +01:00
}
2024-01-03 16:54:13 +01:00
/**
* Get new entity of set.
*
* @param string $spec The set spec
2024-01-11 14:49:43 +01:00
* @param ?string $name The name of the set (defaults to spec)
* @param ?string $description The description of the set
2024-01-04 08:56:11 +01:00
*
* @throws ValidationFailedException
2024-01-03 16:54:13 +01:00
*/
public function __construct(string $spec, ?string $name = null, string $description = null)
2024-01-03 16:54:13 +01:00
{
2024-01-04 08:56:11 +01:00
try {
2024-01-10 11:45:39 +01:00
$this->spec = $this->validateRegEx($spec, '/^([A-Za-z0-9\-_\.!~\*\'\(\)])+(:[A-Za-z0-9\-_\.!~\*\'\(\)]+)*$/');
$this->setName($name);
2024-01-04 08:56:11 +01:00
$this->setDescription($description);
$this->records = new ArrayCollection();
} catch (ValidationFailedException $exception) {
throw $exception;
}
2024-01-03 16:54:13 +01:00
}
}