2024-01-03 16:54:13 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OAI-PMH 2.0 Data Provider
|
2024-01-22 15:06:07 +01:00
|
|
|
* Copyright (C) 2024 Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
|
2024-01-03 16:54:13 +01:00
|
|
|
*
|
|
|
|
* 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
|
2024-01-22 15:06:07 +01:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2024-01-03 16:54:13 +01:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2024-01-22 15:06:07 +01:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2024-01-03 16:54:13 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace OCC\OaiPmh2;
|
|
|
|
|
|
|
|
use OCC\Basics\Traits\Singleton;
|
2024-09-30 19:37:29 +02:00
|
|
|
use OCC\OaiPmh2\Validator\ConfigurationValidator;
|
2024-01-03 16:54:13 +01:00
|
|
|
use Symfony\Component\Filesystem\Exception\FileNotFoundException;
|
|
|
|
use Symfony\Component\Filesystem\Path;
|
|
|
|
use Symfony\Component\Validator\Exception\ValidationFailedException;
|
|
|
|
use Symfony\Component\Yaml\Yaml;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reads, validates and provides configuration settings.
|
|
|
|
*
|
|
|
|
* @author Sebastian Meyer <sebastian.meyer@opencultureconsulting.com>
|
2024-07-13 18:49:54 +02:00
|
|
|
* @package OAIPMH2
|
2024-01-03 16:54:13 +01:00
|
|
|
*
|
2024-09-30 19:37:29 +02:00
|
|
|
* @property-read string $repositoryName Common name of this repository
|
|
|
|
* @property-read string $adminEmail Repository contact's e-mail address
|
|
|
|
* @property-read string $database Database's data source name (DSN)
|
|
|
|
* @property-read array $metadataPrefix Array of served metadata prefixes
|
|
|
|
* @property-read string $deletedRecords Repository's deleted records policy
|
|
|
|
* @property-read int $maxRecords Maximum number of records served per request
|
|
|
|
* @property-read int $tokenValid Number of seconds resumption tokens are valid
|
2024-01-03 16:54:13 +01:00
|
|
|
*
|
|
|
|
* @template TKey of string
|
2024-01-04 08:56:11 +01:00
|
|
|
* @template TValue of array|int|string
|
2024-01-03 16:54:13 +01:00
|
|
|
*/
|
2024-09-30 19:37:29 +02:00
|
|
|
final class Configuration
|
2024-01-03 16:54:13 +01:00
|
|
|
{
|
|
|
|
use Singleton;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fully qualified path to the configuration file.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected const CONFIG_FILE = __DIR__ . '/../config/config.yml';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The configuration settings.
|
|
|
|
*
|
|
|
|
* @var array<TKey, TValue>
|
|
|
|
*/
|
|
|
|
protected readonly array $settings;
|
|
|
|
|
|
|
|
/**
|
2024-09-30 19:37:29 +02:00
|
|
|
* Load and validate configuration settings from YAML file.
|
2024-01-03 16:54:13 +01:00
|
|
|
*
|
2024-07-20 12:00:15 +02:00
|
|
|
* @throws FileNotFoundException if configuration file does not exist
|
|
|
|
* @throws ValidationFailedException if configuration file is not valid
|
2024-01-03 16:54:13 +01:00
|
|
|
*/
|
2024-09-30 19:37:29 +02:00
|
|
|
private function __construct()
|
2024-01-03 16:54:13 +01:00
|
|
|
{
|
2024-10-14 14:51:42 +02:00
|
|
|
$configPath = Path::canonicalize(self::CONFIG_FILE);
|
|
|
|
if (!is_readable($configPath)) {
|
2024-01-03 16:54:13 +01:00
|
|
|
throw new FileNotFoundException(
|
2024-10-14 14:51:42 +02:00
|
|
|
'Configuration file not found or not readable.',
|
|
|
|
500,
|
|
|
|
null,
|
|
|
|
$configPath
|
2024-01-03 16:54:13 +01:00
|
|
|
);
|
|
|
|
}
|
2024-07-13 21:37:20 +02:00
|
|
|
/** @var array<TKey, TValue> */
|
2024-10-14 14:51:42 +02:00
|
|
|
$config = Yaml::parseFile($configPath);
|
|
|
|
$violations = ConfigurationValidator::validate($config);
|
2024-01-03 16:54:13 +01:00
|
|
|
if ($violations->count() > 0) {
|
2024-10-14 14:51:42 +02:00
|
|
|
throw new ValidationFailedException(null, $violations);
|
2024-01-03 16:54:13 +01:00
|
|
|
}
|
2024-09-30 19:37:29 +02:00
|
|
|
$this->settings = $config;
|
2024-01-03 16:54:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Magic getter for $this->settings.
|
|
|
|
*
|
|
|
|
* @param TKey $name The setting to retrieve
|
|
|
|
*
|
2024-09-30 19:37:29 +02:00
|
|
|
* @return ?TValue The setting or NULL
|
2024-01-03 16:54:13 +01:00
|
|
|
*/
|
|
|
|
public function __get(string $name): mixed
|
|
|
|
{
|
|
|
|
return $this->settings[$name] ?? null;
|
|
|
|
}
|
|
|
|
}
|