2006-09-29 00:57:39 +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
|
|
|
|
* <http://www.phpdoctrine.com>.
|
|
|
|
*/
|
|
|
|
Doctrine::autoload('Doctrine_Relation');
|
|
|
|
/**
|
|
|
|
* Doctrine_Relation_ForeignKey
|
|
|
|
* This class represents a foreign key relation
|
|
|
|
*
|
2006-12-29 17:01:31 +03:00
|
|
|
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
|
|
|
|
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
|
|
|
|
* @package Doctrine
|
|
|
|
* @category Object Relational Mapping
|
|
|
|
* @link www.phpdoctrine.com
|
|
|
|
* @since 1.0
|
|
|
|
* @version $Revision$
|
|
|
|
*/
|
2006-12-29 17:40:47 +03:00
|
|
|
class Doctrine_Relation_ForeignKey extends Doctrine_Relation
|
|
|
|
{
|
2006-10-31 02:00:09 +03:00
|
|
|
/**
|
|
|
|
* processDiff
|
|
|
|
*
|
|
|
|
* @param Doctrine_Record $record
|
2007-02-17 01:54:59 +03:00
|
|
|
* @return void
|
2006-10-31 02:00:09 +03:00
|
|
|
*/
|
2006-12-29 17:40:47 +03:00
|
|
|
public function processDiff(Doctrine_Record $record)
|
|
|
|
{
|
2006-10-31 02:00:09 +03:00
|
|
|
$alias = $this->getAlias();
|
2006-12-29 17:01:31 +03:00
|
|
|
|
|
|
|
if ($this->isOneToOne()) {
|
|
|
|
if ($record->obtainOriginals($alias)
|
|
|
|
&& $record->obtainOriginals($alias)->obtainIdentifier() != $this->obtainReference($alias)->obtainIdentifier()
|
|
|
|
) {
|
2006-10-31 02:00:09 +03:00
|
|
|
$record->obtainOriginals($alias)->delete();
|
2006-12-29 17:01:31 +03:00
|
|
|
}
|
2006-10-31 02:00:09 +03:00
|
|
|
} else {
|
2006-12-29 17:01:31 +03:00
|
|
|
if ($record->hasReference($alias)) {
|
2006-10-31 02:00:09 +03:00
|
|
|
$new = $record->obtainReference($alias);
|
|
|
|
|
2006-12-29 17:01:31 +03:00
|
|
|
if ( ! $record->obtainOriginals($alias)) {
|
2006-10-31 02:00:09 +03:00
|
|
|
$record->loadReference($alias);
|
2006-12-29 17:01:31 +03:00
|
|
|
}
|
2006-10-31 02:00:09 +03:00
|
|
|
$operations = Doctrine_Relation::getDeleteOperations($record->obtainOriginals($alias), $new);
|
|
|
|
|
2006-12-29 17:01:31 +03:00
|
|
|
foreach ($operations as $r) {
|
2006-10-31 02:00:09 +03:00
|
|
|
$r->delete();
|
|
|
|
}
|
|
|
|
|
|
|
|
$record->assignOriginals($alias, clone $record->get($alias));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-09-29 00:57:39 +04:00
|
|
|
/**
|
|
|
|
* fetchRelatedFor
|
|
|
|
*
|
|
|
|
* fetches a component related to given record
|
|
|
|
*
|
|
|
|
* @param Doctrine_Record $record
|
|
|
|
* @return Doctrine_Record|Doctrine_Collection
|
|
|
|
*/
|
2006-12-29 17:40:47 +03:00
|
|
|
public function fetchRelatedFor(Doctrine_Record $record)
|
|
|
|
{
|
2007-02-17 01:54:59 +03:00
|
|
|
$id = $record->get($this->definition['local']);
|
2006-09-29 00:57:39 +04:00
|
|
|
|
2006-12-29 17:01:31 +03:00
|
|
|
if ($this->isOneToOne()) {
|
|
|
|
if (empty($id)) {
|
2007-02-17 15:38:02 +03:00
|
|
|
$related = $this->getTable()->create();
|
2006-09-29 00:57:39 +04:00
|
|
|
} else {
|
2007-02-17 15:38:02 +03:00
|
|
|
$dql = 'FROM ' . $this->getTable()->getComponentName()
|
|
|
|
. ' WHERE ' . $this->getTable()->getComponentName()
|
2007-02-17 01:54:59 +03:00
|
|
|
. '.' . $this->definition['foreign'] . ' = ?';
|
2007-01-05 00:08:56 +03:00
|
|
|
|
2007-02-17 15:38:02 +03:00
|
|
|
$coll = $this->getTable()->getConnection()->query($dql, array($id));
|
2006-09-29 00:57:39 +04:00
|
|
|
$related = $coll[0];
|
|
|
|
}
|
|
|
|
|
2007-02-17 01:54:59 +03:00
|
|
|
$related->set($this->definition['foreign'], $record, false);
|
2006-09-29 00:57:39 +04:00
|
|
|
|
2007-01-05 00:08:56 +03:00
|
|
|
} else {
|
|
|
|
|
2006-12-29 17:01:31 +03:00
|
|
|
if (empty($id)) {
|
2007-02-17 15:38:02 +03:00
|
|
|
$related = new Doctrine_Collection($this->getTable());
|
2006-09-29 00:57:39 +04:00
|
|
|
} else {
|
|
|
|
$query = $this->getRelationDql(1);
|
2007-02-17 15:38:02 +03:00
|
|
|
$related = $this->getTable()->getConnection()->query($query, array($id));
|
2006-09-29 00:57:39 +04:00
|
|
|
}
|
|
|
|
$related->setReference($record, $this);
|
|
|
|
}
|
|
|
|
return $related;
|
|
|
|
}
|
|
|
|
}
|