forked from FriendsOfSymfony/FOSElasticaBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMongoDBPagerProvider.php
74 lines (61 loc) · 1.96 KB
/
MongoDBPagerProvider.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
<?php
/*
* This file is part of the FOSElasticaBundle package.
*
* (c) FriendsOfSymfony <http://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\Persistence\ManagerRegistry;
use FOS\ElasticaBundle\Provider\PagerfantaPager;
use FOS\ElasticaBundle\Provider\PagerProviderInterface;
use Pagerfanta\Adapter\DoctrineODMMongoDBAdapter;
use Pagerfanta\Pagerfanta;
final class MongoDBPagerProvider implements PagerProviderInterface
{
/**
* @var string
*/
private $objectClass;
/**
* @var ManagerRegistry
*/
private $doctrine;
/**
* @var array
*/
private $baseOptions;
/**
* @var RegisterListenersService
*/
private $registerListenersService;
/**
* @param ManagerRegistry $doctrine
* @param RegisterListenersService $registerListenersService
* @param string $objectClass
* @param array $baseOptions
*/
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 = array())
{
$options = array_replace($this->baseOptions, $options);
$manager = $this->doctrine->getManagerForClass($this->objectClass);
$repository = $manager->getRepository($this->objectClass);
$pager = new PagerfantaPager(new Pagerfanta(
new DoctrineODMMongoDBAdapter(call_user_func([$repository, $options['query_builder_method']]))
));
$this->registerListenersService->register($manager, $pager, $options);
return $pager;
}
}