| Server IP : 3.138.164.131 / Your IP : 216.73.216.136 Web Server : Apache System : Linux ns1.techtime.me 4.18.0-147.8.1.el8.lve.1.x86_64 #1 SMP Mon Jun 29 09:55:57 EDT 2020 x86_64 User : injazaat ( 1471) PHP Version : 8.1.20 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/injazaat/public_html/vendor/laravel/fortify/src/ |
Upload File : |
<?php
namespace Laravel\Fortify;
use Illuminate\Cache\RateLimiter;
use Illuminate\Http\Request;
use Illuminate\Support\Str;
class LoginRateLimiter
{
/**
* The login rate limiter instance.
*
* @var \Illuminate\Cache\RateLimiter
*/
protected $limiter;
/**
* Create a new login rate limiter instance.
*
* @param \Illuminate\Cache\RateLimiter $limiter
* @return void
*/
public function __construct(RateLimiter $limiter)
{
$this->limiter = $limiter;
}
/**
* Get the number of attempts for the given key.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function attempts(Request $request)
{
return $this->limiter->attempts($this->throttleKey($request));
}
/**
* Determine if the user has too many failed login attempts.
*
* @param \Illuminate\Http\Request $request
* @return bool
*/
public function tooManyAttempts(Request $request)
{
return $this->limiter->tooManyAttempts($this->throttleKey($request), 5);
}
/**
* Increment the login attempts for the user.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
public function increment(Request $request)
{
$this->limiter->hit($this->throttleKey($request), 60);
}
/**
* Determine the number of seconds until logging in is available again.
*
* @param \Illuminate\Http\Request $request
* @return int
*/
public function availableIn(Request $request)
{
return $this->limiter->availableIn($this->throttleKey($request));
}
/**
* Clear the login locks for the given user credentials.
*
* @param \Illuminate\Http\Request $request
* @return void
*/
public function clear(Request $request)
{
$this->limiter->clear($this->throttleKey($request));
}
/**
* Get the throttle key for the given request.
*
* @param \Illuminate\Http\Request $request
* @return string
*/
protected function throttleKey(Request $request)
{
return Str::transliterate(Str::lower($request->input(Fortify::username())).'|'.$request->ip());
}
}