SearchParamsBuilder.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521
  1. <?php
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. */
  20. namespace OpenSearch\Util;
  21. use OpenSearch\Generated\Search\Aggregate;
  22. use OpenSearch\Generated\Search\Distinct;
  23. use OpenSearch\Generated\Search\Config;
  24. use OpenSearch\Generated\Search\Constant;
  25. use OpenSearch\Generated\Search\Order;
  26. use OpenSearch\Generated\Search\Rank;
  27. use OpenSearch\Generated\Search\RankType;
  28. use OpenSearch\Generated\Search\SearchFormat;
  29. use OpenSearch\Generated\Search\SearchParams;
  30. use OpenSearch\Generated\Search\Sort;
  31. use OpenSearch\Generated\Search\SortField;
  32. use OpenSearch\Generated\Search\Summary;
  33. use OpenSearch\Generated\Search\DeepPaging;
  34. use OpenSearch\Generated\Search\Abtest;
  35. /**
  36. * 搜索配置项。
  37. */
  38. class SearchParamsBuilder {
  39. const SORT_INCREASE = 1;
  40. const SORT_DECREASE = 0;
  41. private $searchParams;
  42. public function __construct($opts = array()) {
  43. $config = new Config();
  44. $this->searchParams = new SearchParams(array('config' => $config));
  45. if (isset($opts['start'])) {
  46. $this->setStart($opts['start']);
  47. }
  48. if (isset($opts['hits'])) {
  49. $this->setHits($opts['hits']);
  50. }
  51. if (isset($opts['format'])) {
  52. $this->setFormat($opts['format']);
  53. }
  54. if (isset($opts['appName'])) {
  55. $this->setAppName($opts['appName']);
  56. }
  57. if (isset($opts['query'])) {
  58. $this->setQuery($opts['query']);
  59. }
  60. if (isset($opts['kvpairs'])) {
  61. $this->setKvPairs($opts['kvpairs']);
  62. }
  63. if (isset($opts['fetchFields'])) {
  64. $this->setFetchFields($opts['fetchFields']);
  65. }
  66. if (isset($opts['routeValue'])) {
  67. $this->setRouteValue($opts['routeValue']);
  68. }
  69. if (isset($opts['customConfig']) && is_array($opts['customConfig'])) {
  70. foreach ($opts['customConfig'] as $k => $v) {
  71. $this->setCustomConfig($k, $v);
  72. }
  73. }
  74. if (isset($opts['filter'])) {
  75. $this->setFilter($opts['filter']);
  76. }
  77. if (isset($opts['sort']) && is_array($opts['sort'])) {
  78. foreach ($opts['sort'] as $sort) {
  79. if (!isset($sort['order'])) {
  80. $sort['order'] = SELF::SORT_DECREASE;
  81. }
  82. $this->addSort($sort['field'], $sort['order']);
  83. }
  84. }
  85. if (isset($opts['firstRankName'])) {
  86. $this->setFirstRankName($opts['firstRankName']);
  87. }
  88. if (isset($opts['secondRankName'])) {
  89. $this->setSecondRankName($opts['secondRankName']);
  90. }
  91. if (array_key_exists('secondRankType', $opts)) {
  92. $this->setSecondRankType($opts['secondRankType']);
  93. }
  94. if (isset($opts['aggregate']) && isset($opts['aggregate']['groupKey'])) {
  95. $this->addAggregate($opts['aggregate']);
  96. } else if (isset($opts['aggregate']) && isset($opts['aggregate'][0])) {
  97. foreach ($opts['aggregate'] as $aggregate) {
  98. $this->addAggregate($aggregate);
  99. }
  100. }
  101. if (isset($opts['distinct']) && isset($opts['distinct'][0])) {
  102. foreach ($opts['distinct'] as $distinct) {
  103. $this->addDistinct($distinct);
  104. }
  105. } else if (isset($opts['distinct']) && isset($opts['distinct']['key'])) {
  106. $this->addDistinct($opts['distinct']);
  107. }
  108. if (isset($opts['summaries'])) {
  109. foreach ($opts['summaries'] as $summary) {
  110. $this->addSummary($summary);
  111. }
  112. }
  113. if (isset($opts['qp'])) {
  114. if (!is_array($opts['qp'])) {
  115. $opts['qp'] = array($opts['qp']);
  116. }
  117. foreach ($opts['qp'] as $qp) {
  118. $this->addQueryProcessor($qp);
  119. }
  120. }
  121. if (isset($opts['disableFunctions']) && is_array($opts['disableFunctions'])) {
  122. foreach ($opts['disableFunctions'] as $fun) {
  123. $this->addDisableFunctions($fun);
  124. }
  125. } else if (isset($opts['disableFunctions'])) {
  126. $this->addDisableFunctions($opts['disableFunctions']);
  127. }
  128. if (isset($opts['customParams'])) {
  129. foreach ($opts['customParams'] as $key => $value) {
  130. $this->setCustomParam($key, $value);
  131. }
  132. }
  133. if (isset($opts['reRankSize'])) {
  134. $this->setReRankSize($opts['reRankSize']);
  135. }
  136. }
  137. /**
  138. * 设置返回结果的偏移量。
  139. *
  140. * @param int $start 偏移量,范围[0,5000]。
  141. * @return void
  142. */
  143. public function setStart($start) {
  144. $this->searchParams->config->start = (int) $start;
  145. }
  146. /**
  147. * 设置返回结果的条数。
  148. *
  149. * @param int $hits 返回结果的条数,范围[0,500]。
  150. * @return void
  151. */
  152. public function setHits($hits) {
  153. $this->searchParams->config->hits = $hits;
  154. }
  155. /**
  156. * 设置返回结果的格式。
  157. *
  158. * @param String $format 返回结果的格式,有json、fulljson和xml格式。
  159. * @return void
  160. */
  161. public function setFormat($format) {
  162. $upperFormat = strtoupper($format);
  163. $this->searchParams->config->searchFormat = array_search($upperFormat, SearchFormat::$__names);
  164. }
  165. /**
  166. * 设置要搜索的应用名称或ID。
  167. *
  168. * @param String $appName 指定要搜索的应用名称或ID。
  169. * @return void
  170. */
  171. public function setAppName($appNames) {
  172. $this->searchParams->config->appNames = is_array($appNames) ? $appNames : array($appNames);
  173. }
  174. /**
  175. * 设置搜索关键词。
  176. *
  177. * @param String $query 设置的搜索关键词,格式为:索引名:'关键词' [AND|OR ...]
  178. * @return void
  179. */
  180. public function setQuery($query) {
  181. $this->searchParams->query = $query;
  182. }
  183. /**
  184. * 设置KVpairs。
  185. *
  186. * @param String $kvPairs 设置kvpairs。
  187. * @return void
  188. */
  189. public function setKvPairs($kvPairs) {
  190. $this->searchParams->config->kvpairs = $kvPairs;
  191. }
  192. /**
  193. * 设置结果集的返回字段。
  194. *
  195. * @param array $fetchFields 指定的返回字段的列表,例如array('a', 'b')
  196. * @return void
  197. */
  198. public function setFetchFields($fetchFields) {
  199. $this->searchParams->config->fetchFields = $fetchFields;
  200. }
  201. /**
  202. * 如果分组查询时,指定分组的值。
  203. *
  204. * @param Mixed $routeValue 分组字段值。
  205. * @return void
  206. */
  207. public function setRouteValue($routeValue) {
  208. $this->searchParams->config->routeValue = $routeValue;
  209. }
  210. /**
  211. * 设置参与精排个数。
  212. *
  213. * @param int $reRankSize 参与精排个数,范围[0,2000]。
  214. * @return void
  215. */
  216. public function setReRankSize($reRankSize) {
  217. $this->searchParams->rank->reRankSize = $reRankSize;
  218. }
  219. /**
  220. * 在Config字句中增加自定义的参数。
  221. *
  222. * @param String $key 设定自定义参数名。
  223. * @param Mixed $value 设定自定义参数值。
  224. * @return void
  225. */
  226. public function setCustomConfig($key, $value) {
  227. if ($this->searchParams->config->customConfig == null) {
  228. $this->searchParams->config->customConfig = array();
  229. }
  230. $this->searchParams->config->customConfig[$key] = $value;
  231. }
  232. /**
  233. * 添加过滤条件。
  234. *
  235. * @param String $filter 过滤,例如a>1。
  236. * @param String $condition 两个过滤条件的连接符, 例如AND OR等。
  237. * @return void
  238. */
  239. public function addFilter($filter, $condition = 'AND') {
  240. if ($this->searchParams->filter == null) {
  241. $this->searchParams->filter = $filter;
  242. } else {
  243. $this->searchParams->filter .= " {$condition} $filter";
  244. }
  245. }
  246. /**
  247. * 设置过滤条件。
  248. *
  249. * @param String $filterSting 过滤,例如a>1 OR b<2。
  250. * @return void
  251. */
  252. public function setFilter($filterString) {
  253. $this->searchParams->filter = $filterString;
  254. }
  255. /**
  256. * 添加排序规则。
  257. *
  258. * @param String $field 排序字段。
  259. * @param int $sort 排序策略,有降序0或者升序1,默认降序。
  260. * @return void
  261. */
  262. public function addSort($field, $order = self::SORT_DECREASE) {
  263. if ($this->searchParams->sort == null) {
  264. $this->searchParams->sort = new Sort();
  265. $this->searchParams->sort->sortFields = array();
  266. }
  267. $sortField = new SortField(array('field' => $field, 'order' => $order));
  268. $this->searchParams->sort->sortFields[] = $sortField;
  269. }
  270. /**
  271. * 设置粗排表达式名称。
  272. *
  273. * @param String $firstRankName 指定的粗排表达式名称。
  274. * @return void
  275. */
  276. public function setFirstRankName($firstRankName) {
  277. $this->searchParams->rank->firstRankName = $firstRankName;
  278. }
  279. /**
  280. * 设置精排表达式名称。
  281. *
  282. * @param String $secondRankName 指定的精排表达式名称。
  283. * @return void
  284. */
  285. public function setSecondRankName($secondRankName) {
  286. $this->searchParams->rank->secondRankName = $secondRankName;
  287. }
  288. /**
  289. * 设置精排表达式类型。
  290. *
  291. * @param RankType $secondRankType 指定的精排表达式类型。
  292. * @return void
  293. */
  294. public function setSecondRankType($secondRankType) {
  295. $this->searchParams->rank->secondRankType = $secondRankType;
  296. }
  297. /**
  298. * 设置聚合配置。
  299. *
  300. * @param array $agg 指定的聚合配置。
  301. * @return void
  302. */
  303. public function addAggregate($agg) {
  304. $aggregate = new Aggregate($agg);
  305. if ($this->searchParams->aggregates == null) {
  306. $this->searchParams->aggregates = array();
  307. }
  308. $this->searchParams->aggregates[] = $aggregate;
  309. }
  310. /**
  311. * 设置去重配置。
  312. *
  313. * @param array $dist 指定的去重配置。
  314. * @return void
  315. */
  316. public function addDistinct($dist) {
  317. $distinct = new Distinct($dist);
  318. if ($this->searchParams->distincts == null) {
  319. $this->searchParams->distincts = array();
  320. }
  321. $this->searchParams->distincts[] = $distinct;
  322. }
  323. /**
  324. * 设置搜索结果摘要配置。
  325. *
  326. * @param array $summaryMeta 指定的摘要字段配置。
  327. * @return void
  328. */
  329. public function addSummary($summaryMeta) {
  330. $summary = new Summary($summaryMeta);
  331. if ($this->searchParams->summaries == null) {
  332. $this->searchParams->summaries = array();
  333. }
  334. $this->searchParams->summaries[] = $summary;
  335. }
  336. /**
  337. * 添加查询分析配置。
  338. *
  339. * @param array $qpName 指定的QP名称。
  340. * @return void
  341. */
  342. public function addQueryProcessor($qpName) {
  343. if ($this->searchParams->queryProcessorNames == null) {
  344. $this->searchParams->queryProcessorNames = array();
  345. }
  346. $this->searchParams->queryProcessorNames[] = $qpName;
  347. }
  348. /**
  349. * 添加要关闭的function。
  350. *
  351. * @param String $disabledFunction 指定的要关闭的方法名称。
  352. * @return void
  353. */
  354. public function addDisableFunctions($disabledFunction) {
  355. if ($this->searchParams->disableFunctions == null) {
  356. $this->searchParams->disableFunctions = array();
  357. }
  358. $this->searchParams->disableFunctions[] = $disabledFunction;
  359. }
  360. /**
  361. * 设置自定义参数。
  362. *
  363. * @param String $key 自定义参数的参数名。
  364. * @param String $value 自定义参数的参数值。
  365. * @return void
  366. */
  367. public function setCustomParam($key, $value) {
  368. if ($this->searchParams->customParam == null) {
  369. $this->searchParams->customParam = array();
  370. }
  371. $this->searchParams->customParam[$key] = $value;
  372. }
  373. /**
  374. * 设置扫描数据的过期时间。
  375. *
  376. * @param String $expireTime 设定scroll的过期时间。
  377. * @return void
  378. */
  379. public function setScrollExpire($expiredTime) {
  380. if ($this->searchParams->deepPaging == null) {
  381. $this->searchParams->deepPaging = new DeepPaging();
  382. }
  383. $this->searchParams->deepPaging->scrollExpire = $expiredTime;
  384. }
  385. /**
  386. * 设置扫描数据的scrollId。
  387. *
  388. * ScrollId 为上一次扫描时返回的信息。
  389. *
  390. * @param String $scrollId 设定scroll的scrollId。
  391. * @return void
  392. */
  393. public function setScrollId($scrollId) {
  394. if ($this->searchParams->deepPaging == null) {
  395. $this->searchParams->deepPaging = new DeepPaging();
  396. }
  397. $this->searchParams->deepPaging->scrollId = $scrollId;
  398. }
  399. /**
  400. * 设置abtest数据的sceneTag。
  401. *
  402. * SceneTag 为场景标签。
  403. *
  404. * @param String $sceneTag 设定abtest的sceneTag。
  405. * @return void
  406. */
  407. public function setSceneTag($sceneTag) {
  408. if ($this->searchParams->abtest == null) {
  409. $this->searchParams->abtest = new Abtest();
  410. }
  411. $this->searchParams->abtest->sceneTag = $sceneTag;
  412. }
  413. /**
  414. * 设置abtest数据的flowDivider。
  415. *
  416. * FlowDivider 为流量分配标识。
  417. *
  418. * @param String $flowDivider 设定abtest的flowDivider。
  419. * @return void
  420. */
  421. public function setFlowDivider($flowDivider) {
  422. if ($this->searchParams->abtest == null) {
  423. $this->searchParams->abtest = new Abtest();
  424. }
  425. $this->searchParams->abtest->flowDivider = $flowDivider;
  426. }
  427. /**
  428. * 设置终端用户的id,用来统计uv信息。
  429. *
  430. * @param String $userId 设定终端用户的id。
  431. * @return void
  432. */
  433. public function setUserId($userId) {
  434. $this->searchParams->userId = $userId;
  435. }
  436. /**
  437. * 设置终端用户输入的query。
  438. *
  439. * @param String $rawQuery 设定终端用户输入的query。
  440. * @return void
  441. */
  442. public function setRawQuery($rawQuery) {
  443. $this->searchParams->rawQuery = $rawQuery;
  444. }
  445. /**
  446. * 获取SearchParams对象。
  447. *
  448. * @return SearchParams
  449. */
  450. public function build() {
  451. return $this->searchParams;
  452. }
  453. }