getValue() public method

Example: $path = new PropertyPath('child.name'); echo $path->getValue($object); equals echo $object->getChild()->getName(); This method first tries to find a public getter for each property in the path. The name of the getter must be the camel-cased property name prefixed with "get" or "is". If the getter does not exist, this method tries to find a public property. The value of the property is then returned. If neither is found, an exception is thrown.
public getValue ( object | array $objectOrArray ) : mixed
$objectOrArray object | array The object or array to traverse
return mixed The value at the end of the property path
Esempio n. 1
0
 /**
  * Initializes the choices and returns them
  *
  * The choices are generated from the models. If the models have a
  * composite identifier, the choices are indexed using ascending integers.
  * Otherwise the identifiers are used as indices.
  *
  * If the models were passed in the "choices" option, this method
  * does not have any significant overhead. Otherwise, if a query object
  * was passed in the "query" option, this query is now used and executed.
  * In the last case, all models for the underlying class are fetched.
  *
  * If the option "property" was passed, the property path in that option
  * is used as option values. Otherwise this method tries to convert
  * objects to strings using __toString().
  *
  * @return array  An array of choices
  */
 protected function load()
 {
     parent::load();
     if ($this->choices) {
         $models = $this->choices;
     } else {
         $models = $this->query->find();
     }
     $this->choices = array();
     $this->models = array();
     foreach ($models as $key => $model) {
         if ($this->propertyPath) {
             // If the property option was given, use it
             $value = $this->propertyPath->getValue($model);
         } else {
             // Otherwise expect a __toString() method in the model
             $value = (string) $model;
         }
         if (count($this->identifier) > 1) {
             // When the identifier consists of multiple field, use
             // naturally ordered keys to refer to the choices
             $this->choices[$key] = $value;
             $this->models[$key] = $model;
         } else {
             // When the identifier is a single field, index choices by
             // model ID for performance reasons
             $id = current($this->getIdentifierValues($model));
             $this->choices[$id] = $value;
             $this->models[$id] = $model;
         }
     }
 }
Esempio n. 2
0
 /**
  * Converts entities into choices with support for groups.
  *
  * The choices are generated from the entities. If the entities have a
  * composite identifier, the choices are indexed using ascending integers.
  * Otherwise the identifiers are used as indices.
  *
  * If the option "property" was passed, the property path in that option
  * is used as option values. Otherwise this method tries to convert
  * objects to strings using __toString().
  *
  * @param array  $entities An array of entities
  * @param string $group    A group name
  */
 private function loadEntities($entities, $group = null)
 {
     foreach ($entities as $key => $entity) {
         if (is_array($entity)) {
             // Entities are in named groups
             $this->loadEntities($entity, $key);
             continue;
         }
         if ($this->propertyPath) {
             // If the property option was given, use it
             $value = $this->propertyPath->getValue($entity);
         } else {
             $value = (string) $entity;
         }
         if (count($this->identifier) > 1) {
             // When the identifier consists of multiple field, use
             // naturally ordered keys to refer to the choices
             $id = $key;
         } else {
             // When the identifier is a single field, index choices by
             // entity ID for performance reasons
             $id = current($this->getIdentifierValues($entity));
         }
         if (null === $group) {
             // Flat list of choices
             $this->choices[$id] = $value;
         } else {
             // Nested choices
             $this->choices[$group][$id] = $value;
         }
         $this->entities[$id] = $entity;
     }
 }
 public function transform($entity)
 {
     if (null === $entity) {
         return null;
     }
     if (!$this->unitOfWork->isInIdentityMap($entity)) {
         throw new FormException('Entities passed to the choice field must be managed');
     }
     if ($this->property) {
         $propertyPath = new PropertyPath($this->property);
         return $propertyPath->getValue($entity);
     }
     return current($this->unitOfWork->getEntityIdentifier($entity));
 }
