|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* |
|
4
|
|
|
* This file is part of the FOSElasticaBundle package. |
|
5
|
|
|
* |
|
6
|
|
|
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/> |
|
7
|
|
|
* |
|
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
9
|
|
|
* file that was distributed with this source code. |
|
10
|
|
|
*/ |
|
11
|
|
|
|
|
12
|
|
|
namespace FOS\ElasticaBundle\Doctrine; |
|
13
|
|
|
|
|
14
|
|
|
use Doctrine\Persistence\ManagerRegistry; |
|
15
|
|
|
use FOS\ElasticaBundle\Finder\FinderInterface; |
|
16
|
|
|
use FOS\ElasticaBundle\Manager\RepositoryManagerInterface; |
|
17
|
|
|
|
|
18
|
|
|
/** |
|
19
|
|
|
* @author Richard Miller <[email protected]> |
|
20
|
|
|
* |
|
21
|
|
|
* Allows retrieval of basic or custom repository for mapped Doctrine |
|
22
|
|
|
* entities/documents |
|
23
|
|
|
*/ |
|
24
|
|
|
class RepositoryManager implements RepositoryManagerInterface |
|
25
|
|
|
{ |
|
26
|
|
|
/** @var array */ |
|
27
|
|
|
protected $entities = []; |
|
28
|
|
|
|
|
29
|
|
|
/** @var array */ |
|
30
|
|
|
protected $repositories = []; |
|
31
|
|
|
|
|
32
|
|
|
/** @var ManagerRegistry */ |
|
33
|
|
|
protected $managerRegistry; |
|
34
|
|
|
|
|
35
|
|
|
/** |
|
36
|
|
|
* @var RepositoryManagerInterface |
|
37
|
|
|
*/ |
|
38
|
|
|
private $repositoryManager; |
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* @param ManagerRegistry $managerRegistry |
|
42
|
|
|
* @param RepositoryManagerInterface $repositoryManager |
|
43
|
|
|
*/ |
|
44
|
3 |
|
public function __construct(ManagerRegistry $managerRegistry, RepositoryManagerInterface $repositoryManager) |
|
45
|
|
|
{ |
|
46
|
3 |
|
$this->managerRegistry = $managerRegistry; |
|
47
|
3 |
|
$this->repositoryManager = $repositoryManager; |
|
48
|
3 |
|
} |
|
49
|
|
|
|
|
50
|
|
|
/** |
|
51
|
|
|
* {@inheritdoc} |
|
52
|
|
|
*/ |
|
53
|
|
|
public function addIndex($indexName, FinderInterface $finder, $repositoryName = null) |
|
54
|
|
|
{ |
|
55
|
|
|
throw new \LogicException(__METHOD__.' should not be called. Call addIndex on the main repository manager'); |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
3 |
|
public function addEntity($entityName, $indexName) |
|
59
|
|
|
{ |
|
60
|
3 |
|
$this->entities[$entityName] = $indexName; |
|
61
|
3 |
|
} |
|
62
|
|
|
|
|
63
|
|
|
/** |
|
64
|
|
|
* Returns custom repository if one specified otherwise returns a basic repository. |
|
65
|
|
|
* |
|
66
|
|
|
* {@inheritdoc} |
|
67
|
|
|
*/ |
|
68
|
3 |
|
public function getRepository($entityName) |
|
69
|
|
|
{ |
|
70
|
3 |
|
$realEntityName = $entityName; |
|
71
|
3 |
|
if (false !== strpos($entityName, ':')) { |
|
72
|
1 |
|
list($namespaceAlias, $simpleClassName) = explode(':', $entityName); |
|
73
|
1 |
|
$realEntityName = $this->managerRegistry->getAliasNamespace($namespaceAlias).'\\'.$simpleClassName; |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
3 |
|
if (isset($this->entities[$realEntityName])) { |
|
77
|
3 |
|
$realEntityName = $this->entities[$realEntityName]; |
|
78
|
|
|
} |
|
79
|
|
|
|
|
80
|
3 |
|
return $this->repositoryManager->getRepository($realEntityName); |
|
81
|
|
|
} |
|
82
|
|
|
} |
|
83
|
|
|
|