-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSettingsEntryPoint.php
52 lines (43 loc) · 1.18 KB
/
SettingsEntryPoint.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
declare(strict_types=1);
namespace MeiliSearchBundle\Settings;
use MeiliSearchBundle\Index\IndexOrchestratorInterface;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use Throwable;
/**
* @author Guillaume Loulier <[email protected]>
*/
final class SettingsEntryPoint implements SettingsEntryPointInterface
{
/**
* @var IndexOrchestratorInterface
*/
private $indexOrchestrator;
/**
* @var LoggerInterface
*/
private $logger;
public function __construct(
IndexOrchestratorInterface $indexOrchestrator,
?LoggerInterface $logger = null
) {
$this->indexOrchestrator = $indexOrchestrator;
$this->logger = $logger ?: new NullLogger();
}
/**
* {@inheritdoc}
*/
public function getSettings(string $index): Settings
{
try {
$index = $this->indexOrchestrator->getIndex($index);
return Settings::create($index->getSettings());
} catch (Throwable $throwable) {
$this->logger->error('The settings cannot be retrieved', [
'error' => $throwable->getMessage(),
]);
throw $throwable;
}
}
}