mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-22 23:23:55 +08:00
* 🦄 refactor(web): 修改zhikongtaiweb到web * 🦄 refactor: 重写前端 路由守护尚未写完 * 🦄 refactor: 标准化路由 * update:前端重写,保留后端 * update:添加前端代码 * update:pip转成poetry启动 * update:增加mem0ai包依赖 * update:文档增加mem0ai的描述 * feat: play online mp3 (#181) Co-authored-by: 欣南科技 <huangrongzhuang@xin-nan.com> * 修改前端代码 * update:调整项目目录 * update:优化 * update:配置文件去除8002端口 * update:增加开发说明 * update:更新开发协议 --------- Co-authored-by: kalicyh <34980061+kaliCYH@users.noreply.github.com> Co-authored-by: hrz <1710360675@qq.com> Co-authored-by: freshlife001 <talent@mises.site> Co-authored-by: CGD <3030332422@qq.com>
45 lines
1.8 KiB
Python
45 lines
1.8 KiB
Python
from config.logger import setup_logging
|
|
import json
|
|
from core.handle.abortHandle import handleAbortMessage
|
|
from core.handle.helloHandle import handleHelloMessage
|
|
from core.handle.receiveAudioHandle import startToChat
|
|
from core.handle.iotHandle import handleIotDescriptors
|
|
|
|
TAG = __name__
|
|
logger = setup_logging()
|
|
|
|
|
|
async def handleTextMessage(conn, message):
|
|
"""处理文本消息"""
|
|
logger.bind(tag=TAG).info(f"收到文本消息:{message}")
|
|
try:
|
|
msg_json = json.loads(message)
|
|
if isinstance(msg_json, int):
|
|
await conn.websocket.send(message)
|
|
return
|
|
if msg_json["type"] == "hello":
|
|
await handleHelloMessage(conn)
|
|
elif msg_json["type"] == "abort":
|
|
await handleAbortMessage(conn)
|
|
elif msg_json["type"] == "listen":
|
|
if "mode" in msg_json:
|
|
conn.client_listen_mode = msg_json["mode"]
|
|
logger.bind(tag=TAG).debug(f"客户端拾音模式:{conn.client_listen_mode}")
|
|
if msg_json["state"] == "start":
|
|
conn.client_have_voice = True
|
|
conn.client_voice_stop = False
|
|
elif msg_json["state"] == "stop":
|
|
conn.client_have_voice = True
|
|
conn.client_voice_stop = True
|
|
elif msg_json["state"] == "detect":
|
|
conn.asr_server_receive = False
|
|
conn.client_have_voice = False
|
|
conn.asr_audio.clear()
|
|
if "text" in msg_json:
|
|
await startToChat(conn, msg_json["text"])
|
|
elif msg_json["type"] == "iot":
|
|
if "descriptors" in msg_json:
|
|
await handleIotDescriptors(conn, msg_json["descriptors"])
|
|
except json.JSONDecodeError:
|
|
await conn.websocket.send(message)
|