Elastic.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. <?php
  2. namespace app\common\service;
  3. use \Exception;
  4. use AlibabaCloud\Tea\Exception\TeaError;
  5. use AlibabaCloud\Tea\Utils\Utils;
  6. use Darabonba\OpenApi\Models\Config;
  7. use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
  8. //require_once '../vendor/autoload.php';
  9. /*require_once '../vendor/elastic/transport/src/NodePool/NodePoolInterface.php';
  10. require_once '../vendor/elastic/transport/src/NodePool/Selector/RoundRobin.php';
  11. require_once '../vendor/elastic/transport/src/NodePool/Resurrect/NoResurrect.php';
  12. require_once '../vendor/elasticsearch/elasticsearch/src/ClientBuilder.php';
  13. require_once '../vendor/elastic/transport/src/TransportBuilder.php';
  14. require_once '../vendor/elastic/transport/src/NodePool/SimpleNodePool.php';
  15. require_once '../vendor/elastic/transport/src/Exception/NoNodeAvailableException.php';
  16. require_once '../vendor/elastic/transport/src/NodePool/Node.php';
  17. require_once '../vendor/elastic/transport/src/Transport.php';
  18. require_once '../vendor/php-http/httplug/src/HttpAsyncClient.php';
  19. require_once '../vendor/php-http/discovery/src/Psr17FactoryDiscovery.php';
  20. require_once '../vendor/php-http/discovery/src/Exception/NoCandidateFoundException.php';
  21. require_once '../vendor/php-http/discovery/src/Strategy/CommonPsr17ClassesStrategy.php';*/
  22. /**
  23. * Elasticsearch
  24. * Class Elasticsearch
  25. */
  26. class Elastic
  27. {
  28. static $access_key = 'LTAI5tJ5p12drZegeWVG33xZ';// key
  29. static $access_secret = '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB';//secret
  30. static $InstanceId = 'es-cn-x0r34s6ff000qy2qe';
  31. // static $host = 'http://es-cn-wwo34hg5t0006xtsj.public.elasticsearch.aliyuncs.com:9200';
  32. static $host = 'http://es-cn-x0r34s6ff000qy2qe.public.elasticsearch.aliyuncs.com:9200';
  33. static $user_name = 'elastic';
  34. static $password = '1234QWERasdf';
  35. /**
  36. * 云产品管控接口 start
  37. * 也许用不到
  38. */
  39. /**
  40. * 使用AK&SK初始化账号Client
  41. * @param string $accessKeyId
  42. * @param string $accessKeySecret
  43. * @return Elasticsearch Client
  44. */
  45. public static function createClient(){
  46. $config = new Config([
  47. // 必填,您的 AccessKey ID
  48. "accessKeyId" => static::$access_key,
  49. // 必填,您的 AccessKey Secret
  50. "accessKeySecret" => static::$access_secret,
  51. ]);
  52. // 访问的域名
  53. $config->endpoint = "elasticsearch.cn-shanghai.aliyuncs.com";
  54. //$config->endpoint = "es-cn-wwo34hg5t0006xtsj.elasticsearch.aliyuncs.com";
  55. return new Elasticsearch($config);
  56. }
  57. public static function body()
  58. {
  59. return [
  60. 'mappings'=>[
  61. 'properties'=>[
  62. 'id'=>['type'=>'long'],
  63. 'status'=>['type'=>'byte'],
  64. 'logo'=>['type'=>'text'],
  65. 'name'=>['type'=>'text'],
  66. ]
  67. ]
  68. ];
  69. }
  70. /**
  71. * 云产品管控接口 end
  72. */
  73. /**
  74. * elasticsearch API
  75. */
  76. // elastic链接
  77. public static function es(){
  78. // if(!$es) $es = \Elasticsearch\ClientBuilder::create()->setHosts(['es-cn-wwo34hg5t0006xtsj.public.elasticsearch.aliyuncs.com:9200'])->build();
  79. $es = \Elasticsearch\ClientBuilder::create()
  80. ->setHosts([static::$host])
  81. ->setBasicAuthentication(static::$user_name, static::$password)
  82. ->build();
  83. return $es;
  84. }
  85. //获取mapping(结构)
  86. public static function getMapping($index)
  87. {
  88. return self::es()->indices()->getMapping(['index'=>$index]);
  89. }
  90. public static function getProperties($module)
  91. {
  92. switch ($module) {
  93. default:
  94. $ret_val = [
  95. 'module'=>['type'=>'keyword'],//模块
  96. 'id'=>['type'=>'keyword'],
  97. 'title'=>['type'=>'text'],
  98. 'label'=>['type'=>'text'],
  99. 'desc'=>['type'=>'text'],
  100. 'desc_text'=>['type'=>'text'],
  101. 'content'=>['type'=>'text'],
  102. 'detail'=>['type'=>'text'],
  103. 'user_id'=>['type'=>'integer'],
  104. 'is_deleted'=>['type'=>'integer'],
  105. 'status'=>['type'=>'integer'],
  106. 'create_at'=>['type'=>'date'],
  107. 'release_time'=>['type'=>'date'],
  108. 'extend'=>['type'=>'text'],
  109. 'level' => ['type'=>'integer'],
  110. 'read_num'=>['type'=>'integer'],
  111. 'comment_num'=>['type'=>'integer'],
  112. 'like_num'=>['type'=>'integer'],
  113. 'transmit_num'=>['type'=>'integer'],
  114. 'collect_num'=>['type'=>'integer'],
  115. 'down_num'=>['type'=>'integer'],
  116. 'is_over'=>['type'=>'integer'],
  117. 'city'=>['type'=>'keyword'],
  118. ];
  119. break;
  120. }
  121. return $ret_val;
  122. }
  123. // 创建索引
  124. public static function createIndex($module)
  125. {
  126. $client = self::es();
  127. $index = [
  128. "index"=>$module,
  129. "body"=>[
  130. "mappings"=>[
  131. "properties"=>static::getProperties($module)
  132. ]
  133. ]
  134. ];
  135. $response = $client->indices()->create($index);
  136. return $response;
  137. }
  138. // 添加字段
  139. public static function addColumn($module)
  140. {
  141. $client = self::es();
  142. $index = [
  143. "index"=>$module,
  144. "body"=>[
  145. // "properties"=>['level' => ['type'=>'integer']]
  146. // "properties"=>['is_over' => ['type'=>'integer']]
  147. "properties"=>['city' => ['type'=>'keyword']]
  148. ]
  149. ];
  150. $response = $client->indices()->putMapping($index);
  151. return $response;
  152. }
  153. /**
  154. * 删除索引
  155. * @param $index
  156. * @return array
  157. */
  158. public static function delIndex($index)
  159. {
  160. return self::es()->indices()->delete(['index'=>$index]);
  161. }
  162. /**
  163. * 判断索引是否存在
  164. * @param $index
  165. * @return bool
  166. */
  167. public static function checkIndex($index)
  168. {
  169. return self::es()->indices()->exists(['index'=>$index]);
  170. }
  171. // 添加数据【插入文档】
  172. public static function add($index,$id,$body)
  173. {
  174. $doc = [
  175. "index"=>$index,
  176. "id"=>$id,
  177. "body"=>$body
  178. ];
  179. return self::es()->index($doc);
  180. }
  181. // 删除数据
  182. public static function delete($index,$id)
  183. {
  184. return self::es()->delete(['index'=>$index,'id'=>$id]);
  185. }
  186. // 获取详情
  187. public static function getInfo($index,$id)
  188. {
  189. return self::es()->get(['index'=>$index,'id'=>$id]);
  190. }
  191. // 更新数据
  192. public static function update($index,$id,$body)
  193. {
  194. $doc = [
  195. 'index'=>$index,
  196. 'id'=>$id,
  197. 'body'=>[
  198. 'doc'=>$body
  199. ]
  200. ];
  201. return self::es()->update($doc);
  202. }
  203. /**
  204. *查询
  205. * @param $index
  206. * @param $match
  207. * @return array
  208. */
  209. public static function select($index,$select)
  210. {
  211. $list = static::es()->search($select);
  212. return $list;
  213. }
  214. }