'id' ); /** * Instanciates a new Mapper * * @param array $options */ public function __construct(array $options = array()) { $this->options = array_merge($this->options, $options); } /** * Transforms an object into an elastica object having the required keys * * @param object $object the object to convert * @param array $fields the keys we want to have in the returned array * @return Elastica_Document **/ public function transform($object, array $fields) { $class = get_class($object); $array = array(); foreach ($fields as $key) { $getter = 'get'.ucfirst($key); if (!method_exists($class, $getter)) { throw new RuntimeException(sprintf('The getter %s::%s does not exist', $class, $getter)); } $array[$key] = $this->normalizeValue($object->$getter()); } $identifierGetter = 'get'.ucfirst($this->options['identifier']); $identifier = $object->$identifierGetter(); return new Elastica_Document($identifier, array_filter($array)); } /** * Attempts to convert any type to a string or an array of strings * * @param mixed $value * @return string|array */ protected function normalizeValue($value) { $normalizeValue = function($v) { if (is_int($v) || is_float($v) || is_bool($v) || is_null($v)) { return $v; } elseif ($v instanceof \DateTime) { return (int) $v->format("U"); } else { return (string) $v; } }; if (is_array($value) || $value instanceof Traversable || $value instanceof ArrayAccess) { $value = array_map($normalizeValue, is_array($value) ? $value : iterator_to_array($value)); } else { $value = $normalizeValue($value); } return $value; } }