mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
64 lines
1.4 KiB
PHP
64 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Middleware;
|
|
|
|
use Closure;
|
|
use DB;
|
|
use Illuminate\Http\Request;
|
|
use Log;
|
|
|
|
/**
|
|
* Class QueryLogging.
|
|
*/
|
|
class QueryLogging
|
|
{
|
|
/**
|
|
* Handle an incoming request.
|
|
*
|
|
* @param Request $request
|
|
* @param Closure $next
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle(Request $request, Closure $next)
|
|
{
|
|
$timeStart = microtime(true);
|
|
|
|
// Enable query logging for development
|
|
if (config('ninja.app_env') == 'production') {
|
|
return $next($request);
|
|
}
|
|
|
|
DB::enableQueryLog();
|
|
|
|
$response = $next($request);
|
|
|
|
if (config('ninja.app_env') != 'production') {
|
|
|
|
// hide requests made by debugbar
|
|
if (strstr($request->url(), '_debugbar') === false) {
|
|
$queries = DB::getQueryLog();
|
|
$count = count($queries);
|
|
$timeEnd = microtime(true);
|
|
$time = $timeEnd - $timeStart;
|
|
|
|
nlog($request->method().' - '.$request->url().": $count queries - ".$time);
|
|
|
|
// if($count > 50)
|
|
// Log::nlog($queries);
|
|
}
|
|
}
|
|
|
|
return $response;
|
|
}
|
|
}
|