forked from FriendsOfSymfony/FOSElasticaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PHPCRPagerProvider.php
85 lines (70 loc) · 2.41 KB
/
PHPCRPagerProvider.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/*
* This file is part of the FOSElasticaBundle package.
*
* (c) FriendsOfSymfony <https://friendsofsymfony.github.com/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FOS\ElasticaBundle\Doctrine;
use Doctrine\ODM\PHPCR\DocumentManagerInterface;
use Doctrine\ODM\PHPCR\Translation\LocaleChooser\LocaleChooser;
use Doctrine\Persistence\ManagerRegistry;
use FOS\ElasticaBundle\Provider\PagerfantaPager;
use FOS\ElasticaBundle\Provider\PagerInterface;
use FOS\ElasticaBundle\Provider\PagerProviderInterface;
use Pagerfanta\Doctrine\PHPCRODM\QueryAdapter;
use Pagerfanta\Pagerfanta;
final class PHPCRPagerProvider implements PagerProviderInterface
{
public const ENTITY_ALIAS = 'a';
/**
* @var string
*/
private $objectClass;
/**
* @var ManagerRegistry
*/
private $doctrine;
/**
* @var array
*/
private $baseOptions;
/**
* @var RegisterListenersService
*/
private $registerListenersService;
/**
* @param string $objectClass
*/
public function __construct(ManagerRegistry $doctrine, RegisterListenersService $registerListenersService, $objectClass, array $baseOptions)
{
$this->doctrine = $doctrine;
$this->objectClass = $objectClass;
$this->baseOptions = $baseOptions;
$this->registerListenersService = $registerListenersService;
}
/**
* {@inheritdoc}
*/
public function provide(array $options = []): PagerInterface
{
$options = \array_replace($this->baseOptions, $options);
/** @var DocumentManagerInterface $manager */
$manager = $this->doctrine->getManagerForClass($this->objectClass);
if (isset($options['locale'])) {
/** @var LocaleChooser $localeChooser */
$localeChooser = $manager->getLocaleChooserStrategy();
$localeChooser->setLocale($options['locale']);
$manager->setLocaleChooserStrategy($localeChooser);
}
$repository = $manager->getRepository($this->objectClass);
$adapter = new QueryAdapter(
\call_user_func([$repository, $options['query_builder_method']], static::ENTITY_ALIAS)
);
$pager = new PagerfantaPager(new Pagerfanta($adapter));
$this->registerListenersService->register($manager, $pager, $options);
return $pager;
}
}