ChatRecordService.php 13.5 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
<?php
/**
+-----------------------------------------------------------------------------------------------------------------------
 * 逻辑层:ChatRecord 服务类,处理业务逻辑
+-----------------------------------------------------------------------------------------------------------------------
 *
 * PHP version 7
 *
 * @category  App\Services
 * @package   App\Services
 * @author    Richer <yangzi1028@163.com>
 * @date      2023年4月23日16:38:09
 * @copyright 2021-2022 Richer (http://www.Richer.com/)
 * @license   http://www.Richer.com/ License
 * @link      http://www.Richer.com/
 */
namespace App\Services;

use App\Jobs\ChatRecordItemJob;
use App\Jobs\ChatRecordJob;
use App\Models\Category\Category;
use App\Models\Category\CategoryLabel;
use App\Models\Chat\ChatRecordItem;
use App\Models\Chat\ChatRecord;
use App\Models\System\SystemSetting;
use App\Models\Traits\ChatTrait;
use App\Models\Traits\SystemSettingTrait;
use Carbon\Carbon;
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
use Illuminate\Http\Request;
use Illuminate\Http\Response;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\DB;

/**
 * Class ChatRecordService
 * @package App\Services
 */
class ChatRecordService extends BaseService
{
    use ChatTrait, SystemSettingTrait;
    /**
     * ChatRecordService constructor.
     *
     * @param ChatRecord $model
     */
    public function __construct(ChatRecord $model)
    {
        // 执行父类构造方法
        parent::__construct($model);
    }

