FOSElasticaBundle/Mapper/DoctrineMapper.php

74 lines
1.8 KiB
PHP
Raw Normal View History

<?php
namespace FOQ\ElasticaBundle\Mapper;
use FOQ\ElasticaBundle\MapperInterface;
use Doctrine\Common\Persistence\ObjectRepository;
/**
* Maps Elastica documents with Doctrine objects
* This mapper assumes an exact match between
* elastica documents ids and doctrine object ids
*/
class DoctrineMapper implements MapperInterface
{
/**
* Repository to fetch the objects from
*
* @var ObjectRepository
*/
protected $objectRepository = null;
/**
* Doctrine identifier field
*
* @var string
*/
protected $identifier = null;
/**
* Optional parameters
*
* @var array
*/
protected $options = array(
'hydrate' => true
);
/**
* Instanciates a new Mapper
*
* @param ObjectRepository objectRepository
* @param string $identifier
* @param array $options
*/
public function __construct(ObjectRepository $objectRepository, $identifier = 'id', array $options = array())
{
$this->objectRepository = $objectRepository;
$this->identifier = $identifier;
$this->options = array_merge($this->options, $options);
}
/**
* Transforms an array of elastica objects into an array of
* model objects fetched from the doctrine repository
*
* @return array
**/
public function fromElasticaObjects(array $elasticaObjects)
{
$ids = array_map(function($elasticaObject) {
return $elasticaObject->getId();
}, $elasticaObjects);
return $this->objectRepository
->createQueryBuilder()
->field($this->identifier)->in($ids)
->hydrate($this->options['hydrate'])
->getQuery()
->execute()
->toArray();
}
}