I'm trying to implement the rateLimit module in yii2 to protect my API, so to do so I first implements RateLimitInterface
and adds the getRateLimit
, loadAllowance
, saveAllowance
functions from the doc.
use yii\filters\RateLimitInterface;
class User extends \yii\db\ActiveRecord implements IdentityInterface, RateLimitInterface
{
public $rateLimit = 1;
public $allowance;
public $allowance_updated_at;
...
public function getRateLimit($request, $action)
{
return [$this->rateLimit, 60];
}
public function loadAllowance($request, $action)
{
return [$this->allowance, $this->allowance_updated_at];
}
public function saveAllowance($request, $action, $allowance, $timestamp)
{
$this->allowance = $allowance;
$this->allowance_updated_at = $timestamp;
$this->save();
}
}
Then in my UserController I have this :
<?php
namespace app\controllers;
use yii\rest\ActiveController;
use yii\web\Response;
use yii\filters\auth\HttpBasicAuth;
use app\models\User;
use app\controllers\Yii;
use yii\base\Security;
use yii\helpers\ArrayHelper;
use yii\filters\RateLimiter;
use app\components\MyRateLimiter;
class UserController extends ActiveController
{
public $modelClass = 'app\models\User';
public function actions()
{
return ArrayHelper::merge(parent::actions(), [
'index' => [
'pagination' => [
'pageSize' => 0,
],
],
]);
}
public function behaviors()
{
$behaviors = parent::behaviors();
$behaviors['rateLimiter'] = [
'class' => \yii\filters\RateLimiter::class,
'enableRateLimitHeaders' => true, // Enable rate limit headers
];
$behaviors['contentNegotiator'] = [
'class' => 'yii\filters\ContentNegotiator',
'formats' => [
'application/json' => Response::FORMAT_JSON,
]
];
$behaviors['authenticator'] = [
'class' => HttpBasicAuth::className(),
'auth' => function ($username, $password) {
\Yii::info("Le système tente de se connecter avec un nom d'utilisateur et un token d'accès", 'auth');
$user = User::find()->where(['username' => $username, 'acces_api_user' => 1])->one();
if ($user !== null && $user->validatePassword($password)) {
return $user;
}
return null;
},
];
return $behaviors;
}
}
I'm trying to check the number of times my API is connected and then prevent brute force; The error I get is as follows:
Setting unknown property: yii\filters\RateLimiter::rateLimit