SyncMailToEs.php 2.4 KB
<?php

namespace Event;

use Lib\Es\Es;
use Model\listsSql;


/**
 * 同步数据到es
 * @author:dc
 * @time 2025/3/1 17:57
 * Class SyncMailToEs
 * @package Event
 */
class SyncMailToEs {

    public $type = '';
    public $table = '';
    public $where = '';
    public $data = [];

    public function __construct(string $type,int $table, $where=[],$data=[])
    {
        $this->type = $type;
        $this->table = $table;
        if ($type == 'create'){
            $this->data = $where;
        }else{
            $this->where = is_array($where) ? dbWhere($where) : $where;
            $this->data = $data;
        }

        $this->handler();
    }

    /**
     * @var \Lib\Es\Es
     */
    public $es;

    public function handler(){
        $this->es = new Es('hg_ai_emails');
        if(in_array($this->table,['lists','lists_auto','lists_hot'])){

            if($this->type=='create'){
                $this->create();
            }
            else if($this->type=='update'){
                $this->update();
            }
            else{

            }

        }
    }

    /**
     * @author:dc
     * @time 2025/3/3 9:41
     */
    public function create(){
        if($this->table == 'lists_hot'){
            return ;
        }
        else if($this->table == 'lists'){
            $id = $this->data['email_id'].'_'.$this->data['folder_id'].'_'.$this->data['uid'];
            if(empty($this->data['is_auto'])){
                $this->data['is_auto'] = 0;
            }
            $this->es->create($this->data,$id);
        }
        else if($this->table == 'lists_auto'){
            $id = db()->first(listsSql::first($this->data['lists_id'],'`email_id`,`folder_id`,`uid`'));
            $id = $id['email_id'].'_'.$id['folder_id'].'_'.$id['uid'];
            $this->es->update($id,['is_auto'=>1]);
        }

    }

    /**
     * 更新数据
     * @author:dc
     * @time 2025/3/3 10:53
     */
    public function update(){
//        if($this->table == 'lists_hot'){
//
//        }
        if($this->table == 'lists'){
            // 更新es
            $lists = db()->all(listsSql::all($this->where,'`email_id`,`folder_id`,`uid`'));
            foreach ($lists as $list){
                $id = $list['email_id'].'_'.$list['folder_id'].'_'.$list['uid'];
                $this->es->update($id,$this->data);
            }
        }

    }












}