ratelimit : first version of ratelimit by file

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2072 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2015-04-21 09:08:30 +00:00
parent eded116729
commit ec1a821dcd
2 changed files with 158 additions and 0 deletions

41
ratelimit.php Normal file
View File

@@ -0,0 +1,41 @@
<?php
/** DomFramework
@package domframework
@author Dominique Fournier <dominique@fournier38.fr> */
/** The rate limit abstract class */
class ratelimit
{
/** The maximum number of entries by specified unit time */
public $maxEntries = 10;
/** The unit time in seconds */
public $unittime = 60;
/** The function set a rate-limit
@return bool true if the rate-limit is not overloaded
false if the rate-limit is overloaded */
public function set ($name)
{
throw new Exception (dgettext("domframework",
"ratelimit : no valid ratelimiter available"),
500);
}
/** The function delete a rate-limit
@return bool */
public function del ($name)
{
throw new Exception (dgettext("domframework",
"ratelimit : no valid ratelimiter available"),
500);
}
/** The function clean the storage
@return bool */
public function clean ()
{
throw new Exception (dgettext("domframework",
"ratelimit : no valid ratelimiter available"),
500);
}
}