Skip to content
Snippets Groups Projects
Commit 3d0974f3 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Clean up old expired users in config manager

parent 06bcb112
No related branches found
No related tags found
No related merge requests found
...@@ -40,7 +40,14 @@ our (@ISA,@EXPORT,@EXPORT_OK); ...@@ -40,7 +40,14 @@ our (@ISA,@EXPORT,@EXPORT_OK);
use constant { use constant {
VERSION => '0.0.1', VERSION => '0.0.1',
# After how long does a user get removed if he's offline
TIMEOUT_EXPIRE_OFFLINE => 300, TIMEOUT_EXPIRE_OFFLINE => 300,
# After how long do we check users which have not been updated
TIMEOUT_EXPIRE_OLD => 7200,
# How often our config check ticks
TICK_PERIOD => 5, TICK_PERIOD => 5,
}; };
...@@ -172,7 +179,10 @@ sub session_tick { ...@@ -172,7 +179,10 @@ sub session_tick {
my $now = time(); my $now = time();
# Loop with changes #
# LOOP WITH CHANGES
#
foreach my $uid (keys %{$changeQueue}) { foreach my $uid (keys %{$changeQueue}) {
# Global user # Global user
my $guser = $users->{$uid}; my $guser = $users->{$uid};
...@@ -317,6 +327,28 @@ sub session_tick { ...@@ -317,6 +327,28 @@ sub session_tick {
} }
#
# CHECK OUT CONNECTED USERS
#
foreach my $uid (keys %{$changeQueue}) {
# Global user
my $guser = $users->{$uid};
# Check for expired users
if ($now - $guser->{'LastUpdate'} > TIMEOUT_EXPIRE_OLD) {
# Looks like this user has expired?
# TODO: Check stats to make sure they 0
my $cuser = {
'Username' => 'Username',
'Status' => 'offline',
'LastUpdate' => $guser->{'LastUpdate'},
};
# Add to change queue
$changeQueue->{$uid} = $cuser;
}
}
# Reset tick # Reset tick
$kernel->delay(tick => 5); $kernel->delay(tick => 5);
}; };
...@@ -408,8 +440,8 @@ sub processChanges ...@@ -408,8 +440,8 @@ sub processChanges
# Loop through what can change # Loop through what can change
foreach my $item ('GroupID','ClassID','TrafficLimitTx','TrafficLimitRx','TrafficLimitTxBurst','TrafficLimitRxBurst') { foreach my $item ('GroupID','ClassID','TrafficLimitTx','TrafficLimitRx','TrafficLimitTxBurst','TrafficLimitRxBurst') {
# Check if its changed... # Check if its first set, if it is, check if its changed
if ($orig->{$item} ne $new->{$item}) { if (defined($new->{$item}) && $orig->{$item} ne $new->{$item}) {
# If so record it & make the change # If so record it & make the change
$res->{$item} = $orig->{$item} = $new->{$item}; $res->{$item} = $orig->{$item} = $new->{$item};
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment