2023-12-02 10:53:31 +08:00
|
|
|
import json
|
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-05 09:31:52 +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-05 17:16:32 +08:00
|
|
|
def on_connect(client, userdata, flags, rc):
|
|
|
|
if rc == 0:
|
|
|
|
client.subscribe('lot_mqtt')
|
|
|
|
|
|
|
|
|
|
|
|
# Message receiving callback
|
|
|
|
def on_message(client, userdata, msg):
|
|
|
|
data = json.loads(msg.payload.decode('utf-8'))["msg"]
|
|
|
|
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:
|
|
|
|
# 错误类型
|
|
|
|
client.publish('success', payload='No Such Type', qos=0)
|
|
|
|
|
|
|
|
|
|
|
|
times = 120
|
|
|
|
|
|
|
|
|
|
|
|
def exec_shutdown():
|
|
|
|
pass
|
2023-12-02 10:53:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2023-12-05 17:16:32 +08:00
|
|
|
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
client = mqtt.Client(client_id='device1')
|
|
|
|
client.username_pw_set("demo", "123456")
|
|
|
|
# Specify callback function
|
|
|
|
client.on_connect = on_connect
|
|
|
|
client.on_message = on_message
|
|
|
|
# Establish a connection
|
|
|
|
# ceshi-mqtt.lihaink.cn
|
2023-12-05 18:35:06 +08:00
|
|
|
client.connect('ceshi-mqtt.lihaink.cn', 1883)
|
2023-12-05 17:16:32 +08:00
|
|
|
# Publish a message
|
|
|
|
client.loop_forever()
|
|
|
|
except:
|
|
|
|
time.sleep(30)
|
2023-12-05 18:38:15 +08:00
|
|
|
if times == 0:
|
2023-12-05 17:16:32 +08:00
|
|
|
# 重启机器
|
|
|
|
exec_shutdown()
|
2023-12-05 18:38:15 +08:00
|
|
|
times -= 1
|