1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Http/Middleware/StartupCheck.php

77 lines
2.1 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* 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 Illuminate\Http\Request;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\Input;
use Illuminate\Support\Facades\Schema;
2019-09-11 01:31:55 +02:00
use Illuminate\Support\Facades\Log;
use Illuminate\Support\Facades\Session;
use Closure;
/**
* Class StartupCheck.
*/
class StartupCheck
{
/**
* Handle an incoming request.
*
* @param Request $request
* @param Closure $next
*
* @return mixed
*/
public function handle(Request $request, Closure $next)
{
2019-09-11 01:31:55 +02:00
$start = microtime(true);
Log::error('start up check');
2019-09-11 01:31:55 +02:00
$cached_tables = config('ninja.cached_tables');
if (Input::has('clear_cache'))
Session::flash('message', 'Cache cleared');
2019-09-11 01:31:55 +02:00
2019-08-12 00:33:17 +02:00
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;
}
2019-09-11 01:31:55 +02:00
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);
}
}
}
2019-09-11 01:31:55 +02:00
$end = microtime(true) - $start;
Log::error("middleware cost = {$end} ms");
$response = $next($request);
return $response;
}
}