123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\SalesRule\Model;
- use Magento\Framework\Api\Search\FilterGroup;
- use Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface;
- use Magento\Framework\Api\SearchCriteriaInterface;
- use Magento\SalesRule\Model\ResourceModel\Rule\Collection;
- /**
- * Sales rule CRUD class
- *
- * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
- */
- class RuleRepository implements \Magento\SalesRule\Api\RuleRepositoryInterface
- {
- /**
- * @var \Magento\SalesRule\Model\RuleFactory
- */
- protected $ruleFactory;
- /**
- * @var \Magento\SalesRule\Api\Data\RuleInterfaceFactory
- */
- protected $ruleDataFactory;
- /**
- * @var \Magento\SalesRule\Api\Data\ConditionInterfaceFactory
- */
- protected $conditionDataFactory;
- /**
- * @var \Magento\SalesRule\Model\Converter\ToDataModel
- */
- protected $toDataModelConverter;
- /**
- * @var \Magento\SalesRule\Model\Converter\ToModel
- */
- protected $toModelConverter;
- /**
- * @var \Magento\Framework\Reflection\DataObjectProcessor
- */
- protected $dataObjectProcessor;
- /**
- * @var \Magento\SalesRule\Api\Data\RuleSearchResultInterfaceFactory
- */
- protected $searchResultFactory;
- /**
- * @var \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface
- */
- protected $extensionAttributesJoinProcessor;
- /**
- * @var \Magento\SalesRule\Model\ResourceModel\Rule\CollectionFactory
- */
- protected $ruleCollectionFactory;
- /**
- * @var \Magento\Framework\Api\SearchCriteria\CollectionProcessorInterface
- */
- private $collectionProcessor;
- /**
- * RuleRepository constructor.
- * @param RuleFactory $ruleFactory
- * @param \Magento\SalesRule\Api\Data\RuleInterfaceFactory $ruleDataFactory
- * @param \Magento\SalesRule\Api\Data\ConditionInterfaceFactory $conditionDataFactory
- * @param Converter\ToDataModel $toDataModelConverter
- * @param Converter\ToModel $toModelConverter
- * @param \Magento\SalesRule\Api\Data\RuleSearchResultInterfaceFactory $searchResultFactory
- * @param \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor
- * @param ResourceModel\Rule\CollectionFactory $ruleCollectionFactory
- * @param \Magento\Framework\Reflection\DataObjectProcessor $dataObjectProcessor
- * @param CollectionProcessorInterface|null $collectionProcessor
- * @SuppressWarnings(PHPMD.ExcessiveParameterList)
- */
- public function __construct(
- \Magento\SalesRule\Model\RuleFactory $ruleFactory,
- \Magento\SalesRule\Api\Data\RuleInterfaceFactory $ruleDataFactory,
- \Magento\SalesRule\Api\Data\ConditionInterfaceFactory $conditionDataFactory,
- \Magento\SalesRule\Model\Converter\ToDataModel $toDataModelConverter,
- \Magento\SalesRule\Model\Converter\ToModel $toModelConverter,
- \Magento\SalesRule\Api\Data\RuleSearchResultInterfaceFactory $searchResultFactory,
- \Magento\Framework\Api\ExtensionAttribute\JoinProcessorInterface $extensionAttributesJoinProcessor,
- \Magento\SalesRule\Model\ResourceModel\Rule\CollectionFactory $ruleCollectionFactory,
- \Magento\Framework\Reflection\DataObjectProcessor $dataObjectProcessor,
- CollectionProcessorInterface $collectionProcessor = null
- ) {
- $this->ruleFactory = $ruleFactory;
- $this->ruleDataFactory = $ruleDataFactory;
- $this->conditionDataFactory = $conditionDataFactory;
- $this->toDataModelConverter = $toDataModelConverter;
- $this->toModelConverter = $toModelConverter;
- $this->searchResultFactory = $searchResultFactory;
- $this->extensionAttributesJoinProcessor = $extensionAttributesJoinProcessor;
- $this->ruleCollectionFactory = $ruleCollectionFactory;
- $this->dataObjectProcessor = $dataObjectProcessor;
- $this->collectionProcessor = $collectionProcessor ?: $this->getCollectionProcessor();
- }
- /**
- * @inheritdoc
- */
- public function save(\Magento\SalesRule\Api\Data\RuleInterface $rule)
- {
- $model = $this->toModelConverter->toModel($rule);
- $model->save();
- $model->load($model->getId());
- $model->getStoreLabels();
- return $this->toDataModelConverter->toDataModel($model);
- }
- /**
- * @inheritdoc
- */
- public function getById($id)
- {
- $model = $this->ruleFactory->create()
- ->load($id);
- if (!$model->getId()) {
- throw new \Magento\Framework\Exception\NoSuchEntityException();
- }
- $model->getStoreLabels();
- $dataModel = $this->toDataModelConverter->toDataModel($model);
- return $dataModel;
- }
- /**
- * @inheritdoc
- */
- public function getList(SearchCriteriaInterface $searchCriteria)
- {
- /** @var \Magento\SalesRule\Model\ResourceModel\Rule\Collection $collection */
- $collection = $this->ruleCollectionFactory->create();
- $ruleInterfaceName = \Magento\SalesRule\Api\Data\RuleInterface::class;
- $this->extensionAttributesJoinProcessor->process($collection, $ruleInterfaceName);
- $this->collectionProcessor->process($searchCriteria, $collection);
- $rules = [];
- /** @var \Magento\SalesRule\Model\Rule $ruleModel */
- foreach ($collection->getItems() as $ruleModel) {
- $ruleModel->load($ruleModel->getId());
- $ruleModel->getStoreLabels();
- $rules[] = $this->toDataModelConverter->toDataModel($ruleModel);
- }
- $searchResults = $this->searchResultFactory->create();
- $searchResults->setSearchCriteria($searchCriteria);
- $searchResults->setItems($rules);
- $searchResults->setTotalCount($collection->getSize());
- return $searchResults;
- }
- /**
- * Delete sales rule by ID.
- *
- * @param int $id
- * @return bool true on success
- * @throws \Magento\Framework\Exception\NoSuchEntityException
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- public function deleteById($id)
- {
- $model = $this->ruleFactory->create()->load($id);
- if (!$model->getId()) {
- throw new \Magento\Framework\Exception\NoSuchEntityException();
- }
- $model->delete();
- return true;
- }
- /**
- * Helper function that adds a FilterGroup to the collection.
- *
- * @param FilterGroup $filterGroup
- * @param Collection $collection
- * @deprecated 101.0.0
- * @return void
- */
- protected function addFilterGroupToCollection(
- FilterGroup $filterGroup,
- Collection $collection
- ) {
- $fields = [];
- $conditions = [];
- foreach ($filterGroup->getFilters() as $filter) {
- $condition = $filter->getConditionType() ? $filter->getConditionType() : 'eq';
- $fields[] = $filter->getField();
- $conditions[] = [$condition => $filter->getValue()];
- }
- if ($fields) {
- $collection->addFieldToFilter($fields, $conditions);
- }
- }
- /**
- * 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;
- }
- }
|