2021-08-10 09:21:24 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Daniel Siepmann <coding@daniel-siepmann.de>
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace WerkraumMedia\ThueCat\Domain\Import\Entity;
|
|
|
|
|
2021-08-18 13:54:18 +02:00
|
|
|
abstract class Minimum
|
2021-08-10 09:21:24 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* URL to the original source at ThüCAT.
|
|
|
|
* Not unique within our system. We have one entity per language,
|
|
|
|
* while ThüCAT has a single entity containing all languages.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $id = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Short name of the thing.
|
|
|
|
* Can be translated.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $name = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Long text describing the thing.
|
|
|
|
* Can be translated.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = '';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* URL to official version of this thing outside of ThüCAT.
|
|
|
|
*
|
2021-08-31 08:10:46 +02:00
|
|
|
* @var string[]
|
2021-08-10 09:21:24 +02:00
|
|
|
*/
|
2021-08-31 08:10:46 +02:00
|
|
|
protected $urls = [];
|
2021-08-10 09:21:24 +02:00
|
|
|
|
|
|
|
public function getId(): string
|
|
|
|
{
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function hasName(): bool
|
|
|
|
{
|
|
|
|
return trim($this->name) !== '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getName(): string
|
|
|
|
{
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getDescription(): string
|
|
|
|
{
|
|
|
|
return $this->description;
|
|
|
|
}
|
|
|
|
|
2021-08-31 08:10:46 +02:00
|
|
|
public function getUrls(): array
|
2021-08-10 09:21:24 +02:00
|
|
|
{
|
2021-08-31 08:10:46 +02:00
|
|
|
return $this->urls;
|
2021-08-10 09:21:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal for mapping via Symfony component.
|
|
|
|
*/
|
|
|
|
public function setId(string $url): void
|
|
|
|
{
|
|
|
|
$this->id = $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal for mapping via Symfony component.
|
|
|
|
*/
|
|
|
|
public function setName(string $name): void
|
|
|
|
{
|
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal for mapping via Symfony component.
|
|
|
|
*/
|
|
|
|
public function setDescription(string $description): void
|
|
|
|
{
|
|
|
|
$this->description = $description;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal for mapping via Symfony component.
|
2023-11-30 13:52:23 +01:00
|
|
|
*
|
2021-08-31 08:10:46 +02:00
|
|
|
* @param string|array $url
|
2021-08-10 09:21:24 +02:00
|
|
|
*/
|
2021-08-31 08:10:46 +02:00
|
|
|
public function setUrl($url): void
|
2021-08-10 09:21:24 +02:00
|
|
|
{
|
2021-08-31 08:10:46 +02:00
|
|
|
if (is_string($url)) {
|
|
|
|
$url = [$url];
|
|
|
|
}
|
|
|
|
$this->urls = $url;
|
2021-08-10 09:21:24 +02:00
|
|
|
}
|
2021-08-18 13:54:18 +02:00
|
|
|
|
|
|
|
public static function getPriority(): int
|
|
|
|
{
|
|
|
|
return 10;
|
|
|
|
}
|
2021-08-10 09:21:24 +02:00
|
|
|
}
|