61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
namespace BookStack\Access\Mfa;
 | 
						|
 | 
						|
use BookStack\Users\Models\User;
 | 
						|
 | 
						|
class MfaSession
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Check if MFA is required for the given user.
 | 
						|
     */
 | 
						|
    public function isRequiredForUser(User $user): bool
 | 
						|
    {
 | 
						|
        // TODO - Test both these cases
 | 
						|
        return $user->mfaValues()->exists() || $this->userRoleEnforcesMfa($user);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Check if the given user is pending MFA setup.
 | 
						|
     * (MFA required but not yet configured).
 | 
						|
     */
 | 
						|
    public function isPendingMfaSetup(User $user): bool
 | 
						|
    {
 | 
						|
        return $this->isRequiredForUser($user) && !$user->mfaValues()->exists();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Check if a role of the given user enforces MFA.
 | 
						|
     */
 | 
						|
    protected function userRoleEnforcesMfa(User $user): bool
 | 
						|
    {
 | 
						|
        return $user->roles()
 | 
						|
            ->where('mfa_enforced', '=', true)
 | 
						|
            ->exists();
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Check if the current MFA session has already been verified for the given user.
 | 
						|
     */
 | 
						|
    public function isVerifiedForUser(User $user): bool
 | 
						|
    {
 | 
						|
        return session()->get($this->getMfaVerifiedSessionKey($user)) === 'true';
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Mark the current session as MFA-verified.
 | 
						|
     */
 | 
						|
    public function markVerifiedForUser(User $user): void
 | 
						|
    {
 | 
						|
        session()->put($this->getMfaVerifiedSessionKey($user), 'true');
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Get the session key in which the MFA verification status is stored.
 | 
						|
     */
 | 
						|
    protected function getMfaVerifiedSessionKey(User $user): string
 | 
						|
    {
 | 
						|
        return 'mfa-verification-passed:' . $user->id;
 | 
						|
    }
 | 
						|
}
 |