mirror of
				https://github.com/BookStackApp/BookStack.git
				synced 2025-10-31 03:50:27 +03:00 
			
		
		
		
	API listing endpoint filter can be found via &filter[name]=my+book query parameters. There are a range of operators that can be used such as &filter[id:gte]=4
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace BookStack\Http\Middleware;
 | |
| 
 | |
| use BookStack\Exceptions\UnauthorizedException;
 | |
| use Illuminate\Http\Request;
 | |
| 
 | |
| trait ChecksForEmailConfirmation
 | |
| {
 | |
|     /**
 | |
|      * Check if the current user has a confirmed email if the instance deems it as required.
 | |
|      * Throws if confirmation is required by the user.
 | |
|      * @throws UnauthorizedException
 | |
|      */
 | |
|     protected function ensureEmailConfirmedIfRequested()
 | |
|     {
 | |
|         if ($this->awaitingEmailConfirmation()) {
 | |
|             throw new UnauthorizedException(trans('errors.email_confirmation_awaiting'));
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Check if email confirmation is required and the current user is awaiting confirmation.
 | |
|      */
 | |
|     protected function awaitingEmailConfirmation(): bool
 | |
|     {
 | |
|         if (auth()->check()) {
 | |
|             $requireConfirmation = (setting('registration-confirmation') || setting('registration-restrict'));
 | |
|             if ($requireConfirmation && !auth()->user()->email_confirmed) {
 | |
|                 return true;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return false;
 | |
|     }
 | |
| } |