Esempio n. 4
0
 private function extractLabels($choices, array &$labels)
 {
     foreach ($choices as $i => $choice) {
         if (is_array($choice) || $choice instanceof \Traversable) {
             $labels[$i] = array();
             $this->extractLabels($choice, $labels[$i]);
         } elseif ($this->labelPath) {
             $labels[$i] = $this->labelPath->getValue($choice);
         } elseif (method_exists($choice, '__toString')) {
             $labels[$i] = (string) $choice;
         } else {
             throw new StringCastException('A "__toString()" method was not found on the objects of type "' . get_class($choice) . '" passed to the choice field. To read a custom getter instead, set the argument $labelPath to the desired property path.');
         }
     }
 }
 public function validate($value, Constraint $constraint)
 {
     // Aplica la ruta de la propiedad si es especificada
     if ($constraint->propertyPath) {
         $propertyPath = new PropertyPath($constraint->propertyPath);
         $value = $propertyPath->getValue($value);
     }
     // Chequea que el valor no esta en el array
     foreach ($this->collectionValues as $aValue) {
         if (spl_object_hash($value) == spl_object_hash($aValue)) {
             $this->context->addViolation($constraint->message, array());
         }
     }
     //if(in_array($value, $this->collectionValues))
     //  $this->context->addViolation($constraint->message, array());
     // Agrega el valor en el array para los siguientes items de la validacion
     $this->collectionValues[] = $value;
 }
 /**
  * @expectedException Symfony\Component\Form\Exception\InvalidPropertyException
  */
 public function testGetValueThrowsExceptionIfArrayAccessExpected()
 {
     $path = new PropertyPath('[firstName]');
     $path->getValue(new \stdClass());
 }
