vendor and env first commit
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
namespace Laravel\Fortify\Actions;
|
||||
|
||||
use Illuminate\Support\Collection;
|
||||
use Laravel\Fortify\Contracts\TwoFactorAuthenticationProvider;
|
||||
use Laravel\Fortify\Events\TwoFactorAuthenticationEnabled;
|
||||
use Laravel\Fortify\RecoveryCode;
|
||||
|
||||
class EnableTwoFactorAuthentication
|
||||
{
|
||||
/**
|
||||
* The two factor authentication provider.
|
||||
*
|
||||
* @var \Laravel\Fortify\Contracts\TwoFactorAuthenticationProvider
|
||||
*/
|
||||
protected $provider;
|
||||
|
||||
/**
|
||||
* Create a new action instance.
|
||||
*
|
||||
* @param \Laravel\Fortify\Contracts\TwoFactorAuthenticationProvider $provider
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(TwoFactorAuthenticationProvider $provider)
|
||||
{
|
||||
$this->provider = $provider;
|
||||
}
|
||||
|
||||
/**
|
||||
* Enable two factor authentication for the user.
|
||||
*
|
||||
* @param mixed $user
|
||||
* @param bool $force
|
||||
* @return void
|
||||
*/
|
||||
public function __invoke($user, $force = false)
|
||||
{
|
||||
if (empty($user->two_factor_secret) || $force === true) {
|
||||
$user->forceFill([
|
||||
'two_factor_secret' => encrypt($this->provider->generateSecretKey()),
|
||||
'two_factor_recovery_codes' => encrypt(json_encode(Collection::times(8, function () {
|
||||
return RecoveryCode::generate();
|
||||
})->all())),
|
||||
])->save();
|
||||
|
||||
TwoFactorAuthenticationEnabled::dispatch($user);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user