This commit is contained in:
cxc
2024-04-09 16:18:55 +08:00
parent 0b77166eed
commit b2dc9cb9b4
10 changed files with 587 additions and 99 deletions

View File

@ -1,8 +1,10 @@
import asyncio
import time
from pathlib import Path
import pyautogui
import pytesseract
import requests
import yaml
from hik_uptime.custom_exception import NoWindowException
@ -10,14 +12,16 @@ from hik_uptime.custom_exception import NoWindowException
def read_config():
home_dir = Path.home()
with open(home_dir / ".config" / "hik-uptime" / "config.yaml", "r", encoding="utf-8") as f:
with open(
home_dir / ".config" / "hik-uptime" / "config.yaml", "r", encoding="utf-8"
) as f:
config = yaml.safe_load(f)
return config
def get_status():
# 找到窗口并最大化
window = pyautogui.getWindowsWithTitle("设置")
window = pyautogui.getWindowsWithTitle("智慧园区客户端")
if len(window) == 0:
raise NoWindowException("No window found")
print(window[0])
@ -25,30 +29,70 @@ def get_status():
window.maximize()
window.activate()
config = read_config()
# TODO: 切换到烟感设备列表
for pos in config['menus']:
time.sleep(1.5)
pyautogui.click(pos['x'], pos['y'])
time.sleep(2)
pyautogui.click(x=790, y=133)
time.sleep(2)
offline_devices = []
# TODO: OCR 获取已离线的设备名称数量
color = pyautogui.pixel(138, 8)
print('#{:02x}{:02x}{:02x}'.format(*color))
# 报警主机54 online: #0cb317
color_54 = pyautogui.pixel(369, 269)
color_54_hex = "#{:02x}{:02x}{:02x}".format(*color_54)
if color_54_hex != "#0cb317":
offline_devices.append("报警主机54")
# TODO: 向 /eventRcv 发送模拟订阅报文
# pyautogui.click(900, 140)
# clipboard.copy("网络")
# pyautogui.hotkey('ctrl', 'a')
# pyautogui.hotkey('ctrl', 'v')
# pyautogui.press('enter')
# pyautogui.click(x=window.width // 2, y=window.height // 2)
screenshot = pyautogui.screenshot()
screenshot = screenshot.crop((464, 412, 1401, 934))
screenshot.save('screenshot.png')
result = pytesseract.image_to_string(screenshot)
print(result)
# pyautogui.click(1920, 20)
# 报警主机53 online: #0db318
color_53 = pyautogui.pixel(742, 269)
color_53_hex = "#{:02x}{:02x}{:02x}".format(*color_53)
if color_53_hex != "#0db318":
offline_devices.append("报警主机53")
# 报警主机52 online: #0db318
color_52 = pyautogui.pixel(1116, 269)
color_52_hex = "#{:02x}{:02x}{:02x}".format(*color_52)
if color_52_hex != "#0db318":
offline_devices.append("报警主机52")
# 报警主机52 online: #0cb317
color_51 = pyautogui.pixel(369, 419)
color_51_hex = "#{:02x}{:02x}{:02x}".format(*color_51)
if color_51_hex != "#0cb317":
offline_devices.append("报警主机51")
# 报警主机52 online: #0db318
color_50 = pyautogui.pixel(742, 269)
color_50_hex = "#{:02x}{:02x}{:02x}".format(*color_50)
if color_50_hex != "#0db318":
offline_devices.append("报警主机50")
print(offline_devices)
for offline_device in offline_devices:
push_json = {
"eventType": "报警主机离线",
"deviceName": offline_device,
"eventLvl": 2,
"data": {"typeName": f"{offline_device}离线"},
"userIds": ["2110"],
}
requests.post(
"http://192.168.20.115:8000/ipaasuat/engine_company/anycross/trigger/callback/MmRhZTE4OTRiYjVkZDQ5YWNmOGRmZDI0NjQ1MTBlODUw",
json=push_json,
)
def capture_loop():
while True:
try:
get_status()
except Exception as e:
print(e)
time.sleep(60 * 5)
def run_app():
asyncio.run(capture_loop())
if __name__ == "__main__":
get_status()
run_app()