mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-25 00:23:53 +08:00
调整逻辑使用java端作为中转发送
This commit is contained in:
@@ -1,8 +1,5 @@
|
||||
"""呼叫设备工具"""
|
||||
import httpx
|
||||
import hashlib
|
||||
import requests
|
||||
from datetime import datetime
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
from config.logger import setup_logging
|
||||
@@ -14,121 +11,90 @@ if TYPE_CHECKING:
|
||||
TAG = __name__
|
||||
logger = setup_logging()
|
||||
|
||||
|
||||
call_device_function_desc = {
|
||||
"type": "function",
|
||||
"function": {
|
||||
"name": "call_device",
|
||||
"description": "主动呼叫其他小智设备进行语音通话。**重要**:只有当用户主动说\"我想跟XX通话\"、\"帮我打电话给XX\"时才调用此工具。当收到\"来自XX的来电\"消息时,不要调用此工具,让设备自然播报即可。",
|
||||
"description": "主动呼叫其他小智设备进行语音通话。**重要**:只有当用户主动说'我想跟XX通话'、'帮我打电话给XX'时才调用此工具。当收到'来自XX的来电'消息时,不要调用此工具,让设备自然播报即可。",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"nickname": {
|
||||
"type": "string",
|
||||
"description": "目标设备的备注名,例如:小陈、小翁"
|
||||
},
|
||||
"response_success": {
|
||||
"type": "string",
|
||||
"description": "呼叫成功时的回复"
|
||||
},
|
||||
"response_failure": {
|
||||
"type": "string",
|
||||
"description": "呼叫失败时的回复"
|
||||
}
|
||||
"nickname": {"type": "string", "description": "目标设备的备注名,例如:小陈、小翁"},
|
||||
},
|
||||
"required": ["nickname", "response_success", "response_failure"],
|
||||
"required": ["nickname"],
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
def _api_request(url: str, params: dict, headers: dict) -> dict:
|
||||
"""发送API请求并处理响应"""
|
||||
resp = requests.get(url, params=params, headers=headers, timeout=10)
|
||||
return resp.json()
|
||||
def _request_api(url: str, params: dict, headers: dict) -> requests.Response:
|
||||
return requests.get(url, params=params, headers=headers, timeout=10)
|
||||
|
||||
|
||||
def _call_gateway(gateway_url: str, gateway_secret: str, caller_mac: str, target_mac: str, caller_nickname: str) -> dict:
|
||||
"""呼叫网关"""
|
||||
date_str = datetime.now().strftime("%Y-%m-%d")
|
||||
token = hashlib.sha256((date_str + gateway_secret).encode()).hexdigest()
|
||||
headers = {"Authorization": f"Bearer {token}"}
|
||||
with httpx.Client(timeout=5.0) as client:
|
||||
resp = client.post(
|
||||
f"{gateway_url}/api/call/request",
|
||||
json={"caller_mac": caller_mac, "target_mac": target_mac, "caller_nickname": caller_nickname},
|
||||
headers=headers
|
||||
)
|
||||
return resp.json()
|
||||
def _failed_reply(msg: str) -> ActionResponse:
|
||||
return ActionResponse(action=Action.RESPONSE, response=msg)
|
||||
|
||||
|
||||
@register_function("call_device", call_device_function_desc, ToolType.SYSTEM_CTL)
|
||||
def call_device(conn: "ConnectionHandler", nickname: str, response_success: str = None, response_failure: str = None):
|
||||
def call_device(conn: "ConnectionHandler", nickname: str):
|
||||
caller_mac = conn.headers.get("device-id")
|
||||
if not caller_mac:
|
||||
return _failed_reply("无法获取本机MAC地址")
|
||||
|
||||
api_config = conn.config.get("manager-api", {})
|
||||
api_url = api_config.get("url")
|
||||
api_secret = api_config.get("secret")
|
||||
if not api_url or not api_secret:
|
||||
logger.bind(tag=TAG).error("manager-api配置缺失")
|
||||
return _failed_reply("配置错误,请稍后再试")
|
||||
|
||||
headers = {"Authorization": f"Bearer {api_secret}"}
|
||||
|
||||
# 查询通讯录
|
||||
try:
|
||||
caller_mac = conn.headers.get("device-id", "")
|
||||
if not caller_mac:
|
||||
return ActionResponse(action=Action.RESPONSE, response="无法获取本机MAC地址")
|
||||
resp = _request_api(
|
||||
f"{api_url}/device/address-book/lookup",
|
||||
params={"callerMac": caller_mac, "nickname": nickname},
|
||||
headers=headers,
|
||||
)
|
||||
result = resp.json()
|
||||
except requests.RequestException as e:
|
||||
logger.bind(tag=TAG).error(f"通讯录查找请求失败: {e}")
|
||||
return _failed_reply("通讯录查询失败,请稍后再试")
|
||||
|
||||
api_config = conn.config.get("manager-api", {})
|
||||
api_url = api_config.get("url", "")
|
||||
api_secret = api_config.get("secret", "")
|
||||
if not api_url or not api_secret:
|
||||
logger.bind(tag=TAG).error("manager-api配置缺失")
|
||||
return ActionResponse(action=Action.RESPONSE, response="配置错误,请稍后再试")
|
||||
if result.get("code") != 0 or not result.get("data"):
|
||||
return _failed_reply(f"未找到备注为'{nickname}'的设备")
|
||||
|
||||
try:
|
||||
result = _api_request(
|
||||
f"{api_url}/device/address-book/lookup",
|
||||
params={"callerMac": caller_mac, "nickname": nickname},
|
||||
headers={"Authorization": f"Bearer {api_secret}"}
|
||||
)
|
||||
except Exception as e:
|
||||
logger.bind(tag=TAG).error(f"通讯录查找请求失败: {e}")
|
||||
return ActionResponse(action=Action.RESPONSE, response="通讯录查询失败,请稍后再试")
|
||||
data = result["data"]
|
||||
target_mac = data.get("targetMac")
|
||||
caller_nickname = data.get("callerNickname")
|
||||
has_permission = data.get("hasPermission")
|
||||
|
||||
if result.get("code") != 0:
|
||||
return ActionResponse(action=Action.RESPONSE, response=f"未找到备注为'{nickname}'的设备")
|
||||
if not target_mac:
|
||||
return _failed_reply(f"未找到备注为'{nickname}'的设备")
|
||||
if not caller_nickname:
|
||||
return _failed_reply("呼叫失败,您不是对方的联系人")
|
||||
if not has_permission:
|
||||
return _failed_reply("呼叫失败,您没有权限呼叫该设备")
|
||||
|
||||
lookup_result = result.get("data")
|
||||
if not lookup_result:
|
||||
return ActionResponse(action=Action.RESPONSE, response=f"未找到备注为'{nickname}'的设备")
|
||||
# 通过Java中转调用网关
|
||||
try:
|
||||
resp = _request_api(
|
||||
f"{api_url}/device/call/forward",
|
||||
params={"callerMac": caller_mac, "targetMac": target_mac, "callerNickname": caller_nickname},
|
||||
headers=headers,
|
||||
)
|
||||
result = resp.json()
|
||||
except requests.RequestException as e:
|
||||
logger.bind(tag=TAG).error(f"呼叫请求转发失败: {e}")
|
||||
return _failed_reply("呼叫失败,请稍后再试")
|
||||
|
||||
target_mac = lookup_result.get("targetMac")
|
||||
caller_nickname = lookup_result.get("callerNickname")
|
||||
has_permission = lookup_result.get("hasPermission", "false") == "true"
|
||||
if result.get("code") != 0:
|
||||
return _failed_reply(result.get("msg", "呼叫失败"))
|
||||
|
||||
if not target_mac:
|
||||
return ActionResponse(action=Action.RESPONSE, response=f"未找到备注为'{nickname}'的设备")
|
||||
call_data = result.get("data", {})
|
||||
if call_data.get("status") == "offline":
|
||||
return _failed_reply(call_data.get("message"))
|
||||
|
||||
if not caller_nickname:
|
||||
return ActionResponse(action=Action.RESPONSE, response="呼叫失败,您不是对方的联系人")
|
||||
|
||||
if not has_permission:
|
||||
return ActionResponse(action=Action.RESPONSE, response="呼叫失败,您没有权限呼叫该设备")
|
||||
|
||||
plugin_config = conn.config.get("plugins", {}).get("call_device", {})
|
||||
gateway_url = plugin_config.get("gateway_url", "http://127.0.0.1:8007")
|
||||
gateway_secret = plugin_config.get("gateway_secret", "")
|
||||
|
||||
try:
|
||||
gw_result = _call_gateway(gateway_url, gateway_secret, caller_mac, target_mac, caller_nickname)
|
||||
except httpx.ConnectError:
|
||||
logger.bind(tag=TAG).error(f"无法连接到网关: {gateway_url}")
|
||||
return ActionResponse(action=Action.RESPONSE, response="无法连接到通话网关,请稍后再试")
|
||||
except httpx.TimeoutException:
|
||||
logger.bind(tag=TAG).error("网关请求超时")
|
||||
return ActionResponse(action=Action.RESPONSE, response="通话请求超时,请稍后再试")
|
||||
|
||||
conn.calling = True
|
||||
status = gw_result.get("status")
|
||||
if status == "bridged":
|
||||
return ActionResponse(action=Action.NONE, result="bridged", response=f"已与{nickname}建立通话")
|
||||
elif status == "pending":
|
||||
return ActionResponse(action=Action.NONE, result="pending", response=f"正在呼叫{nickname},请等待对方接听")
|
||||
else:
|
||||
error_msg = gw_result.get("message", "未知错误")
|
||||
return ActionResponse(action=Action.RESPONSE, response=f"呼叫失败:{error_msg}")
|
||||
|
||||
except Exception as e:
|
||||
logger.bind(tag=TAG).error(f"call_device错误: {e}")
|
||||
return ActionResponse(action=Action.ERROR, response=f"呼叫失败: {str(e)}")
|
||||
conn.calling = True
|
||||
return ActionResponse(action=Action.NONE, response=f"正在呼叫{nickname},请等待对方接听")
|
||||
Reference in New Issue
Block a user