    /**
     * Store a newly created resource in storage.
     *
     * @param Request $request
     * @param bool $stream
     * @return bool|Response
     */
    public function chat($request, $stream = true)
    {
        record_log('chat', '聊天', 'begin');

        record_log('chat', '请求:', my_json_encode($request->all()));

        // 获取用户信息
        $user = $this->getLoginUser();

        // 聊天方式
        $type = $request->type;
        // 根据标签获取标签内容
        $category_id = $request->category_id;
        // 默认带上下文
        $context = 1;
        $labels = [];
        $start_statement = '';
        $consume_times = 1;
        if ($type == 2) {
            // 获取分类
            $category = Category::findOrFail($category_id);
            $start_statement = $category->start_statement;
            // 上下文
            $context = $category->context;
            // 每次消耗次数
            $consume_times = $category->consume_times;
            // 标签
            $labels_r = $request->labels;
            // 标签ID
            $label_ids = data_get($labels_r, '*.id');
            $label_item_ids = '';
            $supplement = '';
            if ($labels_r && is_array($labels_r)) {
                foreach ($labels_r as $key => $label) {
                    $label_item_ids .= ',' . implode(',', Arr::get($label, 'items.ids'));
//                $label_item_ids[] = Arr::get($label, 'items.ids');
                    if ($key === 0) {
                        $supplement = Arr::get($label, 'supplement');
                    }
                }
            }

            $label_item_ids = array_filter(array_unique(explode(',', ltrim($label_item_ids, ','))));

//        $start_statement = optional($this->getSystemSetting())->start_statement;
            $str = '';
            if ($label_ids && is_array($label_ids)) {
                $labels = CategoryLabel::with(['items' => function ($query) use ($label_item_ids) {
                    if ($label_item_ids && is_array($label_item_ids)) {
                        $query->whereIn('id', $label_item_ids);
                    }
                }])->whereIn('id', $label_ids)->get()->map(function ($label, $index) use ($supplement, &$start_statement) {
//                    $start_statement .= $label->name . ":";
                    if ($index > 0) {
                        $start_statement .= ',' . $label->name . ":";
                    } else {
                        $start_statement .=  $label->name . ":";
                    }
                    $array = [
                        'id' => $label->id,
                        'name' => $label->name,
                        'items' => $label->items->map(function ($item, $index1) use (&$start_statement) {
                            if ($index1 > 0) {
                                $start_statement .= ',' . $item->name;
                            } else {
                                $start_statement .= $item->name;
                            }

                            return [
                                'id' => $item->id,
                                'name' => $item->name,
                            ];
                        })->toArray()
                    ];
                    if ($index === 0 && $supplement) {
                        $start_statement .= ',' . $supplement;
                        $array['supplement'] = $supplement;
                    }

//                    $start_statement .= ",";
                    return $array;
                })->toArray();
            }


        }

//        if ($user->id == 1) {
//            dd($start_statement);
//        }

        $body = $request->body;
        $body_all = $body;
        if ($start_statement) {
            $body_all = $start_statement . ',' .$body;
        }

        if ($request->test === 'test') {
            dump($start_statement);
            dd($body_all);
//            $body = "";
        }

        $record = [
            'category_id'=> $category_id ?? 0,
            'type'      => $type,
            'labels'    => $labels,
            'start_statement' => $start_statement,
            'question'      => $body_all,
            'context'       => $context,
            'consume_times' => $consume_times
        ];

//        dd($record);

        DB::beginTransaction();
        try {
            // 创建本次的聊天记录
            $model = $user->chatRecords()->create($record);

            // 创建用户的聊天记录
            $item = [
                'user_id'       => $user->id,
                'category_id'   => $category_id,
                'chat_type'     => $type,
                'user_type'     => ChatRecordItem::USER,
                'body'          => $body,
                'body_all'      => $body_all,
                'ai_model'  => $this->ai_model
            ];

            $result1 = $model->items()->create($item);
            if (!$result1) {
                record_log('chat', '聊天', 'end');
                DB::rollBack();
            }


            // TODO 根据标签组合完整的聊天内容
            // 组合方式:分类起始语句+标签名称:标签明细,标签明细,标签名称:标签明细,提问内容
            // 前置内容(每个对话场景的前置内容只有一个),标签内容(标签名称+用户选择的标签,每个标签以逗号分隔),用户输入内容
            // 发送消息
            $result2 = $this->send($user, $model, $body_all, $context, $stream);
            if (!$result2) {
                record_log('chat', '聊天', 'end');
                return false;
            }

            // 发送消息
//            SendMessage::dispatch($model, $body, $this->ai_model);

            DB::commit();
            record_log('chat', '聊天', 'end');

            // 同步
            ChatRecordJob::dispatch($model);

            ChatRecordItemJob::dispatch($result1);

            ChatRecordItemJob::dispatch($result2);

            return $result2;
        } catch (\Exception $e) {
            $this->message = $e->getMessage();

            DB::rollBack();
            record_log('chat', '聊天', 'end');
            return false;
        }
    }

    /**
     * Store a newly created resource in storage.
     *
     * @param Request $request
     * @param $id
     * @param bool $stream
     * @return false|mixed
     */
    public function coutinueChat($request, $id, $stream = true)
    {
        $model = $this->model->findOrFail($id);
        $body = $request->body;
        $user = $this->getLoginUser();
        // 创建用户的聊天记录
        $item = [
            'user_id'   => $user->id,
            'user_type' => ChatRecordItem::USER,
            'category_id'   => $model->category_id,
            'chat_type'     => $model->type,
            'body'          => $body,
            'body_all'      => $body,
            'ai_model'  => $this->ai_model
        ];

        DB::beginTransaction();
        try {
            $result = $model->items()->create($item);
            if (!$result) {
                $this->message = '聊天失败。';
                return false;
            }

            ChatRecordItemJob::dispatch($result);

            // 发送消息
            $result = $this->send($user, $model, $body, $model->context, $stream);
            DB::commit();

            return $result;
        } catch (\Exception $e) {
            $this->message = $e->getMessage();

            DB::rollBack();
            return false;
        }
    }

