operationPool = $operationPool; $this->metadataPool = $metadataPool; $this->typeResolver = $typeResolver; $this->callbackHandler = $callbackHandler; } /** * @param object $entity * @param string $identifier * @param array $arguments * @return mixed * @throws \LogicException */ public function load($entity, $identifier, $arguments = []) { $entityType = $this->typeResolver->resolve($entity); $operation = $this->operationPool->getOperation($entityType, 'read'); if (!($operation instanceof ReadInterface)) { throw new \LogicException(get_class($operation) . ' must implement ' . ReadInterface::class); } $entity = $operation->execute($entity, $identifier, $arguments); return $entity; } /** * @param object $entity * @param array $arguments * @return object * @throws \LogicException * @throws \Exception */ public function save($entity, $arguments = []) { $entityType = $this->typeResolver->resolve($entity); if ($this->has($entity)) { $operation = $this->operationPool->getOperation($entityType, 'update'); if (!($operation instanceof UpdateInterface)) { throw new \LogicException(get_class($operation) . ' must implement ' . UpdateInterface::class); } } else { $operation = $this->operationPool->getOperation($entityType, 'create'); if (!($operation instanceof CreateInterface)) { throw new \LogicException(get_class($operation) . ' must implement ' . CreateInterface::class); } } try { $entity = $operation->execute($entity, $arguments); $this->callbackHandler->process($entityType); } catch (\Exception $e) { $this->callbackHandler->clear($entityType); throw $e; } return $entity; } /** * @param object $entity * @return bool * @throws \LogicException */ public function has($entity) { $entityType = $this->typeResolver->resolve($entity); $operation = $this->operationPool->getOperation($entityType, 'checkIfExists'); if (!($operation instanceof CheckIfExistsInterface)) { throw new \LogicException(get_class($operation) . ' must implement ' . CheckIfExistsInterface::class); } return $operation->execute($entity); } /** * @param object $entity * @param array $arguments * @return bool * @throws \LogicException * @throws \Exception */ public function delete($entity, $arguments = []) { $entityType = $this->typeResolver->resolve($entity); $operation = $this->operationPool->getOperation($entityType, 'delete'); if (!($operation instanceof DeleteInterface)) { throw new \LogicException(get_class($operation) . ' must implement ' . DeleteInterface::class); } try { $operation->execute($entity, $arguments); $this->callbackHandler->process($entityType); } catch (\Exception $e) { $this->callbackHandler->clear($entityType); throw $e; } return true; } }