Esempio n. 7
0
 public function normalizeEntity($entity, $doNotExpandRelationsAndCollections = false)
 {
     // Make sure that the used is authorized to see this resource
     $canSee = $this->getConfigurationEntity()['can_see'];
     if (false === $canSee($this->securityContext, $entity)) {
         throw new AccessDeniedException();
     }
     $entityRepresentationClass = $this->getConfigurationEntity()['representation_class'];
     $entityRepresentation = new $entityRepresentationClass();
     $entityRepresentation->addLink($this->atomLinkFactory->create('self', $this->getUrlGenerator()->generateEntityUrl($entity)));
     $getEntityValue = function ($value) use($entity) {
         if ($value instanceof \Closure) {
             return $value($entity);
         }
         $propertyPath = new PropertyPath($value);
         return $propertyPath->getValue($entity);
     };
     // Properties
     $normalizeAttributes = $this->getConfigurationEntity()['normalize_attributes'];
     foreach ($normalizeAttributes as $key => $value) {
         $entityRepresentation->setAttribute($key, $getEntityValue($value));
     }
     // Elements
     $normalizeElements = $this->getConfigurationEntity()['normalize_elements'];
     foreach ($normalizeElements as $key => $value) {
         $entityRepresentation->setElement($key, $getEntityValue($value));
     }
     // Entity collections
     foreach ($this->getConfigurationEntityCollections() as $entityCollectionRel => $configurationEntityCollection) {
         if (isset($configurationEntityCollection['can_see']) && !$configurationEntityCollection['can_see']($this->securityContext, $entity)) {
             continue;
         }
         if ($doNotExpandRelationsAndCollections || !in_array($entityCollectionRel, $this->getConfigurationEntity()['expanded_collections'])) {
             $entityRepresentation->addLink($this->atomLinkFactory->create($entityCollectionRel, $this->getUrlGenerator()->generateEntityCollectionUrl($entity, $entityCollectionRel)));
         } else {
             $entityRelationSearchFormDescription = $this->createEntityCollectionSearchFormDescription($entity, $entityCollectionRel);
             $entityRelationPager = $this->getEntityCollectionPager($entity, $entityRelationSearchFormDescription->getData(), $entityCollectionRel);
             $entityRelationRepresentation = $this->normalizeEntityCollection($entity, $entityCollectionRel, $entityRelationPager, $entityRelationSearchFormDescription);
             $entityRelationRepresentation->rel = $this->atomLinkFactory->getRel($entityCollectionRel);
             $entityRepresentation->addCollection($entityRelationRepresentation);
         }
     }
     // Entity relations
     foreach ($this->getConfigurationEntityRelations() as $entityRelationRel => $entityRelationConfiguration) {
         $entityRelation = $this->getEntityRelation($entity, $entityRelationRel);
         if (null === $entityRelation) {
             continue;
         }
         $entityRelationClassName = ClassUtils::getRealClass(get_class($entityRelation));
         $entityRelationResource = $this->container->get($entityRelationConfiguration['resources'][$entityRelationClassName]);
         $canSeeEntityRelation = $entityRelationResource->getConfigurationEntity()['can_see'];
         if (!$canSeeEntityRelation($this->securityContext, $entityRelation) || $doNotExpandRelationsAndCollections || !in_array($entityRelationRel, $this->getConfigurationEntity()['expanded_relations'])) {
             $entityRepresentation->addLink($this->atomLinkFactory->create($entityRelationRel, $entityRelationResource->getUrlGenerator()->generateEntityUrl($entityRelation)));
         } else {
             $entityRelationRepresentation = $entityRelationResource->normalizeEntity($entityRelation, true);
             $entityRelationRepresentation->rel = $this->atomLinkFactory->getRel($entityRelationRel);
             $entityRepresentation->addRelation($entityRelationRepresentation);
         }
     }
     return $entityRepresentation;
 }
 public function testGetValueThrowsExceptionIfEmpty()
 {
     $path = new PropertyPath('foobar');
     $this->setExpectedException('Symfony\\Component\\Form\\Exception\\UnexpectedTypeException');
     $path->getValue('');
 }
 public function onBindNormData(FilterDataEvent $event)
 {
     $originalData = $event->getForm()->getNormData();
     // If we are not allowed to change anything, return immediately
     if (!$this->allowAdd && !$this->allowDelete) {
         // Don't set to the snapshot as then we are switching from the
         // original object to its copy, which might break things
         $event->setData($originalData);
         return;
     }
     $form = $event->getForm();
     $data = $event->getData();
     $childPropertyPath = null;
     $parentData = null;
     $addMethod = null;
     $removeMethod = null;
     $propertyPath = null;
     $plural = null;
     if ($form->hasParent() && $form->getAttribute('property_path')) {
         $propertyPath = new PropertyPath($form->getAttribute('property_path'));
         $childPropertyPath = $propertyPath;
         $parentData = $form->getParent()->getClientData();
         $lastElement = $propertyPath->getElement($propertyPath->getLength() - 1);
         // If the property path contains more than one element, the parent
         // data is the object at the parent property path
         if ($propertyPath->getLength() > 1) {
             $parentData = $propertyPath->getParent()->getValue($parentData);
             // Property path relative to $parentData
             $childPropertyPath = new PropertyPath($lastElement);
         }
         // The plural form is the last element of the property path
         $plural = ucfirst($lastElement);
     }
     if (null === $data) {
         $data = array();
     }
     if (!is_array($data) && !($data instanceof \Traversable && $data instanceof \ArrayAccess)) {
         throw new UnexpectedTypeException($data, 'array or (\\Traversable and \\ArrayAccess)');
     }
     if (null !== $originalData && !is_array($originalData) && !($originalData instanceof \Traversable && $originalData instanceof \ArrayAccess)) {
         throw new UnexpectedTypeException($originalData, 'array or (\\Traversable and \\ArrayAccess)');
     }
     // Check if the parent has matching methods to add/remove items
     if ($this->mergeStrategy & self::MERGE_INTO_PARENT && is_object($parentData)) {
         $reflClass = new \ReflectionClass($parentData);
         $addMethodNeeded = $this->allowAdd && !$this->addMethod;
         $removeMethodNeeded = $this->allowDelete && !$this->removeMethod;
         // Any of the two methods is required, but not yet known
         if ($addMethodNeeded || $removeMethodNeeded) {
             $singulars = (array) FormUtil::singularify($plural);
             foreach ($singulars as $singular) {
                 // Try to find adder, but don't override preconfigured one
                 if ($addMethodNeeded) {
                     $addMethod = 'add' . $singular;
                     // False alert
                     if (!$this->isAccessible($reflClass, $addMethod, 1)) {
                         $addMethod = null;
                     }
                 }
                 // Try to find remover, but don't override preconfigured one
                 if ($removeMethodNeeded) {
                     $removeMethod = 'remove' . $singular;
                     // False alert
                     if (!$this->isAccessible($reflClass, $removeMethod, 1)) {
                         $removeMethod = null;
                     }
                 }
                 // Found all that we need. Abort search.
                 if ((!$addMethodNeeded || $addMethod) && (!$removeMethodNeeded || $removeMethod)) {
                     break;
                 }
                 // False alert
                 $addMethod = null;
                 $removeMethod = null;
             }
         }
         // Set preconfigured adder
         if ($this->allowAdd && $this->addMethod) {
             $addMethod = $this->addMethod;
             if (!$this->isAccessible($reflClass, $addMethod, 1)) {
                 throw new FormException(sprintf('The public method "%s" could not be found on class %s', $addMethod, $reflClass->getName()));
             }
         }
         // Set preconfigured remover
         if ($this->allowDelete && $this->removeMethod) {
             $removeMethod = $this->removeMethod;
             if (!$this->isAccessible($reflClass, $removeMethod, 1)) {
                 throw new FormException(sprintf('The public method "%s" could not be found on class %s', $removeMethod, $reflClass->getName()));
             }
         }
     }
     // Calculate delta between $data and the snapshot created in PRE_BIND
     $itemsToDelete = array();
     $itemsToAdd = is_object($data) ? clone $data : $data;
     if ($this->dataSnapshot) {
         foreach ($this->dataSnapshot as $originalItem) {
             foreach ($data as $key => $item) {
                 if ($item === $originalItem) {
                     // Item found, next original item
                     unset($itemsToAdd[$key]);
                     continue 2;
                 }
             }
             // Item not found, remember for deletion
             foreach ($originalData as $key => $item) {
                 if ($item === $originalItem) {
                     $itemsToDelete[$key] = $item;
                     continue 2;
                 }
             }
         }
     }
     if ($addMethod || $removeMethod) {
         // If methods to add and to remove exist, call them now, if allowed
         if ($removeMethod) {
             foreach ($itemsToDelete as $item) {
                 $parentData->{$removeMethod}($item);
             }
         }
         if ($addMethod) {
             foreach ($itemsToAdd as $item) {
                 $parentData->{$addMethod}($item);
             }
         }
         $event->setData($childPropertyPath->getValue($parentData));
     } elseif ($this->mergeStrategy & self::MERGE_NORMAL) {
         if (!$originalData) {
             // No original data was set. Set it if allowed
             if ($this->allowAdd) {
                 $originalData = $data;
             }
         } else {
             // Original data is an array-like structure
             // Add and remove items in the original variable
             if ($this->allowDelete) {
                 foreach ($itemsToDelete as $key => $item) {
                     unset($originalData[$key]);
                 }
             }
             if ($this->allowAdd) {
                 foreach ($itemsToAdd as $key => $item) {
                     if (!isset($originalData[$key])) {
                         $originalData[$key] = $item;
                     } else {
                         $originalData[] = $item;
                     }
                 }
             }
         }
         $event->setData($originalData);
     }
 }
