Files
chatroom/app/Http/Controllers/ChatBotController.php
lkddi fd3214eaff 功能:VIP 赞助会员系统
- 新建 vip_levels 表(名称、图标、颜色、经验/金币倍率、专属进入/离开模板)
- 默认4个等级种子:白银🥈(×1.5)、黄金🥇(×2.0)、钻石💎(×3.0)、至尊👑(×5.0)
- 后台 VIP 等级 CRUD 管理(新增/编辑/删除,配置模板和倍率)
- 后台用户编辑弹窗支持设置 VIP 等级和到期时间
- ChatController 心跳经验按 VIP 倍率加成
- FishingController 正向奖励按 VIP 倍率加成(负面惩罚不变)
- 在线名单显示 VIP 图标和管理员🛡️标识
- VIP 用户进入/离开使用专属颜色和标题
- 后台侧栏新增「👑 VIP 会员等级」入口
2026-02-26 21:30:07 +08:00

97 lines
2.7 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* 文件功能:聊天机器人控制器
*
* 处理用户与 AI 机器人的对话请求。
* 先检查全局开关sysparam: chatbot_enabled再调用 AiChatService 获取回复。
*
* @author ChatRoom Laravel
*
* @version 1.0.0
*/
namespace App\Http\Controllers;
use App\Models\Sysparam;
use App\Services\AiChatService;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
class ChatBotController extends Controller
{
/**
* 构造函数:注入 AI 聊天服务
*/
public function __construct(
private readonly AiChatService $aiChat,
) {}
/**
* 与 AI 机器人对话
*
* 接收用户消息,检查全局开关后调用 AI 服务获取回复。
* 支持自动故障转移:默认厂商失败时自动尝试备用厂商。
*
* @param Request $request 请求对象,需包含 message 和 room_id
* @return JsonResponse 机器人回复或错误信息
*/
public function chat(Request $request): JsonResponse
{
// 验证请求参数
$request->validate([
'message' => 'required|string|max:2000',
'room_id' => 'required|integer',
]);
// 检查全局开关
$enabled = Sysparam::getValue('chatbot_enabled', '0');
if ($enabled !== '1') {
return response()->json([
'status' => 'error',
'message' => 'AI 机器人功能已关闭,请联系管理员开启。',
], 403);
}
$user = Auth::user();
$message = $request->input('message');
$roomId = $request->input('room_id');
try {
$result = $this->aiChat->chat($user->id, $message, $roomId);
return response()->json([
'status' => 'success',
'reply' => $result['reply'],
'provider' => $result['provider'],
'model' => $result['model'],
]);
} catch (\Exception $e) {
return response()->json([
'status' => 'error',
'message' => $e->getMessage(),
], 500);
}
}
/**
* 清除当前用户的 AI 对话上下文
*
* 用于用户想要重新开始对话时使用。
*
* @param Request $request 请求对象
* @return JsonResponse 操作结果
*/
public function clearContext(Request $request): JsonResponse
{
$user = Auth::user();
$this->aiChat->clearContext($user->id);
return response()->json([
'status' => 'success',
'message' => '对话上下文已清除,可以开始新的对话了。',
]);
}
}