From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH 1/2] Improve indentation and HTML output of PrintActualLeases & leasesort Date: Thu, 29 Oct 2020 12:26:43 +0000 Message-ID: <2935F4AF-C91C-43C5-9D18-2E3245D624B9@ipfire.org> In-Reply-To: <29cdc9c5-3517-fce9-15d5-0b8119289c60@leo-andres.de> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1859517810399878937==" List-Id: --===============1859517810399878937== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hello, > On 26 Oct 2020, at 09:52, Leo Hofmann wrote: >=20 > Hi Michael, > thank you for reviewing & merging my patch! >=20 > I agree, this was an interesting read. I think the web interface code could= be improved. Feel free to point me to other issues, maybe I can contribute m= ore. I saw that Daniel did already reach out to you. Great. There are loads of iss= ues that we need help on. Welcome to the team. Best, -Michael >=20 > Best regards, > Leo >=20 > Am 23.10.2020 um 12:07 schrieb Michael Tremer: >> Hey Leo-Andres, >>=20 >> Thank you for splitting the patch. This was easier to review. >>=20 >> It is still interesting code and it is very interesting too that all the D= HCP stuff is in header.pl. >>=20 >> But that is outside the scope of this patch. >>=20 >> I will merge it. Thank you! >>=20 >> Best, >> -Michael >>=20 >>> On 21 Oct 2020, at 11:48, Leo-Andres Hofmann wr= ote: >>>=20 >>> Signed-off-by: Leo-Andres Hofmann >>> --- >>> config/cfgroot/header.pl | 159 +++++++++++++++++++-------------------- >>> 1 file changed, 79 insertions(+), 80 deletions(-) >>>=20 >>> diff --git a/config/cfgroot/header.pl b/config/cfgroot/header.pl >>> index 1046f5992..6322cfebe 100644 >>> --- a/config/cfgroot/header.pl >>> +++ b/config/cfgroot/header.pl >>> @@ -403,66 +403,65 @@ sub PrintActualLeases >>> = $tr{'mac address'} >>> $tr{'hostname'} >>> $tr{'lease expires'} (local time d/m/y) >>> -Add to fix leases >>> +Add to fix leases >>> >>> END >>> ; >>>=20 >>> open(LEASES,"/var/state/dhcp/dhcpd.leases") or die "Can't open dhcpd.= leases"; >>> - while ($line =3D ) { >>> - next if( $line =3D~ /^\s*#/ ); >>> - chomp($line); >>> - @temp =3D split (' ', $line); >>> - >>> - if ($line =3D~ /^\s*lease/) { >>> - $ip =3D $temp[1]; >>> - #All field are not necessarily read. Clear everything >>> - $endtime =3D 0; >>> - $ether =3D ""; >>> - $hostname =3D ""; >>> - } >>> + while (my $line =3D ) { >>> + next if( $line =3D~ /^\s*#/ ); >>> + chomp($line); >>> + @temp =3D split (' ', $line); >>> + >>> + if ($line =3D~ /^\s*lease/) { >>> + $ip =3D $temp[1]; >>> + #All field are not necessarily read. Clear everything >>> + $endtime =3D 0; >>> + $ether =3D ""; >>> + $hostname =3D ""; >>> + } >>>=20 >>> - if ($line =3D~ /^\s*ends/) { >>> - $line =3D~ /(\d+)\/(\d+)\/(\d+) (\d+):(\d+):(\d+)/; >>> - $endtime =3D timegm($6, $5, $4, $3, $2 - 1, $1 - 1900); >>> - } >>> + if ($line =3D~ /^\s*ends/) { >>> + $line =3D~ /(\d+)\/(\d+)\/(\d+) (\d+):(\d+):(\d+)/; >>> + $endtime =3D timegm($6, $5, $4, $3, $2 - 1, $1 - 1900); >>> + } >>>=20 >>> - if ($line =3D~ /^\s*hardware ethernet/) { >>> - $ether =3D $temp[2]; >>> - $ether =3D~ s/;//g; >>> - } >>> + if ($line =3D~ /^\s*hardware ethernet/) { >>> + $ether =3D $temp[2]; >>> + $ether =3D~ s/;//g; >>> + } >>>=20 >>> - if ($line =3D~ /^\s*client-hostname/) { >>> - $hostname =3D "$temp[1] $temp[2] $temp[3]"; >>> - $hostname =3D~ s/;//g; >>> - $hostname =3D~ s/\"//g; >>> - } >>> + if ($line =3D~ /^\s*client-hostname/) { >>> + $hostname =3D "$temp[1] $temp[2] $temp[3]"; >>> + $hostname =3D~ s/;//g; >>> + $hostname =3D~ s/\"//g; >>> + } >>>=20 >>> - if ($line eq "}") { >>> - @record =3D ('IPADDR',$ip,'ENDTIME',$endtime,'ETHER',$ether,'HOSTNA= ME',$hostname); >>> - $record =3D {}; # create a reference t= o empty hash >>> - %{$record} =3D @record; # populate that hash with = @record >>> - $entries{$record->{'IPADDR'}} =3D $record; # add this to a hash = of hashes >>> - } >>> + if ($line eq "}") { >>> + @record =3D ('IPADDR',$ip,'ENDTIME',$endtime,'ETHER',$ether,'HOSTNAME= ',$hostname); >>> + $record =3D {}; # create a reference to empty hash >>> + %{$record} =3D @record; # populate that hash with @record >>> + $entries{$record->{'IPADDR'}} =3D $record; # add this to a hash of ha= shes >>> + } >>> } >>> close(LEASES); >>>=20 >>> my $id =3D 0; >>> - my $col=3D""; >>> + my $col =3D ""; >>> foreach my $key (sort leasesort keys %entries) { >>> - print "
\n"; >>> - my $hostname =3D &cleanhtml($entries{$key}->{HOSTNAME},"y"); >>> + print "\n"; >>> + my $hostname =3D &cleanhtml($entries{$key}->{HOSTNAME},"y"); >>>=20 >>> - if ($id % 2) { >>> - print ""; >>> - $col=3D"bgcolor=3D'$table1colour'"; >>> - } >>> - else { >>> - print ""; >>> - $col=3D"bgcolor=3D'$table2colour'"; >>> - } >>> + if ($id % 2) { >>> + print ""; >>> + $col=3D"bgcolor=3D'$table1colour'"; >>> + } else { >>> + print ""; >>> + $col=3D"bgcolor=3D'$table2colour'"; >>> + } >>>=20 >>> - print <>> + print <>> {IPADDR}' />$entries{$key}->{IPADDR} >>> {ETHER}' />$entries{$key}->{ETHER} >>>  $hostname >>> @@ -470,20 +469,20 @@ END >>> END >>> ; >>>=20 >>> - ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $dst) =3D localti= me ($entries{$key}->{ENDTIME}); >>> - $enddate =3D sprintf ("%02d/%02d/%d %02d:%02d:%02d",$mday,$mon+1,$year+= 1900,$hour,$min,$sec); >>> + ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $dst) =3D localt= ime ($entries{$key}->{ENDTIME}); >>> + $enddate =3D sprintf ("%02d/%02d/%d %02d:%02d:%02d",$mday,$mon+1,$year= +1900,$hour,$min,$sec); >>>=20 >>> - if ($entries{$key}->{ENDTIME} < time() ){ >>> - print "$enddate"; >>> - } else { >>> - print "$enddate"; >>> - } >>> - print <>> + if ($entries{$key}->{ENDTIME} < time() ){ >>> + print "$enddate"; >>> + } else { >>> + print "$enddate"; >>> + } >>> + print <>> >>> >>> END >>> ; >>> - $id++; >>> + $id++; >>> } >>>=20 >>> print ""; >>> @@ -493,34 +492,34 @@ END >>>=20 >>> # This sub is used during display of actives leases >>> sub leasesort { >>> - if (rindex ($dhcpsettings{'SORT_LEASELIST'},'Rev') !=3D -1) >>> - { >>> - $qs=3Dsubstr ($dhcpsettings{'SORT_LEASELIST'},0,length($dhcpsett= ings{'SORT_LEASELIST'})-3); >>> - if ($qs eq 'IPADDR') { >>> - @a =3D split(/\./,$entries{$a}->{$qs}); >>> - @b =3D split(/\./,$entries{$b}->{$qs}); >>> - ($b[0]<=3D>$a[0]) || >>> - ($b[1]<=3D>$a[1]) || >>> - ($b[2]<=3D>$a[2]) || >>> - ($b[3]<=3D>$a[3]); >>> - }else { >>> - $entries{$b}->{$qs} cmp $entries{$a}->{$qs}; >>> - } >>> - } >>> - else #not reverse >>> - { >>> - $qs=3D$dhcpsettings{'SORT_LEASELIST'}; >>> - if ($qs eq 'IPADDR') { >>> - @a =3D split(/\./,$entries{$a}->{$qs}); >>> - @b =3D split(/\./,$entries{$b}->{$qs}); >>> - ($a[0]<=3D>$b[0]) || >>> - ($a[1]<=3D>$b[1]) || >>> - ($a[2]<=3D>$b[2]) || >>> - ($a[3]<=3D>$b[3]); >>> - }else { >>> - $entries{$a}->{$qs} cmp $entries{$b}->{$qs}; >>> + if (rindex ($dhcpsettings{'SORT_LEASELIST'},'Rev') !=3D -1) >>> + { >>> + $qs=3Dsubstr ($dhcpsettings{'SORT_LEASELIST'},0,length($dhcpsettings{'= SORT_LEASELIST'})-3); >>> + if ($qs eq 'IPADDR') { >>> + @a =3D split(/\./,$entries{$a}->{$qs}); >>> + @b =3D split(/\./,$entries{$b}->{$qs}); >>> + ($b[0]<=3D>$a[0]) || >>> + ($b[1]<=3D>$a[1]) || >>> + ($b[2]<=3D>$a[2]) || >>> + ($b[3]<=3D>$a[3]); >>> + } else { >>> + $entries{$b}->{$qs} cmp $entries{$a}->{$qs}; >>> + } >>> + } >>> + else #not reverse >>> + { >>> + $qs=3D$dhcpsettings{'SORT_LEASELIST'}; >>> + if ($qs eq 'IPADDR') { >>> + @a =3D split(/\./,$entries{$a}->{$qs}); >>> + @b =3D split(/\./,$entries{$b}->{$qs}); >>> + ($a[0]<=3D>$b[0]) || >>> + ($a[1]<=3D>$b[1]) || >>> + ($a[2]<=3D>$b[2]) || >>> + ($a[3]<=3D>$b[3]); >>> + } else { >>> + $entries{$a}->{$qs} cmp $entries{$b}->{$qs}; >>> + } >>> } >>> - } >>> } >>>=20 >>> sub colorize { >>> --=20 >>> 2.27.0.windows.1 >>>=20 >>>=20 --===============1859517810399878937==--