mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 02:47:34 -05:00 
			
		
		
		
	* Provide failsafe creation of invoice invitations * URL Links for invitations * open up route for invitations * Set DB by Invite * Set DB By invitation Key * Tests for setting DB based on user email address * Middleware for setting db by email address * fixes for tets * fixes for tests * Tests for bulk actions * Payments API * Fixes for tests
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Middleware;
 | 
						|
 | 
						|
use App\Libraries\MultiDB;
 | 
						|
use App\Models\CompanyToken;
 | 
						|
use Closure;
 | 
						|
 | 
						|
class SetEmailDb
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Handle an incoming request.
 | 
						|
     *
 | 
						|
     * @param  \Illuminate\Http\Request  $request
 | 
						|
     * @param  \Closure  $next
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    
 | 
						|
    public function handle($request, Closure $next)
 | 
						|
    {
 | 
						|
 | 
						|
        $error = [
 | 
						|
            'message' => 'Email not set or not found',
 | 
						|
            'errors' => []
 | 
						|
        ];
 | 
						|
 | 
						|
        if( $request->input('email') && config('ninja.db.multi_db_enabled')) 
 | 
						|
        {
 | 
						|
 | 
						|
            if(! MultiDB::userFindAndSetDb($request->input('email')))
 | 
						|
            {
 | 
						|
 | 
						|
                return response()->json($error, 403);
 | 
						|
 | 
						|
            }
 | 
						|
        
 | 
						|
        }
 | 
						|
        else {
 | 
						|
 | 
						|
 | 
						|
                return response()->json($error, 403);
 | 
						|
            
 | 
						|
        }
 | 
						|
 | 
						|
        return $next($request);
 | 
						|
    }
 | 
						|
 | 
						|
 | 
						|
}
 |