You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.3 KiB
95 lines
3.3 KiB
from plugins_func.register import register_function, ToolType, ActionResponse, Action
|
|
from plugins_func.functions.hass_init import initialize_hass_handler
|
|
from config.logger import setup_logging
|
|
import asyncio
|
|
import requests
|
|
|
|
TAG = __name__
|
|
logger = setup_logging()
|
|
|
|
hass_get_state_function_desc = {
|
|
"type": "function",
|
|
"function": {
|
|
"name": "hass_get_state",
|
|
"description": "获取homeassistant里设备的状态,包括查询灯光亮度、颜色、色温,媒体播放器的音量,设备的暂停、继续操作",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"entity_id": {
|
|
"type": "string",
|
|
"description": "需要操作的设备id,homeassistant里的entity_id",
|
|
}
|
|
},
|
|
"required": ["entity_id"],
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
@register_function("hass_get_state", hass_get_state_function_desc, ToolType.SYSTEM_CTL)
|
|
def hass_get_state(conn, entity_id=""):
|
|
try:
|
|
|
|
future = asyncio.run_coroutine_threadsafe(
|
|
handle_hass_get_state(conn, entity_id), conn.loop
|
|
)
|
|
ha_response = future.result()
|
|
return ActionResponse(Action.REQLLM, ha_response, None)
|
|
except Exception as e:
|
|
logger.bind(tag=TAG).error(f"处理设置属性意图错误: {e}")
|
|
|
|
|
|
async def handle_hass_get_state(conn, entity_id):
|
|
ha_config = initialize_hass_handler(conn)
|
|
api_key = ha_config.get("api_key")
|
|
base_url = ha_config.get("base_url")
|
|
url = f"{base_url}/api/states/{entity_id}"
|
|
headers = {"Authorization": f"Bearer {api_key}", "Content-Type": "application/json"}
|
|
response = requests.get(url, headers=headers)
|
|
if response.status_code == 200:
|
|
responsetext = "设备状态:" + response.json()["state"] + " "
|
|
logger.bind(tag=TAG).info(f"api返回内容: {response.json()}")
|
|
|
|
if "media_title" in response.json()["attributes"]:
|
|
responsetext = (
|
|
responsetext
|
|
+ "正在播放的是:"
|
|
+ str(response.json()["attributes"]["media_title"])
|
|
+ " "
|
|
)
|
|
if "volume_level" in response.json()["attributes"]:
|
|
responsetext = (
|
|
responsetext
|
|
+ "音量是:"
|
|
+ str(response.json()["attributes"]["volume_level"])
|
|
+ " "
|
|
)
|
|
if "color_temp_kelvin" in response.json()["attributes"]:
|
|
responsetext = (
|
|
responsetext
|
|
+ "色温是:"
|
|
+ str(response.json()["attributes"]["color_temp_kelvin"])
|
|
+ " "
|
|
)
|
|
if "rgb_color" in response.json()["attributes"]:
|
|
responsetext = (
|
|
responsetext
|
|
+ "rgb颜色是:"
|
|
+ str(response.json()["attributes"]["rgb_color"])
|
|
+ " "
|
|
)
|
|
if "brightness" in response.json()["attributes"]:
|
|
responsetext = (
|
|
responsetext
|
|
+ "亮度是:"
|
|
+ str(response.json()["attributes"]["brightness"])
|
|
+ " "
|
|
)
|
|
logger.bind(tag=TAG).info(f"查询返回内容: {responsetext}")
|
|
return responsetext
|
|
# return response.json()['attributes']
|
|
# response.attributes
|
|
|
|
else:
|
|
return f"切换失败,错误码: {response.status_code}"
|