123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Model\ResourceModel\Delivery;
- use Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface;
- use Magento\Framework\Api\SearchCriteriaBuilder;
- use Magento\Framework\Api\SearchCriteriaInterface;
- use Magento\Framework\Exception\CouldNotDeleteException;
- use Magento\Framework\Exception\CouldNotSaveException;
- use Magento\Framework\Exception\NoSuchEntityException;
- use Temando\Shipping\Api\Data\Delivery\CollectionPointSearchResultInterface;
- use Temando\Shipping\Api\Data\Delivery\CollectionPointSearchResultInterfaceFactory;
- use Temando\Shipping\Api\Data\Delivery\QuoteCollectionPointInterface;
- use Temando\Shipping\Api\Data\Delivery\QuoteCollectionPointInterfaceFactory;
- use Temando\Shipping\Model\Delivery\QuoteCollectionPoint;
- use Temando\Shipping\Model\ResourceModel\Delivery\QuoteCollectionPoint as CollectionPointResource;
- use Temando\Shipping\Model\ResourceModel\Repository\QuoteCollectionPointRepositoryInterface;
- /**
- * Temando Quote Collection Point Repository
- *
- * @package Temando\Shipping\Model
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @author Sebastian Ertner <sebastian.ertner@netresearch.de>
- * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link https://www.temando.com/
- */
- class QuoteCollectionPointRepository implements QuoteCollectionPointRepositoryInterface
- {
- /**
- * @var CollectionPointResource
- */
- private $resource;
- /**
- * @var SearchCriteriaBuilder
- */
- private $searchCriteriaBuilder;
- /**
- * @var QuoteCollectionPointInterfaceFactory
- */
- private $collectionPointFactory;
- /**
- * @var CollectionPointSearchResultInterfaceFactory
- */
- private $collectionPointSearchResultFactory;
- /**
- * @var CollectionProcessorInterface
- */
- private $collectionProcessor;
- /**
- * CollectionPointRepository constructor.
- * @param CollectionPointResource $resource
- * @param SearchCriteriaBuilder $searchCriteriaBuilder
- * @param QuoteCollectionPointInterfaceFactory $collectionPointFactory
- * @param CollectionPointSearchResultInterfaceFactory $collectionPointSearchResultFactory
- * @param CollectionProcessorInterface $collectionProcessor
- */
- public function __construct(
- CollectionPointResource $resource,
- SearchCriteriaBuilder $searchCriteriaBuilder,
- QuoteCollectionPointInterfaceFactory $collectionPointFactory,
- CollectionPointSearchResultInterfaceFactory $collectionPointSearchResultFactory,
- CollectionProcessorInterface $collectionProcessor
- ) {
- $this->resource = $resource;
- $this->searchCriteriaBuilder = $searchCriteriaBuilder;
- $this->collectionPointFactory = $collectionPointFactory;
- $this->collectionPointSearchResultFactory = $collectionPointSearchResultFactory;
- $this->collectionProcessor = $collectionProcessor;
- }
- /**
- * Load collection point by entity id.
- *
- * @param int $entityId
- * @return QuoteCollectionPointInterface
- * @throws NoSuchEntityException
- */
- public function get($entityId)
- {
- /** @var QuoteCollectionPoint $collectionPoint */
- $collectionPoint = $this->collectionPointFactory->create();
- try {
- $this->resource->load($collectionPoint, $entityId);
- } catch (\Exception $exception) {
- throw new NoSuchEntityException(__('Collection point with id "%1" does not exist.', $entityId));
- }
- return $collectionPoint;
- }
- /**
- * Load selected collection point for given shipping address ID.
- *
- * Beware: AbstractDb::fetchItem will NOT decode serialized fields.
- *
- * @param int $addressId
- * @return QuoteCollectionPointInterface
- * @throws NoSuchEntityException
- */
- public function getSelected($addressId)
- {
- $this->searchCriteriaBuilder->addFilter(
- QuoteCollectionPointInterface::RECIPIENT_ADDRESS_ID,
- $addressId
- );
- $this->searchCriteriaBuilder->addFilter(
- QuoteCollectionPointInterface::SELECTED,
- true
- );
- $this->searchCriteriaBuilder->setPageSize(1);
- $this->searchCriteriaBuilder->setCurrentPage(1);
- $criteria = $this->searchCriteriaBuilder->create();
- /** @var CollectionPointSearchResult $searchResult */
- $searchResult = $this->getList($criteria);
- /** @var QuoteCollectionPointInterface $collectionPoint */
- $collectionPoint = $searchResult->fetchItem();
- if (!$collectionPoint) {
- $msg = __('Selected collection point for address id "%1" does not exist.', $addressId);
- throw new NoSuchEntityException($msg);
- }
- return $collectionPoint;
- }
- /**
- * Save collection point.
- *
- * @param QuoteCollectionPointInterface $collectionPoint
- * @return QuoteCollectionPointInterface
- * @throws CouldNotSaveException
- */
- public function save(QuoteCollectionPointInterface $collectionPoint)
- {
- try {
- /** @var QuoteCollectionPoint $collectionPoint */
- $this->resource->save($collectionPoint);
- } catch (\Exception $exception) {
- throw new CouldNotSaveException(__('Unable to save collection point.'), $exception);
- }
- return $collectionPoint;
- }
- /**
- * Delete collection point.
- *
- * @param QuoteCollectionPointInterface $collectionPoint
- * @return bool
- * @throws CouldNotDeleteException
- */
- public function delete(QuoteCollectionPointInterface $collectionPoint)
- {
- try {
- /** @var QuoteCollectionPoint $collectionPoint */
- $this->resource->delete($collectionPoint);
- } catch (\Exception $exception) {
- throw new CouldNotDeleteException(__('Unable to delete collection point.'), $exception);
- }
- return true;
- }
- /**
- * Load collection points.
- *
- * @param SearchCriteriaInterface $criteria
- * @return CollectionPointSearchResultInterface|CollectionPointSearchResult
- */
- public function getList(SearchCriteriaInterface $criteria)
- {
- /** @var CollectionPointSearchResult $searchResult */
- $searchResult = $this->collectionPointSearchResultFactory->create();
- $searchResult->addExpressionFieldToSelect(
- 'sort_distance',
- 'COALESCE({{sd}}, POW(2, 32))',
- ['sd' => QuoteCollectionPointInterface::DISTANCE]
- );
- $this->collectionProcessor->process($criteria, $searchResult);
- $searchResult->setSearchCriteria($criteria);
- return $searchResult;
- }
- }
|