SuggestClient.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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\Client;
  21. use OpenSearch\Generated\Search\OpenSearchSearcherServiceIf;
  22. use OpenSearch\Generated\Search\SearchParams;
  23. use OpenSearch\Util\SuggestParamsBuilder;
  24. /**
  25. * 应用下拉提示操作类。
  26. *
  27. * 通过制定关键词、过滤条件搜索应用的下拉提示的结果。
  28. *
  29. * @deprecated 请使用SuggestionClient代替
  30. */
  31. class SuggestClient implements OpenSearchSearcherServiceIf {
  32. const SUGGEST_API_PATH = '/apps/%s/suggest/%s/search';
  33. private $openSearchClient;
  34. /**
  35. * 构造方法。
  36. *
  37. * @param \OpenSearch\Client\OpenSearchClient $openSearchClient 基础类,负责计算签名,和服务端进行交互和返回结果。
  38. * @return void
  39. */
  40. public function __construct($openSearchClient) {
  41. $this->openSearchClient = $openSearchClient;
  42. }
  43. /**
  44. * 执行搜索操作。
  45. *
  46. * @param \OpenSearch\Generated\Search\SearchParams $searchParams 制定的搜索条件。
  47. * @return \OpenSearch\Generated\Common\OpenSearchResult OpenSearchResult类
  48. */
  49. public function execute(SearchParams $searchParams) {
  50. $path = self::getPath($searchParams);
  51. $params = SuggestParamsBuilder::getQueryParams($searchParams);
  52. return $this->openSearchClient->get($path, $params);
  53. }
  54. private static function getPath($searchParams) {
  55. $appName = implode(',', $searchParams->config->appNames);
  56. $suggestName = $searchParams->suggest->suggestName;
  57. return sprintf(self::SUGGEST_API_PATH, $appName, $suggestName);
  58. }
  59. }