-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalarm.pl
executable file
·561 lines (445 loc) · 13.9 KB
/
alarm.pl
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
#!/usr/bin/perl -w
use CGI::Carp qw( fatalsToBrowser );
#
#
use strict;
my @prefdok=();
my (@dok)=();
my ($size)=0;
my ($prefsize)=0;
my @DatenzeilenArray=();
my $Datenwert = 0;
my $Datumstring=0;
my $lastDatumstring=0;
my @zeit=0;
my $jahr=0;
my $monat=0;
my $tag =0;
my $stunde=0;
my $min =0;
my $sec =0;
my $tagsekunde=0;
my $laufzeit=0;
my $anzStatusZeilen=0;
my %cgivars=();
my @Statistik=0;
my @prefzeit=0;
my $anzPrefsZeilen;
my $h0=0;
my $h1=0;
my $h2=0;
my $h3=0;
my $h4=0;
my $h5=0;
my $h6=0;
my $h7=0;
my $h8=0;
my $h9=0;
my $h10=0;
my $Alarmstatus=0;
my $Resetstatus=1;
my @alarmdatei=0;
my $anzAlarmdateiZeilen=0;
open ALARMDATEI, "<../public_html/Data/HomeAlarmDaten.txt" || die "HOMEALARMDATEI nicht gefunden\n";
@alarmdatei = <ALARMDATEI>;
chomp(@alarmdatei);
$anzAlarmdateiZeilen=@alarmdatei;
# First, get the CGI variables into a list of strings
%cgivars= &getcgivars ;
# Print the CGI response header, required for all HTML output ****WICHTIG****
# Note the extra \n, to send the blank line
print "Content-type: text/html\n\n" ;
# cgivars in Textfile sichern
@zeit=localtime();
$jahr=$zeit[5]-100;
if (length($jahr) == 1)
{
$jahr="0$jahr";
}
$monat = $zeit[4]+1;
if (length($monat) == 1)
{
$monat="0$monat";
}
$tag= $zeit[3];
if(length($tag) == 1)
{
$tag="0$tag";
}
$stunde = $zeit[2];
if(length($stunde) == 1)
{
$stunde="0$stunde";
}
$min = $zeit[1];
if(length($min) == 1)
{
$min="0$min";
}
$sec = $zeit[0];
if(length($sec) == 1)
{
$sec="0$sec";
}
$tagsekunde = ((($zeit[2] * 60) + $zeit[1]) * 60) + $zeit[0];
$Datumstring = "Datum: $tag.$monat.$jahr $stunde:$min";
open LOGFILE, ">>../public_html/Data/AlarmLog.txt" || die "AlarmLogfile A nicht gefunden\n";
print LOGFILE "* Alarm $Datumstring\t";
close(LOGFILE);
#
printf ("Alarm Datumstring: $Datumstring<br>");
my $jahrlong= $jahr + 2000;
#printf "$jahrlong<br>";
my $newTag = "$tag";
my $writeTask=0; # Aufforderung, AlarmDaten neu zu schreiben
my @alarmdatei=0;
my $anzAlarmdateiZeilen=0;
open ALARMDATEI, "<../public_html/Data/AlarmDaten.txt" || die "HOMEDATEI nicht gefunden\n";
@alarmdatei = <ALARMDATEI>;
chomp(@alarmdatei);
$anzAlarmdateiZeilen=@alarmdatei;
printf "Die Datei AlarmDaten.txt hat $anzAlarmdateiZeilen Zeilen.<br>$alarmdatei[0]<br>";
# open LOGFILE, ">>../public_html/Data/AlarmLog.txt" || die "Logfile nicht gefunden H\n";
# print LOGFILE "Die Datei AlarmDaten.txt hat $anzAlarmdateiZeilen Zeilen: \n";
# close(LOGFILE);
# open ALARMDATEI, ">>../public_html/Data/AlarmDaten.txt" || die "ALARMDATEI nicht gefunden\n";
#if ($size <= 10)
# File ist noch leer, Titel schreiben
if ($anzAlarmdateiZeilen==0)
{
open LOGFILE, ">>../public_html/Data/AlarmLog.txt" || die "Logfile nicht gefunden H\n";
print LOGFILE "anzAlarmdateiZeilen ist NULL\n";
close(LOGFILE);
printf "anzHomedateiZeilen ist NULL\n";
$alarmdatei[0] = "HomeCentral";
$jahr +=2000;
$alarmdatei[1] = "Startzeit: $jahr-$monat-$tag $stunde:$min:$sec";
$alarmdatei[2] = "$Datumstring";
$alarmdatei[3] = "Status: $Alarmstatus"; # Zeile 3
$alarmdatei[4] = "Reset: $Resetstatus"; # Zeile 4
}
else
{
# open LOGFILE, ">>../public_html/Data/AlarmLog.txt" || die "Logfile nicht gefunden H\n";
# print LOGFILE "anzAlarmdateiZeilen ist nicht NULL, sondern $anzAlarmdateiZeilen\n";
# close(LOGFILE);
# Alarmstatus lesen
if ($anzAlarmdateiZeilen>=4) # Zeile Alarmstatus und Resetstatus vorhanden
{
open LOGFILE, ">>../public_html/Data/AlarmLog.txt" || die "Logfile nicht gefunden H\n";
# print LOGFILE "anzAlarmdateiZeilen ist OK\n";
$alarmdatei[2] = "$Datumstring";
my $Statuszeile = $alarmdatei[3];
my @Statuszeilearray= split(" ",$alarmdatei[3]); #
$anzStatusZeilen=@Statuszeilearray; # Anzahl Items in Statuszeile
#print LOGFILE "Statuszeilearray[1]: $Statuszeilearray[1]\n";
if ($anzStatusZeilen > 1)
{
$Alarmstatus = $Statuszeilearray[1]; # status an zweiter Stelle auf der Zeile
}
my $Resetzeile = $alarmdatei[4];
my @Resetzeilearray= split(" ",$alarmdatei[4]); #
my $anzResetZeilen=@Resetzeilearray; # Anzahl Items in Resetzeile
#print LOGFILE "alte Werte: Statuszeilearray[1]: $Statuszeilearray[1] Resetzeilearray[1]: $Resetzeilearray[1]\n";
if ($anzResetZeilen > 1)
{
$Resetstatus = $Resetzeilearray[1]; # reset an zweiter Stelle auf der Zeile
}
close(LOGFILE);
}
printf "Alarmstatus: $Alarmstatus <br>Resetstatus: $Resetstatus<br>";
# print ALARMDATEI "*$laufzeit*\t$cgivars{d2}\t$cgivars{d3}\t$cgivars{d4}\t$cgivars{d1}\t$cgivars{d0}\t0\n";
# Alarm.Byte lesen
$h0 = hex($cgivars{d0}); # Alarm von Tiefkuehltruhe und Wasser
$h1 = hex($cgivars{d1}); # twierrcount Lampe-code von EEPROM
#$h2 = hex($cgivars{d2}); # Echo Heizung // auskomm 7.4.11
$h2 = hex($cgivars{d2}); # 29 Lampe (syncfehler)
$h3 = hex($cgivars{d3}); # Brenner Stundencode
$h4 = hex($cgivars{d4}); # Heizung Stundencode von EEPROM
$h5 = hex($cgivars{d5}); # 26: EEPROM_Err
$h6 = hex($cgivars{d6}); # 25: Write_Err
$h7 = hex($cgivars{d7}); # 24: Read_Err
$h8 = hex($cgivars{d8}); # 23: Zeit.minute vom Master (DCF77)
$h9 = hex($cgivars{d9}); # Differenz errCounter von Webserver
$h10 = hex($cgivars{d10}); # SPI_Err
open LOGFILE, ">>../public_html/Data/AlarmLog.txt" || die "Logfile nicht gefunden J\n";
# print LOGFILE "$laufzeit\t$cgivars{d2}\t$cgivars{d3}\t$cgivars{d4}\t$cgivars{d1}\t$cgivars{d0}\t0\n";
print LOGFILE "Status: $Alarmstatus Reset: $Resetstatus\t";
#$h0 |= 0x04;
print LOGFILE "h0: $h0\t";
if ($h0 & 0x08) # Kuehltruhe ist hops
{
print LOGFILE "Kuehltruhe ist hops.\n";
printf "Kuehltruhe ist hops.<br>";
if ($Alarmstatus == 0) # Alarm geht erst los. Alarmstatus ist noch nicht gesetzt
{
$writeTask=1;
$Resetstatus = 0; # Erste Meldung von Alarm: Resetstatus zuruecksetzen
$Alarmstatus = 1; # Alarmstatus setzen
$alarmdatei[4] = "Reset: $Resetstatus"; # Zeile 4
$alarmdatei[3] = "Status: $Alarmstatus"; # Zeile 3
}
if ($Resetstatus == 0) # Reset ist noch nicht gesetzt
{
# Mail-Stuff
my $title='HomeCentralAlarm';
my $to='r.heimlicher@bluewin.ch';
my $from= 'ruediheimlicher@ruediheimlicher.ch';
my $subject='homecentralalarm';
my $pushto='ruediheimlicher@dopushmail.com';
my $mailzeile=0;
open MAILDATEI, "<../public_html/Data/alarm_mail.txt" || die "MAILDATEI nicht gefunden\n";
my @Maildatei = <MAILDATEI>;
chomp(@Maildatei);
my $anzMaildateiZeilen=@Maildatei;
if ($anzMaildateiZeilen>1)
{
$mailzeile = $Maildatei[0];
}
close MAILDATEI;
open(MAIL, "|/usr/sbin/sendmail -t");
## Mail Header
print MAIL "To: $to\n";
print MAIL "From: $from\n";
print MAIL "Subject: $subject\n\n";
## Mail Body
print MAIL "Etwas ist nicht mehr in Ordnung:\n $mailzeile";
close(MAIL);
# open(MAIL, "|/usr/sbin/sendmail -t");
#
# ## Mail Header
# print MAIL "To: $pushto\n";
# print MAIL "From: $from\n";
# print MAIL "Subject: $subject\n\n";
# ## Mail Body
# print MAIL "Etwas ist nicht mehr in Ordnung:\n $mailzeile";
#
# close(MAIL);
print "<html><head><title>$title</title>
</head>\n<body>\n\n";
## HTML content let use know we sent an email
print "<h1>$title</h1>\n";
print "<p>Eine Meldung wurde von $from an $to geschickt: $mailzeile <br>cgivars: $h0";
print "\n\n</body></html>";
} # Resetstatus == 0
}
else # Kuehltruhe ist OK
{
print LOGFILE "Kuehltruhe ist OK. ";
printf "Kuehltruhe ist OK.<br>";
if ($Alarmstatus == 1)
{
$writeTask=1;
$Alarmstatus = 0;
$alarmdatei[3] = "Status: $Alarmstatus"; # Zeile 3 zuruecksetzen
$Resetstatus = 1;
$alarmdatei[4] = "Reset: $Resetstatus"; # Zeile 4 setzen
}
}
if ($h0 & 0x10) # Wasser im Keller laeuft aus
{
print LOGFILE "Wasser im Keller.\n";
printf "Wasser im Keller laeuft aus.<br>";
if ($Alarmstatus == 0) # Alarm geht erst los. Alarmstatus ist noch nicht gesetzt
{
$writeTask=1;
$Resetstatus = 0; # Erste Meldung von Alarm: Resetstatus zuruecksetzen
$Alarmstatus = 1; # Alarmstatus setzen
$alarmdatei[4] = "Reset: $Resetstatus"; # Zeile 4
$alarmdatei[3] = "Status: $Alarmstatus"; # Zeile 3
}
if ($Resetstatus == 0) # Reset ist noch nicht gesetzt
{
# Mail-Stuff
my $title='HomeCentralAlarm';
my $to='r.heimlicher@bluewin.ch';
my $from= 'ruediheimlicher@ruediheimlicher.ch';
my $subject='homecentralalarm';
my $pushto='ruediheimlicher@dopushmail.com';
my $mailzeile=0;
open MAILDATEI, "<../public_html/Data/alarm_mail.txt" || die "MAILDATEI nicht gefunden\n";
my @Maildatei = <MAILDATEI>;
chomp(@Maildatei);
my $anzMaildateiZeilen=@Maildatei;
if ($anzMaildateiZeilen>1)
{
$mailzeile = $Maildatei[1];
}
close MAILDATEI;
open(MAIL, "|/usr/sbin/sendmail -t");
## Mail Header
print MAIL "To: $to\n";
print MAIL "From: $from\n";
print MAIL "Subject: $subject\n\n";
## Mail Body
print MAIL "Etwas ist nicht mehr in Ordnung:\n $mailzeile";
close(MAIL);
# open(MAIL, "|/usr/sbin/sendmail -t");
#
# ## Mail Header
# print MAIL "To: $pushto\n";
# print MAIL "From: $from\n";
# print MAIL "Subject: $subject\n\n";
# ## Mail Body
# print MAIL "Etwas ist nicht mehr in Ordnung:\n $mailzeile";
#
# close(MAIL);
print "<html><head><title>$title</title>
</head>\n<body>\n\n";
## HTML content let use know we sent an email
print "<h1>$title</h1>\n";
print "<p>Eine Meldung wurde von $from an $to geschickt: $mailzeile <br>cgivars: $h0";
print "\n\n</body></html>";
} # Resetstatus == 0
}
else # Keller ist OK
{
print LOGFILE "Keller ist OK.";
printf "Keller ist OK.<br>";
if ($Alarmstatus == 1)
{
$writeTask=1;
$Alarmstatus = 0;
$alarmdatei[3] = "Status: $Alarmstatus"; # Zeile 3 zuruecksetzen
$Resetstatus = 1;
$alarmdatei[4] = "Reset: $Resetstatus"; # Zeile 4 setzen
}
}
open TWIERRDATEI, ">>../public_html/Data/twierr.txt" || die "TWIERRFILE nicht gefunden\n";
print TWIERRDATEI "$Datumstring\ttwierr Byte d1: $h1\tLampe: $h2\n";
close TWIERRDATEI;
print LOGFILE "\n";
close(LOGFILE);
}
#if ($writeTask)
# AlarmDaten neu schreiben
{
open ALARMDATEI, ">../public_html/Data/AlarmDaten.txt" || die "Alarmdaten nicht gefunden\n";
foreach (@alarmdatei)
{
print ALARMDATEI "$_\n";
}
close(ALARMDATEI);
}
my $k=0;
my $v=0;
my $u=0;
my $lastErrcounter=0;
my @ErrLogDatei=0;
my $anzErrlogzeilen=0;
# ErrLog lesen, letzte Zeile lesen
open ERRLOGFILE, "<../public_html/Data/ErrLog.txt" || die "ErrLogfile nicht gefunden J\n";
@ErrLogDatei = <ERRLOGFILE>;
chomp(@ErrLogDatei);
$anzErrlogzeilen=@ErrLogDatei;
my @lastErrzeilearray= split("\t",$ErrLogDatei[$anzErrlogzeilen-1]); #
my $anzElemente = @lastErrzeilearray;
my @lastElementArray = split(" ",$lastErrzeilearray[$anzElemente-1]);
$lastErrcounter = $lastElementArray[1];
$u=keys %cgivars;
open ERRLOGFILE, ">>../public_html/Data/ErrLog.txt" || die "ErrLogfile nicht gefunden J\n";
#print ERRLOGFILE "start\n";
#print ERRLOGFILE "anz: $u\n";
#print ERRLOGFILE "end\n";
# print ERRLOGFILE "$Datumstring\tMinuten: $h6\tEcho Heizung: $h2\tHeizung Code: $h3\tMode Code: $h4\tRinne Code: $h5\n";
print ERRLOGFILE "$Datumstring ";
# print ERRLOGFILE "min:$h8 ";
my $diff=$h8-$min; # Differenz Systemzeit - DCF77-Zeit vom Master
#print ERRLOGFILE "DCF77_diff:$diff\t";
#print ERRLOGFILE "sync_err:$h2 \t";
if ($h7)
{
print ERRLOGFILE "read_err:$h7 ";
}
if ($h6)
{
print ERRLOGFILE "write_err:$h6 ";
}
# if ($h5)
{
print ERRLOGFILE "EE_err:$h5 ";
}
#if (!($h3 == $h2))
{
# print ERRLOGFILE "Heizung_code:$h4 ";
# print ERRLOGFILE "Brenner_code:$h3 ";
print ERRLOGFILE "Lampe_ON:$h2 ";
# print ERRLOGFILE "twierr:$h1 ";
# print ERRLOGFILE "B_echo:$h2 ";
# if ($h2 == $h3) #alles OK, Code an Heizung ist gleich wie Echo von Heizung
# {
# print ERRLOGFILE "TRUE ";
# }
# else
# {
# print ERRLOGFILE "FALSE ";
# }
# print ERRLOGFILE "H_rinne:$h1 ";
}
# print ERRLOGFILE "SPI_Err:$h10 ";
#print ERRLOGFILE "lastErrcounter: $lastErrcounter\t";
my $ErrDiff = $h9 - $lastErrcounter;
# print ERRLOGFILE "errCounter_Diff: $ErrDiff\t: $h9\n";
#print ERRLOGFILE ": $h9\n";
print ERRLOGFILE "\n";
close ERRLOGFILE;
exit ;
# Read all CGI vars into an associative array.
# If multiple input fields have the same name, they are concatenated into
# one array element and delimited with the \0 character (which fails if
# the input has any \0 characters, very unlikely but conceivably possible).
# Currently only supports Content-Type of application/x-www-form-urlencoded.
sub getcgivars {
my ($in, %in) ;
my ($name, $value) ;
# First, read entire string of CGI vars into $in
if ( ($ENV{'REQUEST_METHOD'} eq 'GET') ||
($ENV{'REQUEST_METHOD'} eq 'HEAD') ) {
$in= $ENV{'QUERY_STRING'} ;
}
elsif ($ENV{'REQUEST_METHOD'} eq 'POST')
{
if ($ENV{'CONTENT_TYPE'}=~ m#^application/x-www-form-urlencoded$#i)
{
length($ENV{'CONTENT_LENGTH'})
|| &HTMLdie("No Content-Length sent with the POST request.") ;
read(STDIN, $in, $ENV{'CONTENT_LENGTH'}) ;
}
else
{
&HTMLdie("Unsupported Content-Type: $ENV{'CONTENT_TYPE'}") ;
}
} else {
&HTMLdie("Script was called with unsupported REQUEST_METHOD.") ;
}
# Resolve and unencode name/value pairs into %in
foreach (split(/[&;]/, $in)) {
s/\+/ /g ;
($name, $value)= split('=', $_, 2) ;
$name=~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/ge ;
$value=~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/ge ;
$in{$name}.= "\0" if defined($in{$name}) ; # concatenate multiple vars
$in{$name}.= $value ;
}
return %in ;
}
# Die, outputting HTML error page
# If no $title, use a default title
sub HTMLdie
{
my ($msg,$title)= @_ ;
$title= "CGI Error" if $title eq '' ;
print <<EOF ;
Content-type: text/html
<html>
<head>
<title>$title</title>
</head>
<body>
<h1>$title</h1>
<h3>$msg</h3>
</body>
</html>
EOF
exit ;
}