2021-12-30 12:05:56 +01:00
|
|
|
package Basework;
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# Copyright (c) Rainer Gümpelein, TeilRad GmbH
|
|
|
|
#
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use POSIX;
|
|
|
|
use CGI; # only for debugging
|
|
|
|
use Lib::Config;
|
|
|
|
|
|
|
|
use Data::Dumper;
|
|
|
|
use Sys::Hostname;
|
|
|
|
my $hostname = hostname;
|
|
|
|
my $cf = new Config;
|
|
|
|
my $q = new CGI;
|
|
|
|
|
|
|
|
sub new {
|
|
|
|
my $class = shift;
|
|
|
|
my $self = {};
|
|
|
|
bless($self,$class);
|
|
|
|
return $self;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $time = time;
|
|
|
|
my $now_dt = strftime "%Y-%m-%d %H:%M:%S", localtime;
|
|
|
|
my $now_date = strftime "%Y-%m-%d", localtime;
|
|
|
|
|
|
|
|
|
|
|
|
#logging
|
|
|
|
sub log {
|
|
|
|
my $self = shift;
|
|
|
|
my ($what,$message,$stdout) = @_;
|
|
|
|
#my ($package, $filename, $line) = caller;
|
|
|
|
my %varenv = $cf->envonline();
|
|
|
|
|
|
|
|
$now_dt = strftime "%Y-%m-%d %H:%M:%S", localtime;
|
|
|
|
my $logfile = "/var/log/copri4/$varenv{syshost}-process.log";
|
2022-11-28 18:28:06 +01:00
|
|
|
if($varenv{debug}){
|
2022-07-05 11:44:00 +02:00
|
|
|
warn "$$ $what" . "\n" . Dumper($message) . "\n";#to apache2/error.log
|
2021-12-30 12:05:56 +01:00
|
|
|
|
|
|
|
#2021-07-21 disabled. error.log is enough
|
|
|
|
if(1==2){
|
|
|
|
open(FILE,">> $logfile");
|
|
|
|
print FILE "\n--- $now_dt $0 ---\n";
|
|
|
|
print FILE "$what" . "\n" . Dumper($message) . "\n";
|
|
|
|
close FILE;
|
|
|
|
}
|
|
|
|
#also to stdout
|
|
|
|
if($stdout){
|
|
|
|
#print "\n--- $now_dt $0 ---\n";
|
2022-07-05 11:44:00 +02:00
|
|
|
print "$$ $what" . "\n" . Dumper($message) . "\n";
|
2021-12-30 12:05:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-06-02 10:34:03 +02:00
|
|
|
#return headline message
|
|
|
|
sub return_feedback(){
|
|
|
|
my $self = shift;
|
|
|
|
my $node_meta = shift;
|
|
|
|
my $users_dms = shift || {};
|
|
|
|
my $feedb = shift || {};
|
2023-01-17 20:43:36 +01:00
|
|
|
my $debug = "";
|
|
|
|
#$debug = $feedb->{debug};
|
2022-06-02 10:34:03 +02:00
|
|
|
|
2023-01-17 20:43:36 +01:00
|
|
|
if(ref($feedb) eq "HASH"){
|
2022-06-02 10:34:03 +02:00
|
|
|
print<<EOF
|
|
|
|
<script>
|
|
|
|
\$(document).ready(function(){
|
|
|
|
\$( "#retm" ).fadeOut(8000);
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
EOF
|
|
|
|
;
|
2023-01-25 07:25:12 +01:00
|
|
|
print $q->div({-id=>'retm'},"$feedb->{message} $debug"),"\n" if($feedb->{message} && $feedb->{message} =~ /[a-z]/ && $feedb->{message} !~ /failure::/);
|
2023-01-17 20:43:36 +01:00
|
|
|
print $q->div({-id=>'retm'},"$node_meta->{node_name} angelegt $debug"),"\n" if($feedb->{i_rows});
|
|
|
|
print $q->div({-id=>'retm'},"$node_meta->{node_name} aktualisiert $debug"),"\n" if($feedb->{u_rows});
|
|
|
|
print $q->div({-id=>'retm'},"$node_meta->{node_name} gelöscht $debug"),"\n" if($feedb->{d_rows});
|
2022-06-02 10:34:03 +02:00
|
|
|
}
|
|
|
|
|
2023-01-17 20:43:36 +01:00
|
|
|
return;
|
2022-06-02 10:34:03 +02:00
|
|
|
}
|
|
|
|
|
2022-07-21 20:06:25 +02:00
|
|
|
sub battery_bars {
|
|
|
|
my $self = shift;
|
|
|
|
my $max_bars = shift || 0;
|
|
|
|
my $current_percent = shift || 0;
|
|
|
|
|
|
|
|
my $current_bars = 0;
|
|
|
|
if($max_bars == 5){
|
|
|
|
$current_bars = 1 if($current_percent >= 10);
|
|
|
|
$current_bars = 2 if($current_percent >= 30);
|
|
|
|
$current_bars = 3 if($current_percent >= 50);
|
|
|
|
$current_bars = 4 if($current_percent >= 70);
|
|
|
|
$current_bars = 5 if($current_percent >= 90);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $current_bars;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub battery_percent {
|
|
|
|
my $self = shift;
|
|
|
|
my $max_bars = shift || 0;
|
|
|
|
my $current_bars = shift || 0;#by user input
|
|
|
|
|
2023-01-11 06:55:55 +01:00
|
|
|
my $current_percent = 0;
|
2022-07-21 20:06:25 +02:00
|
|
|
if($max_bars == 5){
|
|
|
|
$current_percent = 10 if($current_bars >= 1);
|
|
|
|
$current_percent = 30 if($current_bars >= 2);
|
|
|
|
$current_percent = 50 if($current_bars >= 3);
|
|
|
|
$current_percent = 70 if($current_bars >= 4);
|
|
|
|
$current_percent = 100 if($current_bars >= 5);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $current_percent;
|
|
|
|
}
|
2022-06-02 10:34:03 +02:00
|
|
|
|
2021-12-30 12:05:56 +01:00
|
|
|
|
|
|
|
1;
|