123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- <?php
- namespace app\common\service;
- use \Exception;
- use AlibabaCloud\Tea\Exception\TeaError;
- use AlibabaCloud\Tea\Utils\Utils;
- use Darabonba\OpenApi\Models\Config;
- use AlibabaCloud\Tea\Utils\Utils\RuntimeOptions;
- //require_once '../vendor/autoload.php';
- /*require_once '../vendor/elastic/transport/src/NodePool/NodePoolInterface.php';
- require_once '../vendor/elastic/transport/src/NodePool/Selector/RoundRobin.php';
- require_once '../vendor/elastic/transport/src/NodePool/Resurrect/NoResurrect.php';
- require_once '../vendor/elasticsearch/elasticsearch/src/ClientBuilder.php';
- require_once '../vendor/elastic/transport/src/TransportBuilder.php';
- require_once '../vendor/elastic/transport/src/NodePool/SimpleNodePool.php';
- require_once '../vendor/elastic/transport/src/Exception/NoNodeAvailableException.php';
- require_once '../vendor/elastic/transport/src/NodePool/Node.php';
- require_once '../vendor/elastic/transport/src/Transport.php';
- require_once '../vendor/php-http/httplug/src/HttpAsyncClient.php';
- require_once '../vendor/php-http/discovery/src/Psr17FactoryDiscovery.php';
- require_once '../vendor/php-http/discovery/src/Exception/NoCandidateFoundException.php';
- require_once '../vendor/php-http/discovery/src/Strategy/CommonPsr17ClassesStrategy.php';*/
- /**
- * Elasticsearch
- * Class Elasticsearch
- */
- class Elastic
- {
- static $access_key = 'LTAI5tJ5p12drZegeWVG33xZ';// key
- static $access_secret = '82UWAiY5e5wH8tSkRvMtqVoGO0h8SB';//secret
- static $InstanceId = 'es-cn-x0r34s6ff000qy2qe';
- // static $host = 'http://es-cn-wwo34hg5t0006xtsj.public.elasticsearch.aliyuncs.com:9200';
- static $host = 'http://es-cn-x0r34s6ff000qy2qe.public.elasticsearch.aliyuncs.com:9200';
- static $user_name = 'elastic';
- static $password = '1234QWERasdf';
- /**
- * 云产品管控接口 start
- * 也许用不到
- */
- /**
- * 使用AK&SK初始化账号Client
- * @param string $accessKeyId
- * @param string $accessKeySecret
- * @return Elasticsearch Client
- */
- public static function createClient(){
- $config = new Config([
- // 必填,您的 AccessKey ID
- "accessKeyId" => static::$access_key,
- // 必填,您的 AccessKey Secret
- "accessKeySecret" => static::$access_secret,
- ]);
- // 访问的域名
- $config->endpoint = "elasticsearch.cn-shanghai.aliyuncs.com";
- //$config->endpoint = "es-cn-wwo34hg5t0006xtsj.elasticsearch.aliyuncs.com";
- return new Elasticsearch($config);
- }
- public static function body()
- {
- return [
- 'mappings'=>[
- 'properties'=>[
- 'id'=>['type'=>'long'],
- 'status'=>['type'=>'byte'],
- 'logo'=>['type'=>'text'],
- 'name'=>['type'=>'text'],
- ]
- ]
- ];
- }
- /**
- * 云产品管控接口 end
- */
- /**
- * elasticsearch API
- */
- // elastic链接
- public static function es(){
- // if(!$es) $es = \Elasticsearch\ClientBuilder::create()->setHosts(['es-cn-wwo34hg5t0006xtsj.public.elasticsearch.aliyuncs.com:9200'])->build();
- $es = \Elasticsearch\ClientBuilder::create()
- ->setHosts([static::$host])
- ->setBasicAuthentication(static::$user_name, static::$password)
- ->build();
- return $es;
- }
- //获取mapping(结构)
- public static function getMapping($index)
- {
- return self::es()->indices()->getMapping(['index'=>$index]);
- }
- public static function getProperties($module)
- {
- switch ($module) {
- default:
- $ret_val = [
- 'module'=>['type'=>'keyword'],//模块
- 'id'=>['type'=>'keyword'],
- 'title'=>['type'=>'text'],
- 'label'=>['type'=>'text'],
- 'desc'=>['type'=>'text'],
- 'desc_text'=>['type'=>'text'],
- 'content'=>['type'=>'text'],
- 'detail'=>['type'=>'text'],
- 'user_id'=>['type'=>'integer'],
- 'is_deleted'=>['type'=>'integer'],
- 'status'=>['type'=>'integer'],
- 'create_at'=>['type'=>'date'],
- 'release_time'=>['type'=>'date'],
- 'extend'=>['type'=>'text'],
- 'level' => ['type'=>'integer'],
- 'read_num'=>['type'=>'integer'],
- 'comment_num'=>['type'=>'integer'],
- 'like_num'=>['type'=>'integer'],
- 'transmit_num'=>['type'=>'integer'],
- 'collect_num'=>['type'=>'integer'],
- 'down_num'=>['type'=>'integer'],
- 'is_over'=>['type'=>'integer'],
- 'city'=>['type'=>'keyword'],
- ];
- break;
- }
- return $ret_val;
- }
- // 创建索引
- public static function createIndex($module)
- {
- $client = self::es();
- $index = [
- "index"=>$module,
- "body"=>[
- "mappings"=>[
- "properties"=>static::getProperties($module)
- ]
- ]
- ];
- $response = $client->indices()->create($index);
- return $response;
- }
- // 添加字段
- public static function addColumn($module)
- {
- $client = self::es();
- $index = [
- "index"=>$module,
- "body"=>[
- // "properties"=>['level' => ['type'=>'integer']]
- // "properties"=>['is_over' => ['type'=>'integer']]
- "properties"=>['city' => ['type'=>'keyword']]
- ]
- ];
- $response = $client->indices()->putMapping($index);
- return $response;
- }
- /**
- * 删除索引
- * @param $index
- * @return array
- */
- public static function delIndex($index)
- {
- return self::es()->indices()->delete(['index'=>$index]);
- }
- /**
- * 判断索引是否存在
- * @param $index
- * @return bool
- */
- public static function checkIndex($index)
- {
- return self::es()->indices()->exists(['index'=>$index]);
- }
- // 添加数据【插入文档】
- public static function add($index,$id,$body)
- {
- $doc = [
- "index"=>$index,
- "id"=>$id,
- "body"=>$body
- ];
- return self::es()->index($doc);
- }
- // 删除数据
- public static function delete($index,$id)
- {
- return self::es()->delete(['index'=>$index,'id'=>$id]);
- }
- // 获取详情
- public static function getInfo($index,$id)
- {
- return self::es()->get(['index'=>$index,'id'=>$id]);
- }
- // 更新数据
- public static function update($index,$id,$body)
- {
- $doc = [
- 'index'=>$index,
- 'id'=>$id,
- 'body'=>[
- 'doc'=>$body
- ]
- ];
- return self::es()->update($doc);
- }
- /**
- *查询
- * @param $index
- * @param $match
- * @return array
- */
- public static function select($index,$select)
- {
- $list = static::es()->search($select);
- return $list;
- }
- }
|