FOSElasticaBundle/IndexManager.php

62 lines
1.4 KiB
PHP
Raw Normal View History

<?php
namespace FOS\ElasticaBundle;
class IndexManager
{
protected $indexesByName;
protected $defaultIndexName;
/**
* Constructor.
*
* @param array $indexesByName
* @param \Elastica_Index $defaultIndex
*/
public function __construct(array $indexesByName, \Elastica_Index $defaultIndex)
{
$this->indexesByName = $indexesByName;
$this->defaultIndexName = $defaultIndex->getName();
}
/**
* Gets all registered indexes
*
* @return array
*/
public function getAllIndexes()
{
return $this->indexesByName;
}
/**
2011-04-13 00:15:48 +02:00
* Gets an index by its name
*
* @param string $name Index to return, or the default index if null
* @return \Elastica_Index
* @throws \InvalidArgumentException if no index exists for the given name
*/
public function getIndex($name = null)
{
if (null === $name) {
$name = $this->defaultIndexName;
2011-04-13 00:15:48 +02:00
}
if (!isset($this->indexesByName[$name])) {
throw new \InvalidArgumentException(sprintf('The index "%s" does not exist', $name));
}
2011-04-13 00:15:48 +02:00
return $this->indexesByName[$name];
2011-04-13 00:15:48 +02:00
}
/**
* Gets the default index
*
* @return \Elastica_Index
*/
2011-04-13 00:15:48 +02:00
public function getDefaultIndex()
{
return $this->getIndex($this->defaultIndexName);
}
}