forked from snaptec/openWB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hook.sh
executable file
·287 lines (278 loc) · 11.4 KB
/
hook.sh
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
#!/bin/bash
hook(){
if (( hook1_aktiv == "1" )); then
if (( hook1akt == 0 )); then
hook1einschaltverzcounter=$(</var/www/html/openWB/ramdisk/hook1einschaltverzcounter)
if (( uberschuss > hook1ein_watt )); then
if (( hook1einschaltverzcounter > hook1einschaltverz)); then
echo 0 > /var/www/html/openWB/ramdisk/hook1einschaltverzcounter
echo 0 > /var/www/html/openWB/ramdisk/hook1counter
if [ ! -e ramdisk/hook1aktiv ]; then
touch ramdisk/hook1aktiv
echo 1 > ramdisk/hook1akt
curl -s --connect-timeout 5 $hook1ein_url > ramdisk/hookmsg
echo "$date WebHook 1 aktiviert" >> ramdisk/ladestatus.log
cat ramdisk/hookmsg >> ramdisk/ladestatus.log
rm ramdisk/hookmsg
if [[ $debug == "1" ]]; then
echo "Gerät 1 aktiviert"
fi
if ((pushbsmarthome == "1")) && ((pushbenachrichtigung == "1")); then
./runs/pushover.sh "Gerät 1 eingeschaltet bei $uberschuss"
fi
fi
else
hook1einschaltverzcounter=$((hook1einschaltverzcounter +10))
echo $hook1einschaltverzcounter > /var/www/html/openWB/ramdisk/hook1einschaltverzcounter
fi
else
hook1einschaltverzcounter=0
fi
fi
if [ -e ramdisk/hook1aktiv ]; then
if test $(find "ramdisk/hook1aktiv" -mmin +$hook1_dauer); then
if (( uberschuss < hook1aus_watt )); then
hook1counter=$(</var/www/html/openWB/ramdisk/hook1counter)
if (( hook1counter < hook1_ausverz )); then
hook1counter=$((hook1counter + 10))
echo $hook1counter > /var/www/html/openWB/ramdisk/hook1counter
else
rm ramdisk/hook1aktiv
echo 0 > ramdisk/hook1akt
curl -s --connect-timeout 5 $hook1aus_url > ramdisk/hookmsg
echo "$date WebHook 1 deaktiviert" >> ramdisk/ladestatus.log
cat ramdisk/hookmsg >> ramdisk/ladestatus.log
rm ramdisk/hookmsg
if [[ $debug == "1" ]]; then
echo "Gerät 1 deaktiviert"
fi
if ((pushbsmarthome == "1")) && ((pushbenachrichtigung == "1")); then
./runs/pushover.sh "Gerät 1 ausgeschaltet bei $uberschuss"
fi
fi
fi
fi
fi
fi
if (( hook2_aktiv == "1" )); then
if (( hook2akt == 0 )); then
hook2einschaltverzcounter=$(</var/www/html/openWB/ramdisk/hook2einschaltverzcounter)
if (( uberschuss > hook2ein_watt )); then
if (( hook2einschaltverzcounter > hook2einschaltverz)); then
echo 0 > /var/www/html/openWB/ramdisk/hook2einschaltverzcounter
echo 0 > /var/www/html/openWB/ramdisk/hook2counter
if [ ! -e ramdisk/hook2aktiv ]; then
touch ramdisk/hook2aktiv
echo 1 > ramdisk/hook2akt
curl -s --connect-timeout 5 $hook2ein_url > ramdisk/hook2msg
echo "$date WebHook 2 aktiviert" >> ramdisk/ladestatus.log
cat ramdisk/hook2msg >> ramdisk/ladestatus.log
rm ramdisk/hook2msg
if [[ $debug == "1" ]]; then
echo "Gerät 2 aktiviert"
fi
if ((pushbsmarthome == "1")) && ((pushbenachrichtigung == "1")); then
./runs/pushover.sh "Gerät 2 eingeschaltet bei $uberschuss"
fi
fi
else
hook2einschaltverzcounter=$((hook2einschaltverzcounter +10))
echo $hook2einschaltverzcounter > /var/www/html/openWB/ramdisk/hook2einschaltverzcounter
fi
else
hook2einschaltverzcounter=0
fi
fi
if [ -e ramdisk/hook2aktiv ]; then
if test $(find "ramdisk/hook2aktiv" -mmin +$hook2_dauer); then
if (( uberschuss < hook2aus_watt )); then
hook2counter=$(</var/www/html/openWB/ramdisk/hook2counter)
if (( hook2counter < hook2_ausverz )); then
hook2counter=$((hook2counter + 10))
echo $hook2counter > /var/www/html/openWB/ramdisk/hook2counter
else
rm ramdisk/hook2aktiv
echo 0 > ramdisk/hook2akt
curl -s --connect-timeout 5 $hook2aus_url > ramdisk/hook2msg
echo "$date WebHook 2 deaktiviert" >> ramdisk/ladestatus.log
cat ramdisk/hook2msg >> ramdisk/ladestatus.log
rm ramdisk/hook2msg
if [[ $debug == "1" ]]; then
echo "Gerät 2 deaktiviert"
fi
if ((pushbsmarthome == "1")) && ((pushbenachrichtigung == "1")); then
./runs/pushover.sh "Gerät 2 ausgeschaltet bei $uberschuss"
fi
fi
fi
fi
fi
fi
if (( hook3_aktiv == "1" )); then
if (( uberschuss > hook3ein_watt )); then
echo 0 > /var/www/html/openWB/ramdisk/hook3counter
if [ ! -e ramdisk/hook3aktiv ]; then
touch ramdisk/hook3aktiv
echo 1 > ramdisk/hook3akt
curl -s --connect-timeout 5 $hook3ein_url > /dev/null
echo "$date WebHook 3 aktiviert" >> ramdisk/ladestatus.log
if [[ $debug == "1" ]]; then
echo "Gerät 3 aktiviert"
fi
if ((pushbsmarthome == "1")) && ((pushbenachrichtigung == "1")); then
./runs/pushover.sh "Gerät 3 eingeschaltet bei $uberschuss"
fi
fi
fi
if [ -e ramdisk/hook3aktiv ]; then
if test $(find "ramdisk/hook3aktiv" -mmin +$hook3_dauer); then
if (( uberschuss < hook3aus_watt )); then
hook3counter=$(</var/www/html/openWB/ramdisk/hook3counter)
if (( hook3counter < hook3_ausverz )); then
hook3counter=$((hook3counter + 10))
echo $hook3counter > /var/www/html/openWB/ramdisk/hook3counter
else
rm ramdisk/hook3aktiv
echo 0 > ramdisk/hook3akt
curl -s --connect-timeout 5 $hook3aus_url > /dev/null
echo "$date WebHook 3 deaktiviert" >> ramdisk/ladestatus.log
if [[ $debug == "1" ]]; then
echo "Gerät 3 deaktiviert"
fi
if ((pushbsmarthome == "1")) && ((pushbenachrichtigung == "1")); then
./runs/pushover.sh "Gerät 3 ausgeschaltet bei $uberschuss"
fi
fi
fi
fi
fi
fi
if (( verbraucher1_aktiv == "1")); then
echo "1" > /var/www/html/openWB/ramdisk/verbraucher1vorhanden
if [[ $verbraucher1_typ == "http" ]]; then
verbraucher1_watt=$(curl --connect-timeout 3 -s $verbraucher1_urlw )
if ! [[ "$verbraucher1_watt" =~ '^[+-]?[0-9]+([.][0-9]+)?$' ]]; then
echo $verbraucher1_watt > /var/www/html/openWB/ramdisk/verbraucher1_watt
fi
verbraucher1_wh=$(curl --connect-timeout 3 -s $verbraucher1_urlh &)
if ! [[ "$verbraucher1_wh" =~ '^[+-]?[0-9]+([.][0-9]+)?$' ]]; then
echo $verbraucher1_wh > /var/www/html/openWB/ramdisk/verbraucher1_wh
fi
fi
if [[ $verbraucher1_typ == "mpm3pm" ]]; then
if [[ $verbraucher1_source == *"dev"* ]]; then
sudo python modules/verbraucher/mpm3pmlocal.py 1 $verbraucher1_source $verbraucher1_id &
else
sudo python modules/verbraucher/mpm3pmremote.py 1 $verbraucher1_source $verbraucher1_id &
fi
fi
if [[ $verbraucher1_typ == "sdm630" ]]; then
if [[ $verbraucher1_source == *"dev"* ]]; then
sudo python modules/verbraucher/sdm630local.py 1 $verbraucher1_source $verbraucher1_id &
verbraucher1_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher1_watt)
else
sudo python modules/verbraucher/sdm630remote.py 1 $verbraucher1_source $verbraucher1_id &
verbraucher1_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher1_watt)
fi
fi
if [[ $verbraucher1_typ == "sdm120" ]]; then
if [[ $verbraucher1_source == *"dev"* ]]; then
sudo python modules/verbraucher/sdm120local.py 1 $verbraucher1_source $verbraucher1_id &
verbraucher1_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher1_watt)
else
sudo python modules/verbraucher/sdm120remote.py 1 $verbraucher1_source $verbraucher1_id &
verbraucher1_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher1_watt)
fi
fi
if [[ $verbraucher1_typ == "abb-b23" ]]; then
python modules/verbraucher/abb-b23remote.py 1 $verbraucher1_source $verbraucher1_id &
verbraucher1_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher1_watt)
sleep .3
fi
if [[ $verbraucher1_typ == "tasmota" ]]; then
verbraucher1_out=$(curl --connect-timeout 3 -s $verbraucher1_ip/cm?cmnd=Status%208 )
verbraucher1_watt=$(echo $verbraucher1_out | jq '.StatusSNS.ENERGY.Power')
echo $verbraucher1_watt > /var/www/html/openWB/ramdisk/verbraucher1_watt
verbraucher1_wh=$(echo $verbraucher1_out | jq '.StatusSNS.ENERGY.Total')
verbraucher1_totalwh=$(echo "scale=0;(($verbraucher1_wh * 1000) + $verbraucher1_tempwh) / 1" | bc)
echo $verbraucher1_totalwh > /var/www/html/openWB/ramdisk/verbraucher1_wh
fi
if [[ $verbraucher1_typ == "shelly" ]]; then
verbraucher1_out=$(curl --connect-timeout 3 -s $verbraucher1_ip/status )
verbraucher1_watt=$(echo $verbraucher1_out |jq '.meters[0].power' | sed 's/\..*$//')
echo $verbraucher1_watt > /var/www/html/openWB/ramdisk/verbraucher1_watt
fi
else
verbraucher1_watt=0
fi
if (( verbraucher2_aktiv == "1")); then
echo "1" > /var/www/html/openWB/ramdisk/verbraucher2vorhanden
if [[ $verbraucher2_typ == "http" ]]; then
verbraucher2_watt=$(curl --connect-timeout 3 -s $verbraucher2_urlw )
if ! [[ "$verbraucher2_watt" =~ "^[+-]?[0-9]+([.][0-9]+)?$" ]]; then
echo $verbraucher2_watt > /var/www/html/openWB/ramdisk/verbraucher2_watt
fi
verbraucher2_wh=$(curl --connect-timeout 3 -s $verbraucher2_urlh &)
if ! [[ "$verbraucher2_wh" =~ "^[+-]?[0-9]+([.][0-9]+)?$" ]]; then
echo $verbraucher2_wh > /var/www/html/openWB/ramdisk/verbraucher2_wh
fi
fi
if [[ $verbraucher2_typ == "mpm3pm" ]]; then
if [[ $verbraucher2_source == *"dev"* ]]; then
sudo python modules/verbraucher/mpm3pmlocal.py 2 $verbraucher2_source $verbraucher2_id &
else
sudo python modules/verbraucher/mpm3pmremote.py 2 $verbraucher2_source $verbraucher2_id &
fi
fi
if [[ $verbraucher2_typ == "sdm630" ]]; then
if [[ $verbraucher2_source == *"dev"* ]]; then
sudo python modules/verbraucher/sdm630local.py 2 $verbraucher2_source $verbraucher2_id &
verbraucher2_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher2_watt)
else
sudo python modules/verbraucher/sdm630remote.py 2 $verbraucher2_source $verbraucher2_id &
verbraucher2_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher2_watt)
fi
fi
if [[ $verbraucher2_typ == "sdm120" ]]; then
if [[ $verbraucher2_source == *"dev"* ]]; then
sudo python modules/verbraucher/sdm120local.py 2 $verbraucher2_source $verbraucher2_id &
verbraucher2_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher2_watt)
else
sudo python modules/verbraucher/sdm120remote.py 2 $verbraucher2_source $verbraucher2_id &
verbraucher2_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher2_watt)
fi
fi
if [[ $verbraucher2_typ == "abb-b23" ]]; then
python modules/verbraucher/abb-b23remote.py 2 $verbraucher2_source $verbraucher2_id &
verbraucher2_watt=$(cat /var/www/html/openWB/ramdisk/verbraucher2_watt)
sleep .3
fi
if [[ $verbraucher2_typ == "tasmota" ]]; then
verbraucher2_out=$(curl --connect-timeout 3 -s $verbraucher2_ip/cm?cmnd=Status%208 )
verbraucher2_watt=$(echo $verbraucher2_out | jq '.StatusSNS.ENERGY.Power')
echo $verbraucher2_watt > /var/www/html/openWB/ramdisk/verbraucher2_watt
verbraucher2_wh=$(echo $verbraucher2_out | jq '.StatusSNS.ENERGY.Total')
verbraucher2_totalwh=$(echo "scale=0;(($verbraucher2_wh * 1000) + $verbraucher2_tempwh) / 1" | bc)
echo $verbraucher2_totalwh > /var/www/html/openWB/ramdisk/verbraucher2_wh
fi
else
verbraucher2_watt=0
fi
if (( angesteckthooklp1 == 1 )); then
plugstat=$(<ramdisk/plugstat)
if (( plugstat == 1 )); then
if [ ! -e ramdisk/angesteckthooklp1aktiv ]; then
touch ramdisk/angesteckthooklp1aktiv
curl -s --connect-timeout 5 $angesteckthooklp1_url > /dev/null
echo "$date angesteckt Hook LP1 ausgeführt" >> ramdisk/ladestatus.log
if [[ $debug == "1" ]]; then
echo "$date angesteckt Hook LP1 ausgeführt"
fi
fi
else
if [ -e ramdisk/angesteckthooklp1aktiv ]; then
rm ramdisk/angesteckthooklp1aktiv
fi
fi
fi
}