2007-09-21 22:01:08 +04:00
|
|
|
<?php
|
|
|
|
class Doctrine_Resource_Record extends Doctrine_Record_Abstract implements Countable, IteratorAggregate
|
|
|
|
{
|
|
|
|
public $data = array();
|
|
|
|
public $config = array();
|
|
|
|
public $model = null;
|
|
|
|
|
2007-09-21 22:19:19 +04:00
|
|
|
public function __construct($model, $config)
|
|
|
|
{
|
|
|
|
$this->model = $model;
|
|
|
|
$this->config = $config;
|
|
|
|
}
|
|
|
|
|
2007-09-21 22:01:08 +04:00
|
|
|
public function get($get)
|
|
|
|
{
|
|
|
|
if (!isset($this->data[$get])) {
|
|
|
|
$this->data[$get] = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->data[$get];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function set($set, $value)
|
|
|
|
{
|
|
|
|
$this->data[$set] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function count()
|
|
|
|
{
|
|
|
|
return count($this->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getIterator()
|
|
|
|
{
|
|
|
|
$data = $this->data;
|
|
|
|
|
|
|
|
return new ArrayIterator($data);
|
|
|
|
}
|
|
|
|
|
2007-09-22 05:32:48 +04:00
|
|
|
public function newRequest($type)
|
2007-09-21 22:01:08 +04:00
|
|
|
{
|
|
|
|
$request = array();
|
2007-09-22 05:32:48 +04:00
|
|
|
$request['format'] = isset($this->config['format']) ? $this->config['format']:'xml';
|
|
|
|
$request['type'] = $type;
|
2007-09-21 22:01:08 +04:00
|
|
|
$request['model'] = $this->model;
|
2007-09-22 05:32:48 +04:00
|
|
|
|
|
|
|
return $request;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function save()
|
|
|
|
{
|
|
|
|
$request = $this->newRequest('save');
|
|
|
|
$request['data'] = $this->toArray();
|
2007-09-21 22:01:08 +04:00
|
|
|
|
|
|
|
$response = Doctrine_Resource::request($this->config['url'], $request);
|
|
|
|
|
|
|
|
$array = Doctrine_Parser::load($response, $request['format']);
|
2007-09-21 22:19:19 +04:00
|
|
|
|
2007-09-22 05:32:48 +04:00
|
|
|
$resource = new Doctrine_Resource();
|
|
|
|
$this->data = $resource->hydrate(array($array), $this->model, $this->config)->getFirst()->data;
|
2007-09-21 22:01:08 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function toArray()
|
|
|
|
{
|
|
|
|
$array = array();
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|