    /**
     * Display a listing of the resource.
     *
     * @param $id
     * @return array|LengthAwarePaginator|Collection
     */
    public function items($id)
    {
        $model = $this->model->findOrFail($id);
        $list = $model->items()->oldest()->get(['id','user_id','record_id','user_type','body','ai_model','created_at'])->map(function ($item, $index) use ($model) {
            $body = (string)$item->body;
            if ($index === 0) {
                $body =  $model-> start_statement. $body;
            }

            return [
                'id'        => (int) $item->id,
                'record_id' => (int) $item->record_id,

                /* place your other model properties here */
                'body'   => $body,
                'user_type'          => (int)$item->user_type,
                'ai_model'   => (string)$item->ai_model,
                'user_type_show'   => (string)$item->user_type_show,
                'created_at'    => format_date($item->created_at),

            ];
        });
        return $list;
    }

    /**
     * Display a listing of the resource.
     *
     * @return array|LengthAwarePaginator|Collection
     */
    public function list()
    {
        return $this->model->when($q = request('name'), function ($query) use ($q) {
            $query->where("name", 'like', "%$q%");
        })->latest()->get();
    }

    /**
     * Display the specified resource.
     *
     * @param int $id 主键id
     * @param array $columns 列
     *
     * @return array|bool|Collection
     */
    public function show($id, $columns = ['*'])
    {
        $sort = request('sort', 'asc');
        $model = $this->model->with(['location','route.sites' => function ($query) use ($sort) {
            $query->with(['site'])->orderBy('sort', $sort);
//            $query->with(['route' => function ($query) use ($sort)  {
//                $query->with(['site'])->orderBy('sort', $sort);
//            }])->orderBy('sort', $sort);
        }])->findOrFail($id);
        $model->function = 'show';
        return $model;
    }

    /**
     * Display a listing of the resource.
     *
     * @return int[]
     */
    public function latestTimeout()
    {
        $user = $this->getLoginUser();
        $type = request('type', 1);
        $query = $user->chatRecords()->with(['items'])->where('type', $type);
        $category_id =  request('category_id');
        if ($type === 2) {
            $query = $query->where('category_id', $category_id);
        }

        $model = $query->latest()->first();
        if (\request('test') == 1) {
            dump($model);
        }
        if (!$model) {
            return ['timeout' => true];
        }
        // 获取缓存中的数据是否存在,如果存在
        // 获取当前会话的缓存键
        // add by Richer 于 2023年5月14日15:01:47 由于缓存是在另外服务器,所以只能通过上次聊天的时间怕判断
        $item = $model->items->first();
//        if (\request('test') == 1) {
//            dump($item);
//        }

        $item = $model->items->last();
        if (!$item) {
            return ['timeout' => true];
        }

        if (Carbon::parse($item->created_at)->diffInMinutes(now()) >= 30){
            return ['timeout' => true];
        }

        return ['timeout' => false];

//        if (\request('test') == 1) {
//            dump($item);
//        }

        $cache_key = 'chat_context_' . $model->id;
        // 判断当前的聊天是否是基于上下文的聊天,如果是基于上下的文的聊天,需要携带上下文
        // 从缓存中获取当前会话的上下文
        $messages = Cache::get($cache_key);
        if ($messages) {
            // 将上下文放入缓存中
            $systemSetting = SystemSetting::getSetting();
            // 上下文超时时间
            $context_timeout = optional($systemSetting)->context_timeout * 60 ? : $this->context_timeout;
            Cache::put($cache_key, $messages, $context_timeout);
            return ['timeout' => false];
        }

        return ['timeout' => true];
    }

    /**
     * Display a listing of the resource.
     *
     * @return int[]
     */
    public function latest()
    {
        $user = $this->getLoginUser();
        $type = request('type', 1);
        $query = $user->chatRecords()->with(['items'])->where('type', $type);
        $category_id =  request('category_id');
        if ($type === 2) {
            $query = $query->where('category_id', $category_id);
        }

        return $query->latest()->first();
    }
}