1
0
mirror of synced 2024-12-15 07:36:03 +03:00
doctrine2/lib/Doctrine/Resource/Record.php

157 lines
4.9 KiB
PHP
Raw Normal View History

2007-09-21 22:01:08 +04:00
<?php
2007-09-23 02:02:58 +04:00
/*
* $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_Resource_Record
*
* @author Konsta Vesterinen <kvesteri@cc.hut.fi>
2007-09-24 08:58:57 +04:00
* @author Jonathan H. Wage <jwage@mac.com>
2007-09-23 02:02:58 +04:00
* @package Doctrine
* @license http://www.opensource.org/licenses/lgpl-license.php LGPL
* @version $Revision$
* @category Object Relational Mapping
* @link www.phpdoctrine.com
* @since 1.0
*/
2007-09-21 22:01:08 +04:00
class Doctrine_Resource_Record extends Doctrine_Record_Abstract implements Countable, IteratorAggregate
{
2007-09-24 08:58:57 +04:00
protected $_data = array();
protected $_model = null;
protected $_schema = null;
2007-09-21 22:01:08 +04:00
2007-09-24 08:58:57 +04:00
public function __construct($model, $loadRelations = true)
2007-09-21 22:19:19 +04:00
{
2007-09-24 08:58:57 +04:00
$this->_model = $model;
$schema = $this->getConfig('schema');
if (isset($schema['schema'][$model]) && $schema['schema'][$model]) {
$this->_schema = $schema['schema'][$model];
}
if (isset($schema['relations'][$model]) && $schema['relations'][$model]) {
$this->_schema['relations'] = $schema['relations'][$model];
}
$this->initialize($loadRelations);
}
public function initialize($loadRelations = true)
{
if (!$this->_schema) {
return false;
}
$schema = $this->_schema;
$relations = $this->_schema['relations'];
if (isset($schema['columns'])) {
$columns = $schema['columns'];
foreach ($columns as $column) {
if (!isset($this->_data[$column['name']]) || $this->_data[$column['name']]) {
$this->_data[$column['name']] = null;
}
}
}
if (isset($schema['relations']) && $loadRelations) {
$relations = $schema['relations'];
foreach ($relations as $relation) {
if ($relation['type'] === Doctrine_Relation::ONE) {
$this->_data[$relation['alias']] = Doctrine_Resource_Client::getInstance()->newRecord($relation['class'], false);
} else {
$this->_data[$relation['alias']] = Doctrine_Resource_Client::getInstance()->newCollection($relation['class']);
}
}
}
}
public function getConfig($key = null)
{
return Doctrine_Resource_Client::getInstance()->getConfig($key);
2007-09-21 22:19:19 +04:00
}
2007-09-21 22:01:08 +04:00
public function get($get)
{
2007-09-24 08:58:57 +04:00
if (!isset($this->_data[$get])) {
$this->_data[$get] = null;
} else {
$this->_data[$get] = Doctrine_Resource_Client::getInstance()->newRecord($get, false);
2007-09-21 22:01:08 +04:00
}
2007-09-24 08:58:57 +04:00
return $this->_data[$get];
2007-09-21 22:01:08 +04:00
}
public function set($set, $value)
{
2007-09-24 08:58:57 +04:00
$this->_data[$set] = $value;
2007-09-21 22:01:08 +04:00
}
public function count()
{
2007-09-24 08:58:57 +04:00
return count($this->_data);
2007-09-21 22:01:08 +04:00
}
public function getIterator()
{
2007-09-24 08:58:57 +04:00
return new ArrayIterator($this->_data);
2007-09-22 05:32:48 +04:00
}
public function save()
{
2007-09-24 08:58:57 +04:00
$format = $this->getConfig('format') ? $this->getConfig('format'):'xml';
$request = new Doctrine_Resource_Request();
$request->set('format', $format);
$request->set('type', 'save');
$request->set('model', $this->getModel());
$request->set('data', $this->toArray());
2007-09-21 22:01:08 +04:00
2007-09-24 08:58:57 +04:00
$response = $request->execute();
2007-09-21 22:01:08 +04:00
2007-09-24 08:58:57 +04:00
$array = Doctrine_Parser::load($response, $format);
2007-09-21 22:19:19 +04:00
2007-09-24 08:58:57 +04:00
$this->_data = $request->hydrate(array($array), $this->_model)->getFirst()->_data;
}
public function getModel()
{
return $this->_model;
2007-09-21 22:01:08 +04:00
}
public function toArray()
{
$array = array();
2007-09-24 08:58:57 +04:00
foreach ($this->_data as $key => $value) {
2007-09-22 05:32:48 +04:00
if ($value instanceof Doctrine_Resource_Collection OR $value instanceof Doctrine_Resource_Record) {
2007-09-21 22:01:08 +04:00
$array[$key] = $value->toArray();
} else {
$array[$key] = $value;
}
}
return $array;
}
2007-09-23 02:02:58 +04:00
}