2008-05-06 17:41:22 +04:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* This software consists of voluntary contributions made by many individuals
|
|
|
|
* and is licensed under the LGPL. For more information, see
|
2009-05-11 14:43:27 +04:00
|
|
|
* <http://www.doctrine-project.org>.
|
2008-05-06 17:41:22 +04:00
|
|
|
*/
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
namespace Doctrine\ORM;
|
2008-05-30 16:09:24 +04:00
|
|
|
|
2008-05-06 17:41:22 +04:00
|
|
|
/**
|
2008-07-10 21:17:58 +04:00
|
|
|
* A repository provides the illusion of an in-memory Entity store.
|
2008-05-06 17:41:22 +04:00
|
|
|
* Base class for all custom user-defined repositories.
|
|
|
|
* Provides basic finder methods, common to all repositories.
|
|
|
|
*
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
2008-09-13 14:36:58 +04:00
|
|
|
* @link www.doctrine-project.org
|
2008-05-06 17:41:22 +04:00
|
|
|
* @since 2.0
|
|
|
|
* @version $Revision$
|
|
|
|
* @author Roman Borschel <roman@code-factory.org>
|
|
|
|
*/
|
2009-01-22 22:38:10 +03:00
|
|
|
class EntityRepository
|
2008-05-06 17:41:22 +04:00
|
|
|
{
|
|
|
|
protected $_entityName;
|
2008-05-17 16:22:24 +04:00
|
|
|
protected $_em;
|
2008-05-06 17:41:22 +04:00
|
|
|
protected $_classMetadata;
|
|
|
|
|
2009-01-22 22:38:10 +03:00
|
|
|
public function __construct($em, \Doctrine\ORM\Mapping\ClassMetadata $classMetadata)
|
2008-05-06 17:41:22 +04:00
|
|
|
{
|
2009-01-07 20:46:02 +03:00
|
|
|
$this->_entityName = $classMetadata->getClassName();
|
|
|
|
$this->_em = $em;
|
2008-05-06 17:41:22 +04:00
|
|
|
$this->_classMetadata = $classMetadata;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* creates a new Doctrine_Query object and adds the component name
|
|
|
|
* of this table as the query 'from' part
|
|
|
|
*
|
|
|
|
* @param string Optional alias name for component aliasing.
|
|
|
|
*
|
|
|
|
* @return Doctrine_Query
|
|
|
|
*/
|
|
|
|
protected function _createQuery($alias = '')
|
|
|
|
{
|
|
|
|
if ( ! empty($alias)) {
|
|
|
|
$alias = ' ' . trim($alias);
|
|
|
|
}
|
2008-05-24 21:10:45 +04:00
|
|
|
return $this->_em->createQuery()->from($this->_entityName . $alias);
|
2008-05-06 17:41:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-05-14 01:20:34 +04:00
|
|
|
* Clears the repository, causing all managed entities to become detached.
|
2008-05-06 17:41:22 +04:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function clear()
|
|
|
|
{
|
2008-09-13 14:36:58 +04:00
|
|
|
$this->_em->getUnitOfWork()->clearIdentitiesForEntity($this->_classMetadata->getRootClassName());
|
2008-05-06 17:41:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds an entity by its primary key.
|
|
|
|
*
|
2008-05-14 01:20:34 +04:00
|
|
|
* @param $id The identifier.
|
|
|
|
* @param int $hydrationMode The hydration mode to use.
|
|
|
|
* @return mixed Array or Doctrine_Entity or false if no result
|
2008-05-06 17:41:22 +04:00
|
|
|
*/
|
|
|
|
public function find($id, $hydrationMode = null)
|
|
|
|
{
|
|
|
|
if (is_array($id) && count($id) > 1) {
|
|
|
|
// it's a composite key. keys = field names, values = values.
|
|
|
|
$values = array_values($id);
|
|
|
|
$keys = array_keys($id);
|
|
|
|
} else {
|
|
|
|
$values = is_array($id) ? array_values($id) : array($id);
|
|
|
|
$keys = $this->_classMetadata->getIdentifier();
|
|
|
|
}
|
2008-08-31 22:27:16 +04:00
|
|
|
|
2009-01-07 20:46:02 +03:00
|
|
|
// Check identity map first
|
|
|
|
if ($entity = $this->_em->getUnitOfWork()->tryGetById($id, $this->_classMetadata->getRootClassName())) {
|
|
|
|
return $entity; // Hit!
|
|
|
|
}
|
2008-05-06 17:41:22 +04:00
|
|
|
|
2009-05-11 14:43:27 +04:00
|
|
|
$dql = 'select e from ' . $this->_classMetadata->getClassName() . ' e where ';
|
|
|
|
$conditionDql = '';
|
|
|
|
$paramIndex = 1;
|
|
|
|
foreach ($keys as $key) {
|
|
|
|
if ($conditionDql != '') $conditionDql .= ' and ';
|
|
|
|
$conditionDql .= 'e.' . $key . ' = ?' . $paramIndex++;
|
|
|
|
}
|
|
|
|
$dql .= $conditionDql;
|
|
|
|
|
|
|
|
$q = $this->_em->createQuery($dql);
|
|
|
|
foreach ($values as $index => $value) {
|
|
|
|
$q->setParameter($index, $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $q->getSingleResult($hydrationMode);
|
2008-05-06 17:41:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-05-24 21:10:45 +04:00
|
|
|
* Finds all entities in the repository.
|
2008-05-06 17:41:22 +04:00
|
|
|
*
|
2008-05-24 21:10:45 +04:00
|
|
|
* @param int $hydrationMode
|
|
|
|
* @return mixed
|
2008-05-06 17:41:22 +04:00
|
|
|
*/
|
|
|
|
public function findAll($hydrationMode = null)
|
|
|
|
{
|
|
|
|
return $this->_createQuery()->execute(array(), $hydrationMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* findBy
|
|
|
|
*
|
|
|
|
* @param string $column
|
|
|
|
* @param string $value
|
|
|
|
* @param string $hydrationMode
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function findBy($fieldName, $value, $hydrationMode = null)
|
|
|
|
{
|
|
|
|
return $this->_createQuery()->where($fieldName . ' = ?')->execute(array($value), $hydrationMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* findOneBy
|
|
|
|
*
|
|
|
|
* @param string $column
|
|
|
|
* @param string $value
|
|
|
|
* @param string $hydrationMode
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected function findOneBy($fieldName, $value, $hydrationMode = null)
|
|
|
|
{
|
|
|
|
$results = $this->_createQuery()->where($fieldName . ' = ?')->limit(1)->execute(
|
|
|
|
array($value), $hydrationMode);
|
|
|
|
return $hydrationMode === Doctrine::HYDRATE_ARRAY ? array_shift($results) : $results->getFirst();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* findBySql
|
|
|
|
* finds records with given SQL where clause
|
|
|
|
* returns a collection of records
|
|
|
|
*
|
|
|
|
* @param string $dql DQL after WHERE clause
|
|
|
|
* @param array $params query parameters
|
2009-02-17 23:15:04 +03:00
|
|
|
* @param int $hydrationMode Query::HYDRATE_ARRAY or Query::HYDRATE_RECORD
|
2008-05-06 17:41:22 +04:00
|
|
|
* @return Doctrine_Collection
|
|
|
|
*
|
|
|
|
* @todo This actually takes DQL, not SQL, but it requires column names
|
|
|
|
* instead of field names. This should be fixed to use raw SQL instead.
|
|
|
|
*/
|
|
|
|
public function findBySql($dql, array $params = array(), $hydrationMode = null)
|
|
|
|
{
|
|
|
|
return $this->_createQuery()->where($dql)->execute($params, $hydrationMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* findByDql
|
|
|
|
* finds records with given DQL where clause
|
|
|
|
* returns a collection of records
|
|
|
|
*
|
|
|
|
* @param string $dql DQL after WHERE clause
|
|
|
|
* @param array $params query parameters
|
2009-02-17 23:15:04 +03:00
|
|
|
* @param int $hydrationMode Query::HYDRATE_ARRAY or Query::HYDRATE_RECORD
|
2008-05-06 17:41:22 +04:00
|
|
|
* @return Doctrine_Collection
|
|
|
|
*/
|
|
|
|
public function findByDql($dql, array $params = array(), $hydrationMode = null)
|
|
|
|
{
|
2009-05-11 14:43:27 +04:00
|
|
|
$query = new Query($this->_em);
|
2008-05-06 17:41:22 +04:00
|
|
|
$component = $this->getComponentName();
|
|
|
|
$dql = 'FROM ' . $component . ' WHERE ' . $dql;
|
|
|
|
|
|
|
|
return $query->query($dql, $params, $hydrationMode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds support for magic finders.
|
|
|
|
* findByColumnName, findByRelationAlias
|
|
|
|
* findById, findByContactId, etc.
|
|
|
|
*
|
|
|
|
* @return void
|
2008-09-13 14:36:58 +04:00
|
|
|
* @throws BadMethodCallException If the method called is an invalid find* method
|
2008-05-06 17:41:22 +04:00
|
|
|
* or no find* method at all and therefore an invalid
|
|
|
|
* method call.
|
|
|
|
*/
|
|
|
|
public function __call($method, $arguments)
|
|
|
|
{
|
|
|
|
if (substr($method, 0, 6) == 'findBy') {
|
|
|
|
$by = substr($method, 6, strlen($method));
|
|
|
|
$method = 'findBy';
|
|
|
|
} else if (substr($method, 0, 9) == 'findOneBy') {
|
|
|
|
$by = substr($method, 9, strlen($method));
|
|
|
|
$method = 'findOneBy';
|
|
|
|
} else {
|
2008-09-13 14:36:58 +04:00
|
|
|
throw new BadMethodCallException("Undefined method '$method'.");
|
2008-05-06 17:41:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($by)) {
|
|
|
|
if ( ! isset($arguments[0])) {
|
2009-02-19 10:00:54 +03:00
|
|
|
throw \Doctrine\Common\DoctrineException::updateMe('You must specify the value to findBy.');
|
2008-05-06 17:41:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
$fieldName = Doctrine::tableize($by);
|
|
|
|
$hydrationMode = isset($arguments[1]) ? $arguments[1]:null;
|
|
|
|
|
|
|
|
if ($this->_classMetadata->hasField($fieldName)) {
|
|
|
|
return $this->$method($fieldName, $arguments[0], $hydrationMode);
|
|
|
|
} else if ($this->_classMetadata->hasRelation($by)) {
|
|
|
|
$relation = $this->_classMetadata->getRelation($by);
|
|
|
|
if ($relation['type'] === Doctrine_Relation::MANY) {
|
2009-02-19 10:00:54 +03:00
|
|
|
throw \Doctrine\Common\DoctrineException::updateMe('Cannot findBy many relationship.');
|
2008-05-06 17:41:22 +04:00
|
|
|
}
|
|
|
|
return $this->$method($relation['local'], $arguments[0], $hydrationMode);
|
|
|
|
} else {
|
2009-02-19 10:00:54 +03:00
|
|
|
throw \Doctrine\Common\DoctrineException::updateMe('Cannot find by: ' . $by . '. Invalid field or relationship alias.');
|
2008-05-06 17:41:22 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|