123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- <?php
- /**
- * @package ActiveRecord
- */
- namespace ActiveRecord;
- use XmlWriter;
- /**
- * Base class for Model serializers.
- *
- * All serializers support the following options:
- *
- * <ul>
- * <li><b>only:</b> a string or array of attributes to be included.</li>
- * <li><b>except:</b> a string or array of attributes to be excluded.</li>
- * <li><b>methods:</b> a string or array of methods to invoke. The method's name will be used as a key for the final attributes array
- * along with the method's returned value</li>
- * <li><b>include:</b> a string or array of associated models to include in the final serialized product.</li>
- * <li><b>only_method:</b> a method that's called and only the resulting array is serialized
- * <li><b>skip_instruct:</b> set to true to skip the <?xml ...?> declaration.</li>
- * </ul>
- *
- * Example usage:
- *
- * <code>
- * # include the attributes id and name
- * # run $model->encoded_description() and include its return value
- * # include the comments association
- * # include posts association with its own options (nested)
- * $model->to_json(array(
- * 'only' => array('id','name', 'encoded_description'),
- * 'methods' => array('encoded_description'),
- * 'include' => array('comments', 'posts' => array('only' => 'id'))
- * ));
- *
- * # except the password field from being included
- * $model->to_xml(array('except' => 'password')));
- * </code>
- *
- * @package ActiveRecord
- * @link http://www.phpactiverecord.org/guides/utilities#topic-serialization
- */
- abstract class Serialization
- {
- protected $model;
- protected $options;
- protected $attributes;
- /**
- * The default format to serialize DateTime objects to.
- *
- * @see DateTime
- */
- public static $DATETIME_FORMAT = 'iso8601';
- /**
- * Set this to true if the serializer needs to create a nested array keyed
- * on the name of the included classes such as for xml serialization.
- *
- * Setting this to true will produce the following attributes array when
- * the include option was used:
- *
- * <code>
- * $user = array('id' => 1, 'name' => 'Tito',
- * 'permissions' => array(
- * 'permission' => array(
- * array('id' => 100, 'name' => 'admin'),
- * array('id' => 101, 'name' => 'normal')
- * )
- * )
- * );
- * </code>
- *
- * Setting to false will produce this:
- *
- * <code>
- * $user = array('id' => 1, 'name' => 'Tito',
- * 'permissions' => array(
- * array('id' => 100, 'name' => 'admin'),
- * array('id' => 101, 'name' => 'normal')
- * )
- * );
- * </code>
- *
- * @var boolean
- */
- protected $includes_with_class_name_element = false;
- /**
- * Constructs a {@link Serialization} object.
- *
- * @param Model $model The model to serialize
- * @param array &$options Options for serialization
- * @return Serialization
- */
- public function __construct(Model $model, &$options)
- {
- $this->model = $model;
- $this->options = $options;
- $this->attributes = $model->attributes();
- $this->parse_options();
- }
- private function parse_options()
- {
- $this->check_only();
- $this->check_except();
- $this->check_methods();
- $this->check_include();
- $this->check_only_method();
- }
- private function check_only()
- {
- if (isset($this->options['only']))
- {
- $this->options_to_a('only');
- $exclude = array_diff(array_keys($this->attributes),$this->options['only']);
- $this->attributes = array_diff_key($this->attributes,array_flip($exclude));
- }
- }
- private function check_except()
- {
- if (isset($this->options['except']) && !isset($this->options['only']))
- {
- $this->options_to_a('except');
- $this->attributes = array_diff_key($this->attributes,array_flip($this->options['except']));
- }
- }
- private function check_methods()
- {
- if (isset($this->options['methods']))
- {
- $this->options_to_a('methods');
- foreach ($this->options['methods'] as $method)
- {
- if (method_exists($this->model, $method))
- $this->attributes[$method] = $this->model->$method();
- }
- }
- }
-
- private function check_only_method()
- {
- if (isset($this->options['only_method']))
- {
- $method = $this->options['only_method'];
- if (method_exists($this->model, $method))
- $this->attributes = $this->model->$method();
- }
- }
- private function check_include()
- {
- if (isset($this->options['include']))
- {
- $this->options_to_a('include');
- $serializer_class = get_class($this);
- foreach ($this->options['include'] as $association => $options)
- {
- if (!is_array($options))
- {
- $association = $options;
- $options = array();
- }
- try {
- $assoc = $this->model->$association;
- if (!is_array($assoc))
- {
- $serialized = new $serializer_class($assoc, $options);
- $this->attributes[$association] = $serialized->to_a();;
- }
- else
- {
- $includes = array();
- foreach ($assoc as $a)
- {
- $serialized = new $serializer_class($a, $options);
- if ($this->includes_with_class_name_element)
- $includes[strtolower(get_class($a))][] = $serialized->to_a();
- else
- $includes[] = $serialized->to_a();
- }
- $this->attributes[$association] = $includes;
- }
- } catch (UndefinedPropertyException $e) {
- ;//move along
- }
- }
- }
- }
- final protected function options_to_a($key)
- {
- if (!is_array($this->options[$key]))
- $this->options[$key] = array($this->options[$key]);
- }
- /**
- * Returns the attributes array.
- * @return array
- */
- final public function to_a()
- {
- foreach ($this->attributes as &$value)
- {
- if ($value instanceof \DateTime)
- $value = $value->format(self::$DATETIME_FORMAT);
- }
- return $this->attributes;
- }
- /**
- * Returns the serialized object as a string.
- * @see to_s
- * @return string
- */
- final public function __toString()
- {
- return $this->to_s();
- }
- /**
- * Performs the serialization.
- * @return string
- */
- abstract public function to_s();
- };
- /**
- * Array serializer.
- *
- * @package ActiveRecord
- */
- class ArraySerializer extends Serialization
- {
- public static $include_root = false;
- public function to_s()
- {
- return self::$include_root ? array(strtolower(get_class($this->model)) => $this->to_a()) : $this->to_a();
- }
- }
- /**
- * JSON serializer.
- *
- * @package ActiveRecord
- */
- class JsonSerializer extends ArraySerializer
- {
- public static $include_root = false;
- public function to_s()
- {
- parent::$include_root = self::$include_root;
- return json_encode(parent::to_s());
- }
- }
- /**
- * XML serializer.
- *
- * @package ActiveRecord
- */
- class XmlSerializer extends Serialization
- {
- private $writer;
- public function __construct(Model $model, &$options)
- {
- $this->includes_with_class_name_element = true;
- parent::__construct($model,$options);
- }
- public function to_s()
- {
- return $this->xml_encode();
- }
- private function xml_encode()
- {
- $this->writer = new XmlWriter();
- $this->writer->openMemory();
- $this->writer->startDocument('1.0', 'UTF-8');
- $this->writer->startElement(strtolower(denamespace(($this->model))));
- $this->write($this->to_a());
- $this->writer->endElement();
- $this->writer->endDocument();
- $xml = $this->writer->outputMemory(true);
- if (@$this->options['skip_instruct'] == true)
- $xml = preg_replace('/<\?xml version.*?\?>/','',$xml);
- return $xml;
- }
- private function write($data, $tag=null)
- {
- foreach ($data as $attr => $value)
- {
- if ($tag != null)
- $attr = $tag;
- if (is_array($value) || is_object($value))
- {
- if (!is_int(key($value)))
- {
- $this->writer->startElement($attr);
- $this->write($value);
- $this->writer->endElement();
- }
- else
- $this->write($value, $attr);
- continue;
- }
- $this->writer->writeElement($attr, $value);
- }
- }
- }
- /**
- * CSV serializer.
- *
- * @package ActiveRecord
- */
- class CsvSerializer extends Serialization
- {
- public static $delimiter = ',';
- public static $enclosure = '"';
- public function to_s()
- {
- if (@$this->options['only_header'] == true) return $this->header();
- return $this->row();
- }
- private function header()
- {
- return $this->to_csv(array_keys($this->to_a()));
- }
- private function row()
- {
- return $this->to_csv($this->to_a());
- }
- private function to_csv($arr)
- {
- $outstream = fopen('php://temp', 'w');
- fputcsv($outstream, $arr, self::$delimiter, self::$enclosure);
- rewind($outstream);
- $buffer = trim(stream_get_contents($outstream));
- fclose($outstream);
- return $buffer;
- }
- }
- ?>
|