-
-
Notifications
You must be signed in to change notification settings - Fork 33
/
_C014_GenMQTT.py
589 lines (568 loc) · 18.2 KB
/
_C014_GenMQTT.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
#!/usr/bin/env python3
#############################################################################
################ Generic MQTT controller for RPIEasy ########################
#############################################################################
#
# Generic MQTT controller sends sensor data to:
# topic: %sysname%/taskname/valuename/state with payload: value
#
# Please make sure to use distinct names at task and valuenames!
#
# If the target device implements plugin_receivedata() than the
# topic: %sysname%/taskname/valuename/set payload value will be forwarded to it!
# (Two way communication)
#
# Variables: %sysname% %tskname% %valname% %tskid%
# # = %tskname%/%valname% !!!
#
# Commands can be remotely executed through MQTT with writing to:
# topic: %sysname%/cmd with payload: command
#
# Copyright (C) 2018-2019 by Alexander Nagy - https://bitekmindenhol.blog.hu/
#
import controller
import paho.mqtt.client as mqtt
import misc
import rpieGlobals
import time
import webserver
import commands
import Settings
import os
import json
class Controller(controller.ControllerProto):
CONTROLLER_ID = 14
CONTROLLER_NAME = "Generic MQTT"
def __init__(self,controllerindex):
controller.ControllerProto.__init__(self,controllerindex)
self.usesID = False
self.usesAccount = True
self.usesPassword = True
self.usesMQTT = True
self.onmsgcallbacksupported = True
self.controllerport = 1883
self.inchannel = "%sysname%/#/state"
self.outchannel = "%sysname%/#/set" # webformload?
self.mqttclient = None
self.lastreconnect = 0
self.connectinprogress = 0
self.inch = ""
self.outch = ""
self.authmode = 0
self.certfile = ""
self.laststatus = -1
self.keepalive = 60
self.lwt_topic = "%sysname%/LWT"
self.lwt_t = ""
self.lwtconnmsg = "Online"
self.lwtdisconnmsg = "Offline"
self.useJSON = False
self.backreport = True
self.globalretain = False
def controller_init(self,enablecontroller=None):
if enablecontroller != None:
self.enabled = enablecontroller
self.connectinprogress = 0
self.inch, state = commands.parseruleline(self.inchannel) # replace global variables
self.outch, state = commands.parseruleline(self.outchannel)
state = self.outch.find('#')
if state >-1:
self.outch = self.outch[:(state+1)]
else:
state = self.outch.find('%tskname%')
if state < 0:
state = self.outch.find('%tskid%')
if state >-1:
self.outch = self.outch[:(state)]+"/#"
else:
state = self.outch.find('%valname%')
if state >-1:
self.outch = self.outch[:(state)]+"/#"
self.outch = self.outch.replace('//','/').strip()
if self.outch=="" or self.outch=="/" or self.outch=="/#" or self.outch=="%/#":
self.outch = "#"
try:
ls = self.laststatus
except:
self.laststatus = -1
try:
self.lwt_t, state = commands.parseruleline(self.lwt_topic)
except:
self.lwt_topic = ""
try:
if self.useJSON: #check if var exists
pass
except:
self.useJSON = False
try:
if self.backreport:
pass
except:
self.backreport = True
try:
if self.globalretain:
pass
except:
self.globalretain = False
try:
mqttcompatibility = mqtt.CallbackAPIVersion.VERSION1
except:
mqttcompatibility = None
self.mqttclient = GMQTTClient(mqttcompatibility)
self.mqttclient.subscribechannel = self.outch
self.mqttclient.controllercb = self.on_message
self.mqttclient.connectcb = self.on_connect
self.mqttclient.disconnectcb = self.on_disconnect
if self.controllerpassword=="*****":
self.controllerpassword=""
self.initialized = True
if self.enabled:
if self.isconnected()==False:
misc.addLog(rpieGlobals.LOG_LEVEL_DEBUG,"MQTT: Try to connect")
self.connect()
else:
self.laststatus = -1
self.disconnect()
return True
def connect(self):
if self.enabled and self.initialized:
if self.isconnected():
misc.addLog(rpieGlobals.LOG_LEVEL_DEBUG,"Already connected force disconnect!")
self.disconnect()
self.connectinprogress = 1
self.lastreconnect = time.time()
if (self.controlleruser!="" or self.controllerpassword!="") and (self.isconnected() == False):
self.mqttclient.username_pw_set(self.controlleruser,self.controllerpassword)
misc.addLog(rpieGlobals.LOG_LEVEL_DEBUG,"Set MQTT password")
try:
am = self.authmode
except:
am = 0
if am==1 or am==2: # mqtts
try:
import ssl
except:
misc.addLog(rpieGlobals.LOG_LEVEL_ERROR,"OpenSSL is not reachable!")
self.initialized = False
return False
if am==1: # with cert file
try:
fname = self.certfile.strip()
except:
fname = ""
if (fname=="") or (str(fname)=="0") or (os.path.exists(fname)==False):
misc.addLog(rpieGlobals.LOG_LEVEL_ERROR,"Certificate file not found!")
self.initialized = False
return False
try:
self.mqttclient.tls_set(fname, tls_version=ssl.PROTOCOL_TLSv1_2)
self.mqttclient.tls_insecure_set(True) # or False?
except:
pass
elif am==2: # no cert! connect somehow..
try:
ssl_ctx = ssl.create_default_context()
ssl_ctx.check_hostname = False
ssl_ctx.verify_mode = ssl.CERT_NONE
self.mqttclient.tls_set_context(ssl_ctx)
self.mqttclient.tls_insecure_set(True)
except:
pass
try:
kp = self.keepalive
except:
self.keepalive = 60
try:
self.mqttclient.will_set(self.lwt_t, payload=self.lwtdisconnmsg, qos=0, retain=True)
self.mqttclient.connect(self.controllerip,int(self.controllerport),keepalive=self.keepalive) # connect_async() is faster but maybe not the best for user/pass method
self.mqttclient.loop_start()
except Exception as e:
misc.addLog(rpieGlobals.LOG_LEVEL_ERROR,"MQTT controller: "+self.controllerip+":"+str(self.controllerport)+" connection failed "+str(e))
self.laststatus = 0
return self.isconnected()
def disconnect(self):
try:
(mres,mid) = self.mqttclient.publish(self.lwt_t,self.lwtdisconnmsg)
except Exception as e:
print(e)
try:
self.mqttclient.loop_stop(True)
except:
pass
try:
self.mqttclient.disconnect()
except:
pass
stat=self.isconnected()
if self.enabled!=True:
commands.rulesProcessing("GenMQTT#Disconnected",rpieGlobals.RULE_SYSTEM)
return stat
def isconnected(self,ForceCheck=True):
res = False
if self.enabled and self.initialized:
if ForceCheck==False:
return (self.laststatus==1)
if self.mqttclient is not None:
tstart = self.outch[:len(self.outch)-1]
gtopic = tstart+"status"
gval = "PING"
mres = 1
try:
(mres,mid) = self.mqttclient.publish(gtopic,gval)
except:
mres = 1
if mres==0:
res = 1 # connected
else:
res = 0 # not connected
if res != self.laststatus:
if res==0:
commands.rulesProcessing("GenMQTT#Disconnected",rpieGlobals.RULE_SYSTEM)
else:
try:
(mres,mid) = self.mqttclient.publish(self.lwt_t,self.lwtconnmsg)
except:
pass
commands.rulesProcessing("GenMQTT#Connected",rpieGlobals.RULE_SYSTEM)
self.laststatus = res
if res == 1 and self.connectinprogress==1:
self.connectinprogress=0
return res
def webform_load(self): # create html page for settings
webserver.addFormTextBox("Report topic","inchannel",self.inchannel,255)
webserver.addFormTextBox("Command topic","outchannel",self.outchannel,255)
try:
kp = self.keepalive
except:
kp = 60
webserver.addFormNumericBox("Keepalive time","keepalive",kp,2,600)
webserver.addUnit("s")
try:
am = self.authmode
fname = self.certfile
except:
am = 0
fname = ""
options = ["MQTT","MQTTS/with cert","MQTTS/insecure"]
optionvalues = [0,1,2]
webserver.addFormSelector("Mode","c014_mode",len(optionvalues),options,optionvalues,None,int(am))
webserver.addFormTextBox("Server certificate file","c014_cert",str(fname),120)
webserver.addBrowseButton("Browse","c014_cert",startdir=str(fname))
webserver.addFormNote("Upload certificate first at <a href='filelist'>filelist</a> then select here!")
try:
lwt = self.lwt_topic
lwt1 = self.lwtconnmsg
lwt2 = self.lwtdisconnmsg
except:
lwt = "%sysname%/LWT"
lwt1 = "Online"
lwt2 = "Offline"
webserver.addFormTextBox("Controller lwl topic","c014_lwt",lwt,255)
webserver.addFormTextBox("LWT Connect Message","c014_cmsg",lwt1,255)
webserver.addFormTextBox("LWT Disconnect Message","c014_dcmsg",lwt2,255)
webserver.addFormCheckBox("Check conn & reconnect if needed at every 30 sec","c014_reconnect",self.timer30s)
try:
webserver.addFormCheckBox("Use JSON payload","c014_usejson",self.useJSON)
except:
self.useJSON = False
try:
webserver.addFormCheckBox("Echo back control device status (status after set)","c014_backreport",self.backreport)
except:
self.backreport = True
try:
webserver.addFormCheckBox("Retain every message","c014_retain",self.globalretain)
except:
self.globalretain = False
return True
def webform_save(self,params): # process settings post reply
pchange = False
pval = self.inchannel
self.inchannel = webserver.arg("inchannel",params)
if pval != self.inchannel:
pchange = True
pval = self.outchannel
self.outchannel = webserver.arg("outchannel",params)
if self.inchannel == self.outchannel:
self.outchannel = self.outchannel+"/set"
if pval != self.outchannel:
pchange = True
try:
p1 = self.authmode
p2 = self.certfile
self.authmode = int(webserver.arg("c014_mode",params))
self.certfile = webserver.arg("c014_cert",params)
if p1 != self.authmode or p2 != self.certfile:
pchange = True
except:
self.authmode = 0
self.certfile = ""
pval = self.keepalive
try:
self.keepalive = int(webserver.arg("keepalive",params))
except:
self.keepalive = 60
if pval != self.keepalive:
pchange = True
try:
lwt = self.lwt_topic
lwt1 = self.lwtconnmsg
lwt2 = self.lwtdisconnmsg
self.lwt_topic = webserver.arg("c014_lwt",params)
self.lwtconnmsg = webserver.arg("c014_cmsg",params)
self.lwtdisconnmsg = webserver.arg("c014_dcmsg",params)
except:
self.lwt_topic = "%sysname%/LWT"
self.lwtconnmsg = "Online"
self.lwtdisconnmsg = "Offline"
if lwt!=self.lwt_topic or lwt1!= self.lwtconnmsg or lwt2!=self.lwtdisconnmsg:
pchange = True
if (webserver.arg("c014_reconnect",params)=="on"):
self.timer30s = True
else:
self.timer30s = False
if (webserver.arg("c014_usejson",params)=="on"):
self.useJSON = True
else:
self.useJSON = False
if (webserver.arg("c014_backreport",params)=="on"):
self.backreport = True
else:
self.backreport = False
if (webserver.arg("c014_retain",params)=="on"):
self.globalretain = True
else:
self.globalretain = False
if pchange and self.enabled:
self.disconnect()
time.sleep(0.1)
self.connect()
return True
def timer_thirty_second(self):
if self.enabled:
if self.isconnected()==False:
misc.addLog(rpieGlobals.LOG_LEVEL_DEBUG,"MQTT: Try to reconnect")
self.connect()
return self.timer30s
def on_message(self, msg):
success = False
tstart = self.outch[:len(self.outch)-1]
if msg.topic.startswith(tstart) or self.outch=="#":
msg2 = msg.payload.decode('utf-8')
if (msg.topic == tstart + "cmd") and (self.outch!="#"): # global command arrived, execute
commands.doExecuteCommand(msg2,True)
success = True
else:
try:
# tend = msg.topic[len(self.outch)-1:]
dnames = msg.topic.split("/")
dnames2 = self.outchannel.split("/")
except:
dnames = []
if len(dnames)>1:
v1 = -1
v2 = -1
if self.outchannel.endswith("/"+dnames[len(dnames)-1]): # set command arrived, forward it to the Task
ttaskname = ""
if self.useJSON:
mlist = []
if ('{' in msg2):
try:
mlist = json.loads(msg2)
except Exception as e:
mlist = []
if ("taskname" in mlist):
ttaskname = mlist['taskname']
dnames = []
# print(msg2,mlist,ttaskname,dnames)#debug
if ttaskname=="":
try:
v1 = dnames2.index("#")
v2 = v1+1
except:
v1 = -1
if v1 == -1:
try:
v1 = dnames2.index("%tskname%")
except:
v1 = -1
try:
v2 = dnames2.index("%valname%")
except:
v2 = -1
try:
v3 = dnames2.index("%tskid%")
except:
v3 = -1
if v3>-1:
try:
t = int(dnames[v3])-1
if Settings.Tasks[t] and type(Settings.Tasks[t]) is not bool:
ttaskname = Settings.Tasks[t].gettaskname().strip()
except:
pass
elif v1==-1 and v2>-1:
try:
for x in range(len(Settings.Tasks)):
if Settings.Tasks[x] and type(Settings.Tasks[x]) is not bool:
for u in range(Settings.Tasks[x].valuecount):
if Settings.Tasks[x].valuenames[u] == dnames[v2]:
ttaskname = Settings.Tasks[x].gettaskname().strip()
break
if ttaskname != "":
break
except:
pass
if ttaskname=="" and v1>-1:
ttaskname = dnames[v1]
if self.useJSON and ttaskname != "":
try:
pvalues = [-1,-1,-1,-1]
for x in range(len(Settings.Tasks)):
if Settings.Tasks[x] and type(Settings.Tasks[x]) is not bool:
if Settings.Tasks[x].gettaskname() == ttaskname:
for u in range(Settings.Tasks[x].valuecount):
valnam = Settings.Tasks[x].valuenames[u]
if valnam in mlist:
pvalues[u] = mlist[valnam]
break
except:
pass
self.onmsgcallbackfunc(self.controllerindex,-1,pvalues,taskname=ttaskname,valuename="") #-> Settings.callback_from_controllers()
success = True
return success
if ttaskname != "" and v2>-1 and v2<len(dnames):
self.onmsgcallbackfunc(self.controllerindex,-1,msg2,taskname=ttaskname,valuename=dnames[v2]) #-> Settings.callback_from_controllers()
success = True
def senddata(self,idx,sensortype,value,userssi=-1,usebattery=-1,tasknum=-1,changedvalue=-1):
if self.enabled:
if tasknum is None:
return False
success = False
if self.isconnected(False):
if self.useJSON:
changedvalue = 1 # force only one msg sending
if tasknum!=-1:
tname = Settings.Tasks[tasknum].gettaskname()
if changedvalue==-1:
for u in range(Settings.Tasks[tasknum].valuecount):
vname = Settings.Tasks[tasknum].valuenames[u]
if vname != "":
if ('%t' in self.inch) or ('%v' in self.inch):
gtopic = self.inch.replace('#/','')
gtopic = gtopic.replace('#','')
gtopic = gtopic.replace('%tskname%',tname)
gtopic = gtopic.replace('%tskid%',str(tasknum+1))
gtopic = gtopic.replace('%valname%',vname)
else:
gtopic = self.inch.replace('#',tname+"/"+vname)
gval = str(value[u])
if gval == "":
gval = "0"
mres = 1
try:
(mres,mid) = self.mqttclient.publish(gtopic,gval,retain=self.globalretain)
# print(gtopic) # DEBUG
except:
mres = 1
if mres!=0:
self.isconnected()
break
else:
vname = Settings.Tasks[tasknum].valuenames[changedvalue-1]
if ('%t' in self.inch) or ('%v' in self.inch):
gtopic = self.inch.replace('#/','')
gtopic = gtopic.replace('#','')
gtopic = gtopic.replace('%tskname%',tname)
gtopic = gtopic.replace('%tskid%',str(tasknum+1))
gtopic = gtopic.replace('%valname%',vname)
else:
if self.useJSON:
gtopic = self.inch.replace('#',tname) # use only taskname for json reporting
else:
gtopic = self.inch.replace('#',tname+"/"+vname)
if vname != "":
gval = str(value[changedvalue-1])
if gval == "":
gval = "0"
if self.useJSON: # modify payload
gval = '{"taskname":"'+ Settings.Tasks[tasknum].taskname +'",'
for u in range(Settings.Tasks[tasknum].valuecount):
gval += '"'+ Settings.Tasks[tasknum].valuenames[u] + '":'
val = value[u]
if str(val).replace(".","").isnumeric():
gval += str(val)
else:
gval += '"'+ str(val) +'"'
gval += ","
try:
usebattery = float(str(usebattery).strip())
except Exception as e:
usebattery = -1
bval = -1
if usebattery != -1 and usebattery != 255:
bval = usebattery
else:
bval = misc.get_battery_value()
if bval != -1 and bval != 255:
gval += '"battery":'+ str(bval)+ ','
if userssi != -1:
gval += '"rssi":'+ str(userssi)+ ','
ps = str(Settings.Tasks[tasknum].ports)
if ps != "0" and ps != "":
gval += '"port":"'+ str(ps)+ '",'
gval = gval[:-1]+"}"
mres = 1
try:
(mres,mid) = self.mqttclient.publish(gtopic,gval,retain=self.globalretain)
# print(gtopic,gval) # DEBUG
except:
mres = 1
if mres!=0:
self.isconnected()
else:
misc.addLog(rpieGlobals.LOG_LEVEL_ERROR,"MQTT taskname error, sending failed.")
else:
misc.addLog(rpieGlobals.LOG_LEVEL_ERROR,"MQTT not connected, sending failed.")
if (time.time()-self.lastreconnect)>30:
self.connect()
def on_connect(self):
if self.enabled and self.initialized:
self.isconnected()
else:
self.disconnect()
def on_disconnect(self):
if self.initialized:
self.isconnected()
class GMQTTClient(mqtt.Client):
subscribechannel = ""
controllercb = None
disconnectcb = None
connectcb = None
def on_connect(self, client, userdata, flags, rc):
try:
self.subscribe(self.subscribechannel,0)
if self.connectcb is not None:
self.connectcb()
except Exception as e:
misc.addLog(rpieGlobals.LOG_LEVEL_ERROR,"MQTT connection error: "+str(e))
try:
rc = int(rc)
except:
rc=-1
if rc !=0:
estr = str(rc)
if rc==1:
estr += " Protocol version error!"
if rc==3:
estr += " Server unavailable!"
if rc==4:
estr += " User/pass error!"
if rc==5:
estr += " Not authorized!"
misc.addLog(rpieGlobals.LOG_LEVEL_ERROR,"MQTT connection error: "+estr)
def on_disconnect(self, client, userdata, rc):
if self.disconnectcb is not None:
self.disconnectcb()
def on_message(self, mqttc, obj, msg):
if self.controllercb is not None:
self.controllercb(msg)