mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-03 21:07:30 -05:00 
			
		
		
		
	* Remove unnecessary save() on invoice * Update copyright * Working on Credit Repository * Implement credits as a paymentable entity * Add credit_id to transformer * fix rules for update payment * Fix random deleted_at keys in transformers * Fix for password_protect check
		
			
				
	
	
		
			75 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://opensource.org/licenses/AAL
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\Http\Middleware;
 | 
						|
 | 
						|
use App\Models\Language;
 | 
						|
use Closure;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use Illuminate\Support\Facades\App;
 | 
						|
use Illuminate\Support\Facades\Cache;
 | 
						|
use Illuminate\Support\Facades\Log;
 | 
						|
use Illuminate\Support\Facades\Request as Input;
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
use Illuminate\Support\Facades\Session;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class StartupCheck.
 | 
						|
 */
 | 
						|
class StartupCheck
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Handle an incoming request.
 | 
						|
     *
 | 
						|
     * @param Request $request
 | 
						|
     * @param Closure $next
 | 
						|
     *
 | 
						|
     * @return mixed
 | 
						|
     */
 | 
						|
    public function handle(Request $request, Closure $next)
 | 
						|
    {
 | 
						|
        // $start = microtime(true);
 | 
						|
        // Log::error('start up check');
 | 
						|
 | 
						|
        $cached_tables = config('ninja.cached_tables');
 | 
						|
 | 
						|
        if (Input::has('clear_cache')) {
 | 
						|
            Session::flash('message', 'Cache cleared');
 | 
						|
        }
 | 
						|
        
 | 
						|
        foreach ($cached_tables as $name => $class) {
 | 
						|
            if (Input::has('clear_cache') || ! Cache::has($name)) {
 | 
						|
                // check that the table exists in case the migration is pending
 | 
						|
                if (! Schema::hasTable((new $class())->getTable())) {
 | 
						|
                    continue;
 | 
						|
                }
 | 
						|
                if ($name == 'payment_terms') {
 | 
						|
                    $orderBy = 'num_days';
 | 
						|
                } elseif ($name == 'fonts') {
 | 
						|
                    $orderBy = 'sort_order';
 | 
						|
                } elseif (in_array($name, ['currencies', 'industries', 'languages', 'countries', 'banks'])) {
 | 
						|
                    $orderBy = 'name';
 | 
						|
                } else {
 | 
						|
                    $orderBy = 'id';
 | 
						|
                }
 | 
						|
                $tableData = $class::orderBy($orderBy)->get();
 | 
						|
                if ($tableData->count()) {
 | 
						|
                    Cache::forever($name, $tableData);
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
                
 | 
						|
        $response = $next($request);
 | 
						|
 | 
						|
        return $response;
 | 
						|
    }
 | 
						|
}
 |