* [PATCH] BUG12245: captive portal - clients are not automatically removed
@ 2019-11-20 10:45 Alexander Marx
0 siblings, 0 replies; only message in thread
From: Alexander Marx @ 2019-11-20 10:45 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 1620 bytes --]
With this patch the clients are updated and those who are expired get deleted from the hash.
In addition the table of active clients is now sorted.
---
html/cgi-bin/captive.cgi | 23 +++++++++++++++++++++--
1 file changed, 21 insertions(+), 2 deletions(-)
diff --git a/html/cgi-bin/captive.cgi b/html/cgi-bin/captive.cgi
index b33287dd4..8204eb7b3 100755
--- a/html/cgi-bin/captive.cgi
+++ b/html/cgi-bin/captive.cgi
@@ -514,6 +514,25 @@ END
}
}
+sub cleanup_expired_coupons
+{
+ my $acttime=time();
+ &General::readhasharray($clients, \%clientshash) if (-e $clients);
+ foreach my $key (keys %clientshash) {
+
+ #calculate endtime from clientshash
+ my $endtime;
+ if ($clientshash{$key}[3] > '0'){
+ $endtime = $clientshash{$key}[2]+$clientshash{$key}[3];
+ if ($acttime > $endtime) {
+ delete $clientshash{$key};
+ }
+ }
+ }
+ #write back hash
+ &General::writehasharray("$clients", \%clientshash);
+}
+
sub show_coupons() {
&General::readhasharray($coupons, \%couponhash) if (-e $coupons);
@@ -601,9 +620,9 @@ sub show_clients() {
<th align='center' width='5%'>$Lang::tr{'delete'}</th>
</tr>
END
-
+ &cleanup_expired_coupons();
&General::readhasharray($clients, \%clientshash) if (-e $clients);
- foreach my $key (keys %clientshash) {
+ foreach my $key (sort {$clientshash{$a}[2] <=> $clientshash{$b}[2]} keys %clientshash) {
#calculate time from clientshash (starttime)
my $starttime = sub{sprintf '%02d.%02d.%04d %02d:%02d', $_[3], $_[4]+1, $_[5]+1900, $_[2], $_[1] }->(localtime($clientshash{$key}[2]));
--
2.17.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-11-20 10:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-20 10:45 [PATCH] BUG12245: captive portal - clients are not automatically removed Alexander Marx
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox