1. Go to this page and download the library: Download raid/guardian library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
namespace App\Models;
use Illuminate\Contracts\Auth\Authenticatable;
use Laravel\Sanctum\HasApiTokens;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Raid\Guardian\Authenticatable\Contracts\AuthenticatableInterface;
class User extends Authenticatable implements AuthenticatableInterface
{
public function findForAuthentication(string $attribute, mixed $value): ?AuthenticatableInterface
{
return $this->where($attribute, $value)->first();
}
}
namespace App\Http\Authentication\Guardians;
use App\Models\User;
use Raid\Guardian\Guardians\Guardian;
use Raid\Guardian\Guardians\Contracts\GuardianInterface;
class UserGuardian extends Guardian implements GuardianInterface
{
public const NAME = 'user';
protected string $authenticatable = User::class;
protected array $authenticators = [
SystemAuthenticator::class,
];
}
namespace App\Http\Authentication\Authenticators;
use Raid\Guardian\Authenticators\Authenticator;
use Raid\Guardian\Authenticators\Contracts\AuthenticatorInterface;
class SystemAuthenticator extends Authenticator implements AuthenticatorInterface
{
public const NAME = 'system';
}
namespace App\Http\Authentication\Matchers;
use Raid\Guardian\Matchers\Matcher;
use Raid\Guardian\Matchers\Contracts\MatcherInterface;
class EmailMatcher extends Matcher implements MatcherInterface
{
public const ATTRIBUTE = 'email';
}
namespace App\Http\Authentication\Norms;
use Raid\Guardian\Authenticators\Contracts\AuthenticatorInterface;
use Raid\Guardian\Norms\Contracts\NormInterface;
class VerifiedNorm implements NormInterface
{
public function handle(AuthenticatorInterface $authenticator): bool
{
return $authenticator->getAuthenticatable()->isVerified();
}
public function fail(AuthenticatorInterface $authenticator): void
{
$authenticator->fail(message: __('auth.unverified'));
}
}
namespace App\Http\Authentication\Sequences;
use App\Core\Integrations\Mail\MailService;
use App\Mail\TwoFactorMail;
use Raid\Guardian\Authenticators\Contracts\AuthenticatorInterface;
use Raid\Guardian\Sequences\Contracts\SequenceInterface;
class TwoFactorEmailSequence implements SequenceInterface
{
public function __construct(
private readonly MailService $mailService,
) {
}
public function handle(AuthenticatorInterface $authenticator): void
{
$code = generate_code();
$authenticatable = $authenticator->getAuthenticatable();
$authenticatable->update([
'two_factor_email_code' => $code,
]);
$this->mailService->send(
$authenticatable->getAttribute('email'),
new TwoFactorMail($authenticatable->getAttribute('name'), $code),
);
}
}
use Raid\Guardian\Drivers\SanctumDriver;
return [
'default_driver' => SanctumDriver::class,
];
namespace App\Http\Authentication\Drivers;
use Raid\Guardian\Tokens\Contracts\TokenInterface;
use Raid\Guardian\Authenticatable\Contracts\AuthenticatableInterface;
use Raid\Guardian\Drivers\Contracts\DriverInterface;
class CustomDriver implements DriverInterface
{
public function generateToken(Authenticatable Interface $authenticatable, ?TokenInterface $token = null): string
{
// Custom logic for generating tokens
}
}