<?php

namespace Lib\Es;

use Elastic\Elasticsearch\ClientBuilder;

/**
 * @see https://github.com/elastic/elasticsearch-php/tree/7.17
 * @author:dc
 * @time 2023/6/5 10:13
 * Class Es
 * @package GlobalSo\Tool\Es
 */
class Es {

//    private $host = 'https://es-gqtfpyon.public.tencentelasticsearch.com:9200'; // 黑格那个服务器
//    private $host = 'http://elastic:1qOtfZhqy4B7IXdIpl_W@192.168.80.129:9200';
//    private $host = 'https://es-az664rii.public.tencentelasticsearch.com:9200'; // aicc 服务器
    private $host = [
//        'http://elastic:1qOtfZhqy4B7IXdIpl_W@192.168.80.129:9200',
//        'https://ai-email:3mLbEKwDX9YjUDFm@172.19.0.56:9200'
//        'https://ai-email:3mLbEKwDX9YjUDFm@172.19.0.56:9200'
    ]; //内网地址  公网要加ip白名单


    /**
     * @var \Elastic\Elasticsearch\Client
     */
    protected $client;

    /**
     * @var string
     */
    protected $index;

    /**
     * Es constructor.
     * @param $index
     */
    public function __construct($index,array $host=[])
    {
        if($host){
            $this->host = $host;
        }
        $this->index = $index;

        $this->client = ClientBuilder::create()
            ->setHosts($this->host)
//            ->setBasicAuthentication($user, $password)
//            ->setCABundle('path/to/http_ca.crt')
            ->setSSLVerification(false) // 关闭 SSL 证书验证
            ->build();
    }



    /**
     * 搜索
     * @param array $body
     * @param int $from
     * @param int $size
     * @param array $sort [key=>val,...]
     * @return array
     * @author:dc
     * @time 2023/6/5 14:35
     */
    public function search(array $body,int $from=0,int $size=20,array $sort= [],$track_total_hits=true){

        $params = [
            'index' => $this->getIndex(),
            'body'  => $body,
            'from'  =>  $from,
            'size'  =>  $size,
            "track_total_hits"=> true  // 确保返回总匹配文档数量
        ];
        // 排序
        if($sort){
            if(empty($params['body']['sort'])) $params['body']['sort'] = [];
            foreach ($sort as $k=>$s){
                $params['body']['sort'][] = [ $k => [ 'order' =>  $s ] ];
            }
        }

        try {
            $response = $this->client->search($params);
        }catch (\Throwable $e) {
            logs("搜索数据es:".$e->getMessage()." \n ".json_encode($params));
            return [];
        }

        return $response->asArray();

    }

    /**
     * 统计数量
     * @param array $body
     * @author:dc
     * @time 2025/3/4 9:47
     */
    public function count(array $body){

        $params = [
            'index' => $this->getIndex(),
            'body'  => $body
        ];

        try {
            $response = $this->client->count($params);
        }catch (\Throwable $e) {
            logs("搜索数据es:".$e->getMessage()." \n ".json_encode($params));
            return 0;
        }

        return $response->asArray()['count']??0;
    }


    /**
     * @param array $param
     * @return array|callable
     * @author:dc
     * @time 2023/6/9 15:50
     */
    public function get(array $param){
        $params = [
            'index' => $this->getIndex()
        ];
        if(!empty($param['id'])){
            $params['id']   =   $param['id'];
        }

        try {
            $response = $this->client->get($params);
        }catch (\Throwable $e) {
            logs("读取数据es:".$e->getMessage()." \n ".json_encode($params));
            return [];
        }

        return $response->asArray();
    }



    /**
     * 获取索引
     * @return string
     * @author:dc
     * @time 2023/6/5 10:51
     */
    public function getIndex():string{
        return $this->index;
    }


    /**
     * 保存修改
     * @param string $id
     * @param array $data
     * @return int
     * @author:dc
     * @time 2025/3/1 14:53
     */
    public function save(string $id, array $data){

        $params['index'] = $this->getIndex();
        $params['id'] = $id;
        $params['body'] = $data;

        try {
            $response = $this->client->index($params);
        }catch (\Throwable $e) {
            logs("创建或者修改es:".$e->getMessage());
            return $e->getMessage();
        }

        return $response['_shards']['successful']?200:500;
    }

    /**
     * 创建数据
     * @param array $params
     * @return int
     * @author:dc
     * @time 2025/3/1 14:25
     */
    public function create(array $data, string $id = ''){
        $params['index'] = $this->getIndex();
        $params['body'] =   $data;
        if($id){
            $params['id']   =   $id;
        }
        try {
        $response = $this->client->create($params);
        }catch (\Throwable $e) {
            logs("新增es:".$e->getMessage());
            return 500;
        }

        return $response['_shards']['successful']?200:500;
    }

    /**
     * 更新文档
     * @param string $id
     * @param array $data
     * @return int
     * @author:dc
     * @time 2025/3/1 14:30
     */
    public function update(string $id, array $data){
        $params['index'] = $this->getIndex();
        $params = [
            'index' => $this->getIndex(),
            'id'    => $id,
            'body'  => [
                'doc' => $data
            ]
        ];
        try {
            $response = $this->client->update($params);
        }catch (\Throwable $e) {
            logs("更新es:".$e->getMessage());
            return 500;
        }

        return $response['_shards']['successful']?200:500;
    }


    /**
     * 删除
     * @param string $id
     * @return array|callable|false
     * @author:dc
     * @time 2023/6/5 16:26
     */
    public function delete(string $id){


        try {
            $response = $this->client->delete([
                'index' => $this->getIndex(),
                'id' => $id
            ]);
        } catch (\Throwable $e) {
            logs('删除es数据:'.$e->getMessage());
            return false;
        }


        return $response->asArray();


    }


    /**
     * @return \Elastic\Elasticsearch\Client
     * @author:dc
     * @time 2025/3/1 16:23
     */
    public function getClient()
    {
        return $this->client;
    }


    /**
     * 更新索引 Mapping
     * @param array $params
     * @author:dc
     * @time 2023/6/29 11:17
     */
    public function putMapping(array $params,array $setting=[]){
        $params = [
            "body"  =>  [
                "mappings" => $params,
            ]
        ];
        $params['index'] = $this->getIndex();
        if($setting){
            $params['body']['settings'] = $setting;
        }

        try {
            $response = $this->client->indices()->create($params);
        }catch (\Throwable $e) {
            logs('es 创建索引 映射:'.$e->getMessage());
            return false;
        }

        return $response['acknowledged']??false;
    }

    /**
     * @return array|false
     * @author:dc
     * @time 2024/1/9 10:12
     */
    public function getMapping(){
        $params = [];
        $params['index'] = $this->getIndex();

        try {
            $response = $this->client->indices()->getMapping($params);
        }catch (\Throwable $e) {
            return [];
        }

        return $response[$this->getIndex()]['mappings']['properties']??[];
    }



}