This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mqtt_cloud.py
182 lines (159 loc) · 9.75 KB
/
mqtt_cloud.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
import paho.mqtt.client as mqtt
import json
import requests
import logging
import os
api_url = os.environ.get('API')
def is_json(data):
try:
json.loads(data)
return True
except json.decoder.JSONDecodeError:
return False
def on_connect(client, userdata, flags, rc):
print("Cloud conectado con codigo " + str(rc))
client.subscribe("PTIN2023/#")
# Aqui podemos poner los ifs para definir un tema determinado
def on_message(client, userdata, msg):
logging.info("CLOUD")
logging.info(msg.topic)
if msg.topic == "PTIN2023/A2/INCLOUD":#Hay que poner un tema en común, sinó se petará todo
if(is_json(msg.payload.decode('utf-8'))):
#tratamiento del mensaje-->
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['KEY1', 'KEY2', 'KEY3']
#si el mensaje es que que queremos, entonces lo tratamos
if all(key in payload for key in needed_keys):
print("Enviado al CLOUD [KEY1],[KEY2],[KEY3]")
print("Enviado a la BD KEY1,KEY2,KEY3("+str(payload["KEY1"]) + ","+str(payload["KEY2"]) +","+str(payload["KEY2"]+")"))
print("---------------------------------------")
else:
print("ERROR FORMATO!-->PTIN2023/A2/TOCLOUD")
else:
print("Recibido el texto plano siguiente: "+msg.payload.decode('utf-8'))
#----------------------------------------------------------------------------------------
if msg.topic == "PTIN2023/A2/USERINCLOUD":#Hay que poner un tema en común, sinó se petará todo
if(is_json(msg.payload.decode('utf-8'))):
#tratamiento del mensaje-->
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['email', 'password']
#si el mensaje es que que queremos, entonces lo tratamos
if all(key in payload for key in needed_keys):
# Hacer una solicitud POST a la ruta /api/login con los datos recibidos por MQTT
#url = 'http://localhost:5000/api/login' # Reemplaza con la URL real de tu API
#headers = {'Content-Type': 'application/json'}
#response = requests.post(url, headers=headers, data=json_data)
print("Enviado a la BD del cloud el email " + str(payload["email"]) +" y password" + str(payload["password"]))
print("---------------------------------------")
else:
print("ERROR FORMATO!-->PTIN2023/A2/USERINCLOUD")
else:
print("Recibido el texto plano siguiente: "+msg.payload.decode('utf-8'))
#----------------------------------------------------------------------------------------
if msg.topic == "PTIN2023/A2/USERSAVECLOUD":#Hay que poner un tema en común, sinó se petará todo
if(is_json(msg.payload.decode('utf-8'))):
#tratamiento del mensaje-->
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['name','email','phone','role', 'password','when']
#si el mensaje es que que queremos, entonces lo tratamos
if all(key in payload for key in needed_keys):
url = 'http://127.0.0.1:5000/api/register' # Reemplaza con la URL real de tu API
headers = {'Content-Type': 'application/json'}
response = requests.post(url, headers=headers, data=msg.payload)
if response.status_code == 200:
print("CORRECTO ENVIADO")
else:
print("INCORRECTO ENVIADO")
# Haz algo con el mensaje de error
print("Enviado a la BD del cloud el email " + str(payload["email"]) +" y password" + str(payload["password"]))
print("---------------------------------------")
else:
print("ERROR FORMATO!-->PTIN2023/A2/USERSAVECLOUD")
else:
print("Recibido el texto plano siguiente: "+msg.payload.decode('utf-8'))
#----------------------------------------------------------------------------------------
#Hay que poner un tema en común, sinó se petará todo
if msg.topic == "PTIN2023/A1/DRONE/TOCLOUD/UPDATESTATUS":
if(is_json(msg.payload.decode('utf-8'))):
#tratamiento del mensaje-->
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['id_dron', 'status']
#si el mensaje es que que queremos, entonces lo tratamos
if all(key in payload for key in needed_keys):
# Haz algo con el mensaje de error
print("Enviado a la BD id_dron " + str(payload["id_dron"]) +" y status" + str(payload["status"]))
print("---------------------------------------")
else:
print("PTIN2023/A1/DRONE/TOCLOUD/UPDATESTATUS")
else:
print("Recibido el texto plano siguiente: "+msg.payload.decode('utf-8'))
#----------------------------------------------------------------------------------------
if msg.topic == "PTIN2023/CAR/UPDATELOCATION":
if(is_json(msg.payload.decode('utf-8'))):
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['id_car', 'location_act', 'status', 'status_num', 'battery', 'autonomy']
#YA EXSITE: license_plate,capacitylast,_maintenance_date,beehive,location_in,location_act,location_end
if all(key in payload for key in needed_keys):
logging.info("update llega aqui siu")
url = api_url + "/api/update_location"
response = requests.post(url, json = payload)
else:
logging.info("SUBNORMAL!!! ENVIA BIEN LOS CAMPOS | UPDATELOCATION")
#----------------------------------------------------------------------------------------
if msg.topic == "PTIN2023/CAR/UPDATESTATUS":#Hay que poner un tema en común, sinó se petará todo
if(is_json(msg.payload.decode('utf-8'))):
#tratamiento del mensaje-->
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['id_car', 'status', 'status_num']
#si el mensaje es que que queremos, entonces lo tratamos
if all(key in payload for key in needed_keys):
logging.info("status llega aqui siu")
url = api_url + "/api/update_status"
response = requests.post(url, json = payload)
else:
logging.info("SUBNORMAL!!! ENVIA BIEN LOS CAMPOS | UPDATESTATUS")
#----------------------------------------------------------------------------------------
if msg.topic == "PTIN2023/TOCLOUD/DRON_UPDATESTATUS":#Hay que poner un tema en común, sinó se petará todo
if(is_json(msg.payload.decode('utf-8'))):
#tratamiento del mensaje-->
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['id_dron', 'status', 'status_num']
#si el mensaje es que que queremos, entonces lo tratamos
if all(key in payload for key in needed_keys):
logging.info("status llega aqui siu")
url = 'http://api:5000/api/TOCLOUD_UPDATESTATUS'
response = requests.post(url, json = payload)
else:
logging.info("SUBNORMAL!!! ENVIA BIEN LOS CAMPOS | TOCLOUD_UPDATESTATUS")
#----------------------------------------------------------------------------------------
if msg.topic == "PTIN2023/TOCLOUD/DRON_UPDATELOCATION":#Hay que poner un tema en común, sinó se petará todo
if(is_json(msg.payload.decode('utf-8'))):
#tratamiento del mensaje-->
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['id_dron','location_act','status','status_num','battery','autonomy']
#si el mensaje es que que queremos, entonces lo tratamos
if all(key in payload for key in needed_keys):
logging.info("status llega aqui siu")
url = 'http://api:5000/api/TOCLOUD_UPDATELOCATION'
response = requests.post(url, json = payload)
else:
logging.info("SUBNORMAL!!! ENVIA BIEN LOS CAMPOS | TOCLOUD_UPDATELOCATION") #----------------------------------------------------------------------------------------
if msg.topic == "PTIN2023/VILANOVA/DRON/UPDATELOCATION":
if(is_json(msg.payload.decode('utf-8'))):
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['id_dron', 'location_act', 'status', 'status_num', 'battery', 'autonomy']
if all(key in payload for key in needed_keys):
logging.info("update llega aqui siu")
url = "http://192.168.80.242:5000/api/update_location"
response = requests.post(url, json = payload)
else:
logging.info("SUBNORMAL!!! ENVIA BIEN LOS CAMPOS | UPDATELOCATION")
#-----------------------------------------------------------------------------------------
if msg.topic == "PTIN2023/VILANOVA/DRON/UPDATESTATUS":#Hay que poner un tema en común, sinó se petará todo
if(is_json(msg.payload.decode('utf-8'))):
payload = json.loads(msg.payload.decode('utf-8'))
needed_keys = ['id_dron', 'status', 'status_num']
if all(key in payload for key in needed_keys):
logging.info("status llega aqui siu")
url = "http://192.168.80.242:5000/api/update_status"
response = requests.post(url, json = payload)