OpenSearch.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <?php
  2. namespace app\api\controller;
  3. require_once("../vendor/alibabacloud/opensearch-sdk-php/OpenSearch/Autoloader/Autoloader.php");
  4. header("Content-Type:text/html;charset=utf-8");
  5. use AlibabaCloud\Client\Clients\BearerTokenClient;
  6. use OpenSearch\Client\OpenSearchClient;
  7. use OpenSearch\Client\DocumentClient;
  8. use OpenSearch\Client\SearchClient;
  9. use OpenSearch\Util\SearchParamsBuilder;
  10. /**
  11. * @title OpenSearch
  12. * @controller OpenSearch
  13. * @group base
  14. */
  15. class OpenSearch extends Base
  16. {
  17. public $accessKeyId = 'LTAI5tJ5p12drZegeWVG33xZ';
  18. public $secret = '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB';
  19. public $endPoint = 'http://opensearch-cn-shanghai.aliyuncs.com';
  20. public $appName = 'GYXTEST';
  21. public $suggestName = 'qc_ts';// 下拉提示名
  22. public $options = ['debug' => true];
  23. /**
  24. * @title 添加
  25. * @desc 添加
  26. * @author qc
  27. * @url /api/Open_search/add
  28. * @method POST
  29. */
  30. public function add()
  31. {
  32. $client = new OpenSearchClient($this->accessKeyId, $this->secret, $this->endPoint, $this->options);
  33. //设置数据需推送到对应应用表中
  34. $tableName = 'dd_video_cate';
  35. //创建文档操作client
  36. $documentClient = new DocumentClient($client);
  37. //添加数据
  38. $docs_to_upload[]= [
  39. 'cmd' => 'ADD',
  40. 'fields' => [
  41. 'id'=>1,
  42. 'title'=>'qc',
  43. ],
  44. ];
  45. //将文档编码成json格式
  46. $json = json_encode($docs_to_upload);
  47. //提交推送文档
  48. $ret = $documentClient->push($json, $this->appName, $tableName);
  49. $ret_array = json_decode(json_encode($ret),true);
  50. $ret_val = json_decode($ret_array['result'],true);
  51. $this->success('ok',$ret_val);
  52. }
  53. /**
  54. * @title 删除
  55. * @desc 删除
  56. * @author qc
  57. * @url /api/Open_search/delete
  58. * @method POST
  59. */
  60. public function delete()
  61. {
  62. $client = new OpenSearchClient($this->accessKeyId, $this->secret, $this->endPoint, $this->options);
  63. //设置数据需推送到对应应用表中
  64. $tableName = 'dd_video_cate';
  65. //创建文档操作client
  66. $documentClient = new DocumentClient($client);
  67. //添加数据
  68. $docs_to_upload[]= [
  69. 'cmd' => 'DELETE',
  70. 'fields' => [
  71. 'id'=>1,
  72. ],
  73. ];
  74. //将文档编码成json格式
  75. $json = json_encode($docs_to_upload);
  76. //提交推送文档
  77. $ret = $documentClient->push($json, $this->appName, $tableName);
  78. $ret_array = json_decode(json_encode($ret),true);
  79. $ret_val = json_decode($ret_array['result'],true);
  80. $this->success('ok',$ret_val);
  81. }
  82. /**
  83. * @title 更新
  84. * @desc 更新
  85. * @author qc
  86. * @url /api/Open_search/update
  87. * @method POST
  88. */
  89. public function update()
  90. {
  91. $client = new OpenSearchClient($this->accessKeyId, $this->secret, $this->endPoint, $this->options);
  92. //设置数据需推送到对应应用表中
  93. $tableName = 'dd_video_cate';
  94. //创建文档操作client
  95. $documentClient = new DocumentClient($client);
  96. //添加数据
  97. $docs_to_upload[]= [
  98. 'cmd' => 'UPDATE',
  99. 'fields' => [
  100. 'id'=>1,
  101. 'title'=>'aaa',
  102. ],
  103. ];
  104. //将文档编码成json格式
  105. $json = json_encode($docs_to_upload);
  106. //提交推送文档
  107. $ret = $documentClient->push($json, $this->appName, $tableName);
  108. $ret_array = json_decode(json_encode($ret),true);
  109. $ret_val = json_decode($ret_array['result'],true);
  110. $this->success('ok',$ret_val);
  111. }
  112. /**
  113. * @title 搜索
  114. * @desc 搜索
  115. * @author qc
  116. * @url /api/Open_search/select
  117. * @method POST
  118. */
  119. public function select()
  120. {
  121. $client = new OpenSearchClient($this->accessKeyId, $this->secret, $this->endPoint, $this->options);
  122. // 实例化一个搜索类
  123. $searchClient = new SearchClient($client);
  124. // 实例化一个搜索参数类
  125. $params = new SearchParamsBuilder();
  126. //设置config子句的start值
  127. $params->setStart($this->off_set);
  128. //设置config子句的hit值
  129. $params->setHits($this->page_num);
  130. // 指定一个应用用于搜索
  131. $params->setAppName($this->appName);
  132. // 指定搜索关键词
  133. $params->setQuery("title:'亚马逊'");
  134. $params->setFilter('id>0');
  135. // 指定返回的搜索结果的格式为json
  136. $params->setFormat("fulljson");
  137. //添加排序字段
  138. $params->addSort('id', SearchParamsBuilder::SORT_DECREASE);
  139. // $params->addSort('RANK', SearchParamsBuilder::SORT_DECREASE);
  140. //添加distinct子句
  141. // $params->addDistinct(['key' => 'cate_id', 'distTimes' => 1, 'distCount' => 1, 'reserved' => 'false']);
  142. //添加摘要
  143. /* $params->addSummary(['summary_field' => 'name', 'summary_len' => 100,
  144. 'summary_ellipsis' => "。。。", 'summary_snippet' => 2,
  145. 'summary_element_prefix' => '<em>', 'summary_element_postfix' => '</em>']);*/
  146. //设置需返回哪些字段
  147. $params->setFetchFields(['id', 'title', 'logo']);
  148. //$params->addSummary(
  149. // array('summary_field' => 'name', 'summary_len' => 200)
  150. //);
  151. //设置自定义参数
  152. //$params->setCustomParam('a', 'b');
  153. //$params->setCustomParam('c', 'd');
  154. //$params->setRouteValue('1');
  155. // 执行搜索,获取搜索结果
  156. $ret = $searchClient->execute($params->build());
  157. //添加raw_query参数
  158. //$params->setRawQuery("字符串");
  159. // 将json类型字符串解码
  160. $this->success('ok',['list'=>json_decode($ret->result,true)]);
  161. }
  162. }