Server IP : / Your IP : 10.244.4.16 [ Web Server : nginx/1.25.3 System : Linux escuela-portal-app-54f56585bc-kst6g 5.15.0-1084-azure #93-Ubuntu SMP Sat Mar 15 14:12:29 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.2.13 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, Domains : 0 Domains MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /proc/449/cwd/app/vendor/laravel/fortify/src/ |
Upload File : |
<?php namespace Laravel\Fortify; use Laravel\Fortify\Contracts\ConfirmPasswordViewResponse; use Laravel\Fortify\Contracts\CreatesNewUsers; use Laravel\Fortify\Contracts\LoginViewResponse; use Laravel\Fortify\Contracts\RegisterViewResponse; use Laravel\Fortify\Contracts\RequestPasswordResetLinkViewResponse; use Laravel\Fortify\Contracts\ResetPasswordViewResponse; use Laravel\Fortify\Contracts\ResetsUserPasswords; use Laravel\Fortify\Contracts\TwoFactorChallengeViewResponse; use Laravel\Fortify\Contracts\UpdatesUserPasswords; use Laravel\Fortify\Contracts\UpdatesUserProfileInformation; use Laravel\Fortify\Contracts\VerifyEmailViewResponse; use Laravel\Fortify\Http\Responses\SimpleViewResponse; class Fortify { /** * The callback that is responsible for building the authentication pipeline array, if applicable. * * @var callable|null */ public static $authenticateThroughCallback; /** * The callback that is responsible for validating authentication credentials, if applicable. * * @var callable|null */ public static $authenticateUsingCallback; /** * The callback that is responsible for confirming user passwords. * * @var callable|null */ public static $confirmPasswordsUsingCallback; /** * Indicates if Fortify routes will be registered. * * @var bool */ public static $registersRoutes = true; const PASSWORD_UPDATED = 'password-updated'; const PROFILE_INFORMATION_UPDATED = 'profile-information-updated'; const RECOVERY_CODES_GENERATED = 'recovery-codes-generated'; const TWO_FACTOR_AUTHENTICATION_CONFIRMED = 'two-factor-authentication-confirmed'; const TWO_FACTOR_AUTHENTICATION_DISABLED = 'two-factor-authentication-disabled'; const TWO_FACTOR_AUTHENTICATION_ENABLED = 'two-factor-authentication-enabled'; const VERIFICATION_LINK_SENT = 'verification-link-sent'; /** * Get the username used for authentication. * * @return string */ public static function username() { return config('fortify.username', 'email'); } /** * Get the name of the email address request variable / field. * * @return string */ public static function email() { return config('fortify.email', 'email'); } /** * Get a completion redirect path for a specific feature. * * @param string $redirect * @return string */ public static function redirects(string $redirect, $default = null) { return config('fortify.redirects.'.$redirect) ?? $default ?? config('fortify.home'); } /** * Register the views for Fortify using conventional names under the given namespace. * * @param string $namespace * @return void */ public static function viewNamespace(string $namespace) { static::viewPrefix($namespace.'::'); } /** * Register the views for Fortify using conventional names under the given prefix. * * @param string $prefix * @return void */ public static function viewPrefix(string $prefix) { static::loginView($prefix.'login'); static::twoFactorChallengeView($prefix.'two-factor-challenge'); static::registerView($prefix.'register'); static::requestPasswordResetLinkView($prefix.'forgot-password'); static::resetPasswordView($prefix.'reset-password'); static::verifyEmailView($prefix.'verify-email'); static::confirmPasswordView($prefix.'confirm-password'); } /** * Specify which view should be used as the login view. * * @param callable|string $view * @return void */ public static function loginView($view) { app()->singleton(LoginViewResponse::class, function () use ($view) { return new SimpleViewResponse($view); }); } /** * Specify which view should be used as the two factor authentication challenge view. * * @param callable|string $view * @return void */ public static function twoFactorChallengeView($view) { app()->singleton(TwoFactorChallengeViewResponse::class, function () use ($view) { return new SimpleViewResponse($view); }); } /** * Specify which view should be used as the new password view. * * @param callable|string $view * @return void */ public static function resetPasswordView($view) { app()->singleton(ResetPasswordViewResponse::class, function () use ($view) { return new SimpleViewResponse($view); }); } /** * Specify which view should be used as the registration view. * * @param callable|string $view * @return void */ public static function registerView($view) { app()->singleton(RegisterViewResponse::class, function () use ($view) { return new SimpleViewResponse($view); }); } /** * Specify which view should be used as the email verification prompt. * * @param callable|string $view * @return void */ public static function verifyEmailView($view) { app()->singleton(VerifyEmailViewResponse::class, function () use ($view) { return new SimpleViewResponse($view); }); } /** * Specify which view should be used as the password confirmation prompt. * * @param callable|string $view * @return void */ public static function confirmPasswordView($view) { app()->singleton(ConfirmPasswordViewResponse::class, function () use ($view) { return new SimpleViewResponse($view); }); } /** * Specify which view should be used as the request password reset link view. * * @param callable|string $view * @return void */ public static function requestPasswordResetLinkView($view) { app()->singleton(RequestPasswordResetLinkViewResponse::class, function () use ($view) { return new SimpleViewResponse($view); }); } /** * Register a callback that is responsible for building the authentication pipeline array. * * @param callable $callback * @return void */ public static function loginThrough(callable $callback) { static::authenticateThrough($callback); } /** * Register a callback that is responsible for building the authentication pipeline array. * * @param callable $callback * @return void */ public static function authenticateThrough(callable $callback) { static::$authenticateThroughCallback = $callback; } /** * Register a callback that is responsible for validating incoming authentication credentials. * * @param callable $callback * @return void */ public static function authenticateUsing(callable $callback) { static::$authenticateUsingCallback = $callback; } /** * Register a callback that is responsible for confirming existing user passwords as valid. * * @param callable $callback * @return void */ public static function confirmPasswordsUsing(callable $callback) { static::$confirmPasswordsUsingCallback = $callback; } /** * Register a class / callback that should be used to create new users. * * @param string $callback * @return void */ public static function createUsersUsing(string $callback) { app()->singleton(CreatesNewUsers::class, $callback); } /** * Register a class / callback that should be used to update user profile information. * * @param string $callback * @return void */ public static function updateUserProfileInformationUsing(string $callback) { app()->singleton(UpdatesUserProfileInformation::class, $callback); } /** * Register a class / callback that should be used to update user passwords. * * @param string $callback * @return void */ public static function updateUserPasswordsUsing(string $callback) { app()->singleton(UpdatesUserPasswords::class, $callback); } /** * Register a class / callback that should be used to reset user passwords. * * @param string $callback * @return void */ public static function resetUserPasswordsUsing(string $callback) { app()->singleton(ResetsUserPasswords::class, $callback); } /** * Determine if Fortify is confirming two factor authentication configurations. * * @return bool */ public static function confirmsTwoFactorAuthentication() { return Features::enabled(Features::twoFactorAuthentication()) && Features::optionEnabled(Features::twoFactorAuthentication(), 'confirm'); } /** * Configure Fortify to not register its routes. * * @return static */ public static function ignoreRoutes() { static::$registersRoutes = false; return new static; } }