metadata = $metadata; $this->searchResultFactory = $searchResultFactory; $this->collectionProcessor = $collectionProcessor ?: $this->getCollectionProcessor(); } /** * Loads a specified order address. * * @param int $id * @return \Magento\Sales\Api\Data\OrderAddressInterface * @throws \Magento\Framework\Exception\InputException * @throws \Magento\Framework\Exception\NoSuchEntityException */ public function get($id) { if (!$id) { throw new InputException(__('An ID is needed. Set the ID and try again.')); } if (!isset($this->registry[$id])) { /** @var \Magento\Sales\Api\Data\OrderAddressInterface $entity */ $entity = $this->metadata->getNewInstance()->load($id); if (!$entity->getEntityId()) { throw new NoSuchEntityException( __("The entity that was requested doesn't exist. Verify the entity and try again.") ); } $this->registry[$id] = $entity; } return $this->registry[$id]; } /** * Find order addresses by criteria. * * @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria * @return \Magento\Sales\Model\ResourceModel\Order\Address\Collection */ public function getList(\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria) { /** @var \Magento\Sales\Model\ResourceModel\Order\Address\Collection $searchResult */ $searchResult = $this->searchResultFactory->create(); $this->collectionProcessor->process($searchCriteria, $searchResult); $searchResult->setSearchCriteria($searchCriteria); return $searchResult; } /** * Deletes a specified order address. * * @param \Magento\Sales\Api\Data\OrderAddressInterface $entity * @return bool * @throws CouldNotDeleteException */ public function delete(\Magento\Sales\Api\Data\OrderAddressInterface $entity) { try { $this->metadata->getMapper()->delete($entity); unset($this->registry[$entity->getEntityId()]); } catch (\Exception $e) { throw new CouldNotDeleteException(__("The order address couldn't be deleted."), $e); } return true; } /** * Deletes order address by Id. * * @param int $id * @return bool */ public function deleteById($id) { $entity = $this->get($id); return $this->delete($entity); } /** * Performs persist operations for a specified order address. * * @param \Magento\Sales\Api\Data\OrderAddressInterface $entity * @return \Magento\Sales\Api\Data\OrderAddressInterface * @throws CouldNotSaveException */ public function save(\Magento\Sales\Api\Data\OrderAddressInterface $entity) { try { $this->metadata->getMapper()->save($entity); $this->registry[$entity->getEntityId()] = $entity; } catch (\Exception $e) { throw new CouldNotSaveException(__("The order address couldn't be saved."), $e); } return $this->registry[$entity->getEntityId()]; } /** * Creates new order address instance. * * @return \Magento\Sales\Api\Data\OrderAddressInterface */ public function create() { return $this->metadata->getNewInstance(); } /** * Retrieve collection processor * * @deprecated 101.0.0 * @return CollectionProcessorInterface */ private function getCollectionProcessor() { if (!$this->collectionProcessor) { $this->collectionProcessor = \Magento\Framework\App\ObjectManager::getInstance()->get( \Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface::class ); } return $this->collectionProcessor; } }