26 lines
		
	
	
		
			587 B
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			587 B
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
 | 
						|
namespace BookStack\Access\Controllers;
 | 
						|
 | 
						|
use BookStack\Access\LoginService;
 | 
						|
use BookStack\Exceptions\NotFoundException;
 | 
						|
use BookStack\Users\Models\User;
 | 
						|
 | 
						|
trait HandlesPartialLogins
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @throws NotFoundException
 | 
						|
     */
 | 
						|
    protected function currentOrLastAttemptedUser(): User
 | 
						|
    {
 | 
						|
        $loginService = app()->make(LoginService::class);
 | 
						|
        $user = auth()->user() ?? $loginService->getLastLoginAttemptUser();
 | 
						|
 | 
						|
        if (!$user) {
 | 
						|
            throw new NotFoundException('A user for this action could not be found');
 | 
						|
        }
 | 
						|
 | 
						|
        return $user;
 | 
						|
    }
 | 
						|
}
 |