-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathA01XTool.be
More file actions
220 lines (175 loc) · 5.67 KB
/
A01XTool.be
File metadata and controls
220 lines (175 loc) · 5.67 KB
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
#-----------------------------------
The static class implements common functions
------------------------------------#
#@ solidify:xtool
var xtool = module('xtool')
class XTool
static BerryStyle='<style>table.berry {max-width:100%;table-layout: fixed;}table, th,td { border: 1px solid #f4f5f0; text-align: center; border-collapse: collapse;} </style>'
var lastJsonResult
var lastIsBoolResult
var lastIsNumberResult
var lastLogProc
var infoEnable
var lastLogInfo
var lastWarnInfo
var rebootWeeklyActivated
def init()
self.infoEnable=false
self.rebootWeeklyActivated=false
end
def info(proc,info)
self.lastLogProc = proc
self.lastLogInfo = info
if self.infoEnable print("INFO xtool."..proc.." - "..info) end
end
def warn(proc,info)
self.lastLogProc = proc
self.lastWarnInfo = info
print("WARN xtool."..proc.." - "..info)
end
#-
function checks whether value can be converted into a valid json
return true, if value is a valid json, false otherwise
-#
def isJson(value)
import json
self.lastJsonResult = json.load(value)
if classname(self.lastJsonResult)=='map'
return true
else
return false
end
end
#-
function checks whether value can be converted to a bool value
returns true, if value is convertible to a bool, false otherwise
-#
def isBool(value)
import json
import string
self.lastIsBoolResult=nil
if value==nil return false end
var ss = string.format('{"value": %s}',string.tolower(str(value)))
var data = json.load(ss)
if data==nil return false end
var xval = data["value"]
if type(xval) == 'bool'
self.lastIsBoolResult =xval
return true
else
return false
end
end
#-
function checks whether value can be converted to a number value
return true, if value is convertible to a number, false otherwise
-#
def isNumber(value)
import json
self.lastIsNumberResult = json.load(str(value))
var xtype = type(self.lastIsNumberResult)
var result = xtype == "int" || xtype == "real"
return result
end
#-
function checks whether property defined in 'propName' exists in 'obj'
returns obj, if property was found, nil otherwise
-#
def mapCheckProp(obj,propName)
if classname(obj) != "map"
self.warn("mapCheckProp","no map")
return nil
end
if !obj.contains(propName)
return nil
end
return obj
end
#-
function tries to extract the value of key 'propname' from the map 'obj' as bool.
returns property-value as bool, nil otherwise
-#
def mapGetBoolean(obj,propName)
if self.mapCheckProp(obj,propName) == nil
return nil
end
if type(obj[propName]) != "bool"
self.warn("mapGetBoolean","wrong type")
return nil
end
return obj[propName]
end
#-
function tries to extract the the value of key 'propname' from the map 'obj' as number.
returns property-value as number, nil otherwise
-#
def mapGetNumber(obj,propName)
if self.mapCheckProp(obj,propName) == nil
return nil
end
var xvalue = obj[propName]
if !self.isNumber(xvalue)
self.warn("mapGetNumber","wrong type")
return nil
end
return self.lastIsNumberResult
end
#-
function tries to extract the the value of key 'propname' from the map 'obj' as string.
returns property-value as string, nil otherwise
-#
def mapGetString(obj,propName)
if self.mapCheckProp(obj,propName) == nil
return nil
end
var xtype = type(obj[propName])
if xtype != "string"
self.warn("mapGetString","wrong type")
return nil
end
return obj[propName]
end
# calculates the dewpoint
def calcDewpoint(temp,hum)
import math
var rf1 = 0.01 * hum
var k1 = 0.124688
var k2 = 109.8
var s = math.pow(rf1,k1)
var result = (s * (k2 + temp)) - k2
return result
end
# reboots at Sa at 09:00
def rebootWeekly()
var cproc="rebootWeekly"
self.info(cproc,"will reboot weekly")
# seconds minute hour day month Weekday
# 0-59 0-59 0-23 1-30 1-12 0 (So)-6(Sa)
tasmota.remove_cron('weeklyRestart')
tasmota.add_cron("0 0 9 * * 6",
def()
tasmota.cmd("restart 1")
end
,'weeklyRestart')
self.rebootWeeklyActivated=true
end
# function callback for tasmota driver mimic
# installs in the static part of the main page the javaScript 'dola'
def web_add_main_button()
import webserver
var cproc="web_add_main_button"
self.info(cproc,"run")
# javascript enhancement using function 'dola'
var html='<script> function dola(t){let e=""==t.value?"1":t.value,l;la("&"+t.getAttribute("id")+"="+e)} </script>'
webserver.content_send(html)
end
end
xtool.XTool = XTool
xtool.init = def (m)
import global
global.xtool = m
# return a single instance for this class
return xtool.XTool()
end
# return the module as the output of import, which is eventually replaced by the return value of 'init()'
return xtool