Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Throttler can access bucket for bucket life time #2074

Merged
merged 7 commits into from
Jun 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions system/Throttle/Throttler.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,12 @@ public function check(string $key, int $capacity, int $seconds, int $cost = 1):
$tokenName = $this->prefix . $key;

// Check to see if the bucket has even been created yet.
if (($tokens = $this->cache->get($tokenName)) === false)
if (($tokens = $this->cache->get($tokenName)) === null)
{
// If it hasn't been created, then we'll set it to the maximum
// capacity - 1, and save it to the cache.
$this->cache->save($tokenName, $capacity - $cost, $seconds);
$this->cache->save($tokenName . 'Time', time());
$this->cache->save($tokenName . 'Time', time(), $seconds);

return true;
}
Expand All @@ -152,32 +152,33 @@ public function check(string $key, int $capacity, int $seconds, int $cost = 1):
// based on how long it's been since the last update.
$throttleTime = $this->cache->get($tokenName . 'Time');
$elapsed = $this->time() - $throttleTime;

// Number of tokens to add back per second
$rate = $capacity / $seconds;

// We must have a minimum wait of 1 second for a new token
// How many seconds till a new token is available.
// We must have a minimum wait of 1 second for a new token.
// Primarily stored to allow devs to report back to users.
$this->tokenTime = max(1, $rate);
$newTokenAvailable = (1 / $rate) - $elapsed;
$this->tokenTime = max(1, $newTokenAvailable);

// Add tokens based up on number per second that
// should be refilled, then checked against capacity
// to be sure the bucket didn't overflow.
$tokens += $rate * $elapsed;
$tokens = $tokens > $capacity ? $capacity : $tokens;

// If $tokens > 0, then we are save to perform the action, but
// If $tokens > 0, then we are safe to perform the action, but
// we need to decrement the number of available tokens.
$response = false;

if ($tokens > 0)
{
$response = true;
$this->cache->save($tokenName, $tokens - $cost, $seconds);
$this->cache->save($tokenName . 'Time', time(), $seconds);

$this->cache->save($tokenName, $tokens - $cost, $elapsed);
$this->cache->save($tokenName . 'Time', time());
return true;
}

return $response;
return false;
}

//--------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion tests/_support/Cache/Handlers/MockHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function get(string $key)

return array_key_exists($key, $this->cache)
? $this->cache[$key]
: false;
: null;
}

//--------------------------------------------------------------------
Expand Down
17 changes: 8 additions & 9 deletions tests/system/Throttle/ThrottleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,20 +16,19 @@ public function testTokenTime()
{
$throttler = new Throttler($this->cache);

// token time should be zero to start
// tokenTime should be 0 to start
$this->assertEquals(0, $throttler->getTokenTime());

// as soon as we try a rate check, token time affected
$rate = 1; // allow 1 per minute
$cost = 1;
// set $rate
$rate = 1; // allow 1 request per minute

// after using one slot, still good
$throttler->check('127.0.0.1', $rate, MINUTE, $cost);
// first check just creates a bucket, so tokenTime should be 0
$throttler->check('127.0.0.1', $rate, MINUTE);
$this->assertEquals(0, $throttler->getTokenTime());

// after consuming a second, we have to wait
$throttler->check('127.0.0.1', $rate, MINUTE, $cost);
$this->assertEquals(1, $throttler->getTokenTime());
// additional check affects tokenTime, so tokenTime should be 1 or greater
$throttler->check('127.0.0.1', $rate, MINUTE);
$this->assertGreaterThanOrEqual(1, $throttler->getTokenTime());
}

public function testIPSavesBucket()
Expand Down