Exemplo n.º 1
0
 /**
  * Retrieve an entity by its identifier.
  *
  * @param  mixed $id
  * @return mixed
  * @throws \Exception
  */
 public function find($id)
 {
     if ($entity = $this->manager->getById($id, $this->metadata->getClass())) {
         return $entity;
     }
     return $this->where([$this->metadata->getIdentifier() => $id])->first();
 }
Exemplo n.º 2
0
 /**
  * Map targets to entities
  *
  * @param array    $entities
  * @param array    $targets
  */
 protected function map($entities, $targets)
 {
     $identifier = $this->targetMetadata->getIdentifier();
     foreach ($targets as $target) {
         $id = $this->targetMetadata->getValue($target, $this->keyTo, true);
         foreach ($entities as $entity) {
             if ($id == $this->metadata->getValue($entity, $this->keyFrom, true)) {
                 $value = $this->metadata->getValue($entity, $this->name);
                 if (is_array($value)) {
                     $value[$this->targetMetadata->getValue($target, $identifier)] = $target;
                 } else {
                     $value = $target;
                 }
                 $this->metadata->setValue($entity, $this->name, $value);
             }
         }
     }
 }
Exemplo n.º 3
0
 /**
  * Loads an entity or creates a new one if it does not already exist.
  *
  * @param  Metadata $metadata
  * @param  array    $data
  * @return object
  */
 public function load(Metadata $metadata, array $data)
 {
     $id = $data[$metadata->getIdentifier()];
     $class = $metadata->getClass();
     if (isset($this->entities[$class][$id])) {
         $entity = $this->entities[$class][$id];
     } else {
         $entity = $metadata->newInstance();
         $metadata->setValues($entity, $data, true, true);
         $this->identifiers[spl_object_hash($entity)] = $id;
         $this->entities[$class][$id] = $entity;
     }
     $this->manager->dispatchEvent(Events::postLoad, $entity, $metadata);
     return $entity;
 }
Exemplo n.º 4
0
 /**
  * Hydrates all rows returned by the passed statement instance at once.
  *
  * @param  object   $statement
  * @param  Metadata $metadata
  * @return mixed
  */
 public function hydrateAll($statement, Metadata $metadata)
 {
     $result = [];
     $identifier = $metadata->getIdentifier();
     while ($row = $statement->fetch(\PDO::FETCH_ASSOC)) {
         $entity = $this->entities->load($metadata, $row);
         $result[$metadata->getValue($entity, $identifier)] = $entity;
     }
     return $result;
 }