renttek/magento2-search-criteria-processor
Composer 安装命令:
composer require renttek/magento2-search-criteria-processor
包简介
Generic processor for Magento 2 SearchCriteria
README 文档
README
Helper library for processing search M2 SearchCriteria in custom repositories/queries.
License: MIT
Why?
"But why? You can always use the default magento models & collections, yada yada" Yeah, I know, but I don't really like them, as they are really bloated (my opinion)
Features
This library contains processor classes which will add the following things to queries:
- Filtering (Filters & FilterGroups)
- Sorting
- Pagination
- Automatic joins*
(*kind of)
Basics
This library brings a set of Processor, which add conditions, limits etc. to an Magento\Framework\DB\Select instance.
Every Processor implements Renttek\SearchCriteriaProcessor\ProcessorInterface.
There are the following implementations of Renttek\SearchCriteriaProcessor\ProcessorInterface are provided:
| Class | Description |
|---|---|
| FilterProcessor | Applies Filters & FilterGroups as Where-Statements |
| SortOrderProcessor | Applies 1 or multiple SortOrders as OrderBy-Clauses |
| LimitProcessor | Applies PageSize & CurrentPage as Limit-Offset-Clauses |
| JoinProcessor | Adds Joins to the query based on used Tables/Fields |
| ChainProcessor | Takes multiple processors and applies all |
| DefaultSearchCriteriaProcessor | Applies the default Filter-, SortOrder- & LimitProcessor, Also Accepts Joins |
(Every Processor is in the Renttek\SearchCriteriaProcessor\ namespace)
The except for the JoinProcessor all processors should be are pretty simple and self-explanatory.
JoinProcessor
The JoinProcessor extracts used tables from the Magento\Framework\DB\Select and adds the joins to the query.
To achieve this, the JoinProcessor takes 2 parameters:
- A FieldExtractor (
Renttek\SearchCriteriaProcessor\FieldExtractor\FieldExtractorInterface) - A list of Joins (
Renttek\SearchCriteriaProcessor\Join\JoinInterface)
When processing the SearchCriteria, the processor runs the field extractor to get a list of used tables and fields.
This list is then matched the list of Joins to find an instance which supports the given table.
The Join itself is then added by the Join-Instance.
If no matching Join is found, an \RuntimeException is thrown.
List of provided FieldExtractors:
| Class | Description |
|---|---|
| FilterFieldExtractor | Extracts fields & tables from Filter & FilterGroups |
| SortOrderFieldExtractor | Extracts fields & tables from SortOrder |
| ChainFieldExtractor | Takes multiple extractors and applies all |
| DefaultFieldExtractor | Apples the default Filter- & Sortorder-Extractors |
(Every Processor is in the Renttek\SearchCriteriaProcessor\FieldExtractor namespace)
List of provided Joins:
| Class | Description |
|---|---|
| LeftJoin | Adds an Left-Join to the Select |
(Every Join is in the Renttek\SearchCriteriaProcessor\Join namespace)
Usage
In the most simple cases, the DefaultSearchCriteria is all that is needed:
class Bar { // ... /** @var DefaultSearchCriteriaProcessor */ private $searchCriteriaProcessor; public function getList(SearchCriteriaInterface $searchCriteria) { $select = $this->getBaseSelect(); $select = $this->searchCriteriaProcessor->process($select, $searchCriteria); return $this->fetchResult($select); } // ... }
If you want to customize the behaviour, simply implement a custom Processor using the ProcessorInterface.
Joins
To enable automatic Joins you have to use the JoinProcessor (directly or indirectly using the Default- or ChainProcessor)
and provide it with a FieldExtractor (e.g. Renttek\SearchCriteriaProcessor\FieldExtractor\DefaultFieldExtractor) and a
list of of Join-Instances.
This Library currently only provides a LeftJoin class.
The LeftJoin takes 3 parameters:
- Name of the field in the main-table to join by
- Name of the foreign table to join
- Name of the field in the foreign-table to join by
Installation
Via composer:
composer require renttek/magento2-search-criteria-processor
Contributing
You want to improve this library, report or even fix a bug? Awesome! Please, do it :)
You got questions? You can reach me here:
- Twitter: @Renttek92
- E-Mail: juliann+github@renttek.de
renttek/magento2-search-criteria-processor 适用场景与选型建议
renttek/magento2-search-criteria-processor 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.44k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2020 年 04 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 renttek/magento2-search-criteria-processor 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 renttek/magento2-search-criteria-processor 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 3.44k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: proprietary
- 更新时间: 2020-04-15