Esempio n. 10
0
 /**
  * @expectedException Symfony\Component\Form\Exception\UnexpectedTypeException
  */
 public function testGetValueThrowsExceptionIfEmpty()
 {
     $path = new PropertyPath('foobar');
     $path->getValue('');
 }
Esempio n. 11
0
 protected function getValue($object, $field)
 {
     $path = new PropertyPath($field);
     return $path->getValue($object);
 }
Esempio n. 12
0
 private function groupEntities($entities, $groupBy)
 {
     $grouped = array();
     foreach ($entities as $entity) {
         // Get group name from property path
         try {
             $path = new PropertyPath($groupBy);
             $group = (string) $path->getValue($entity);
         } catch (UnexpectedTypeException $e) {
             // PropertyPath cannot traverse entity
             $group = null;
         }
         if (empty($group)) {
             $grouped[] = $entity;
         } else {
             $grouped[$group][] = $entity;
         }
     }
     return $grouped;
 }
Esempio n. 13
0
 protected function renderChoiceWidgetOptions(FormView $view, $blockName, array $variables = array())
 {
     $options = array();
     $valuePropertyPath = new PropertyPath('value');
     $labelPropertyPath = new PropertyPath('label');
     foreach ($variables['options'] as $groupLabel => $choice) {
         if (is_array($choice) || $choice instanceof \Traversable) {
             $options = array_merge($options, $this->renderChoiceWidgetOptions($view, $blockName, array_merge($variables, array('options' => $choice))));
         } else {
             $option = new FormRepresentations\Option();
             $option->attributes['value'] = $valuePropertyPath->getValue($choice);
             if ($this->isSelectedChoice($choice, $variables['value'])) {
                 $option['attributes']['selected'] = 'selected';
             }
             $option->value = $labelPropertyPath->getValue($choice);
             $options[] = $option;
         }
     }
     return $options;
 }