2023-12-02 10:53:31 +08:00
|
|
|
import json
|
2023-12-09 15:16:51 +08:00
|
|
|
import os
|
2023-12-05 17:16:32 +08:00
|
|
|
import time
|
2023-12-02 10:53:31 +08:00
|
|
|
import paho.mqtt.client as mqtt
|
|
|
|
|
2023-12-09 15:23:18 +08:00
|
|
|
from device import device_name
|
2023-12-08 14:33:02 +08:00
|
|
|
from tool import push_stream, close_stream, update, exec_sh, get_record, get_list_record, get_status
|
2023-12-02 10:53:31 +08:00
|
|
|
|
2023-12-07 15:27:38 +08:00
|
|
|
|
2023-12-05 17:16:32 +08:00
|
|
|
def on_connect(client, userdata, flags, rc):
|
|
|
|
if rc == 0:
|
2023-12-09 17:25:13 +08:00
|
|
|
print("成功订阅")
|
2023-12-05 17:16:32 +08:00
|
|
|
client.subscribe('lot_mqtt')
|
2023-12-09 17:40:16 +08:00
|
|
|
client.publish('success', payload='成功订阅', qos=0)
|
2023-12-05 17:16:32 +08:00
|
|
|
|
2023-12-07 19:09:31 +08:00
|
|
|
|
2023-12-07 19:00:16 +08:00
|
|
|
def valid(msg, client):
|
|
|
|
origin_data = json.loads(msg.payload.decode('utf-8'))
|
|
|
|
if 'msg' not in origin_data:
|
|
|
|
client.publish('error', payload='msg must be supplied', qos=0)
|
|
|
|
return False
|
|
|
|
if 'device_name' not in origin_data:
|
|
|
|
client.publish('error', payload='device_name must be supplied', qos=0)
|
|
|
|
return False
|
2023-12-09 15:23:37 +08:00
|
|
|
client.publish('error', payload=device_name, qos=0)
|
2023-12-09 15:23:18 +08:00
|
|
|
if device_name != origin_data['device_name']:
|
2023-12-07 19:00:16 +08:00
|
|
|
return False
|
|
|
|
return True
|
2023-12-07 15:27:38 +08:00
|
|
|
|
|
|
|
|
2023-12-05 17:16:32 +08:00
|
|
|
# Message receiving callback
|
|
|
|
def on_message(client, userdata, msg):
|
2023-12-07 19:04:49 +08:00
|
|
|
if not valid(msg, client):
|
2023-12-07 19:00:16 +08:00
|
|
|
client.publish('error', payload='验证失败', qos=0)
|
|
|
|
return
|
|
|
|
client.publish('success', payload='验证通过', qos=0)
|
2023-12-07 09:27:37 +08:00
|
|
|
try:
|
2023-12-07 15:27:38 +08:00
|
|
|
origin_data = json.loads(msg.payload.decode('utf-8'))
|
|
|
|
data = origin_data["msg"]
|
2023-12-07 09:27:37 +08:00
|
|
|
if data == "push_stream":
|
|
|
|
# 启动推流视频
|
|
|
|
push_stream(client)
|
|
|
|
elif data == "close_stream":
|
|
|
|
# 关闭推流视频
|
|
|
|
close_stream(client)
|
|
|
|
elif data == "exec":
|
|
|
|
# 执行命令
|
|
|
|
exec_sh(msg, client)
|
|
|
|
elif data == "update":
|
|
|
|
# git更新项目和配置文件
|
|
|
|
update(client)
|
|
|
|
elif data == "record_list":
|
|
|
|
# 查看录像列表
|
|
|
|
get_list_record()
|
|
|
|
elif data == "record":
|
|
|
|
# 获取录像
|
|
|
|
get_record(msg, client)
|
|
|
|
elif data == "status":
|
|
|
|
# 查看运行状态
|
|
|
|
get_status(client)
|
|
|
|
else:
|
|
|
|
# 错误类型
|
2023-12-07 15:27:38 +08:00
|
|
|
client.publish('error', payload='No Such Type', qos=0)
|
2023-12-07 09:27:37 +08:00
|
|
|
except Exception as e:
|
|
|
|
pass
|
2023-12-05 17:16:32 +08:00
|
|
|
|
|
|
|
|
|
|
|
times = 120
|
2023-12-09 18:41:35 +08:00
|
|
|
if __name__ == '__main__':
|
|
|
|
client = mqtt.Client(client_id=device_name)
|
|
|
|
client.username_pw_set("demo", "123456")
|
|
|
|
# Specify callback function
|
|
|
|
client.on_connect = on_connect
|
|
|
|
# 尝试连接 MQTT 服务器
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
# ceshi-mqtt.lihaink.cn
|
|
|
|
client.connect('192.168.1.27', 1883)
|
|
|
|
client.loop_forever()
|
|
|
|
except Exception as e:
|
|
|
|
print("Connection failed:", e)
|
|
|
|
time.sleep(10)
|
|
|
|
print("正在尝试重连")
|