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

64 lines
1.4 KiB
PHP
Raw Normal View History

2019-03-26 05:46:08 +01:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-03-26 05:46:08 +01:00
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)
{
2020-09-07 01:29:46 +02:00
$timeStart = microtime(true);
2019-03-26 05:46:08 +01:00
// Enable query logging for development
if (config('ninja.app_env') == 'production') {
2020-12-08 10:18:17 +01:00
return $next($request);
}
2020-12-08 10:18:17 +01:00
DB::enableQueryLog();
2019-03-26 05:46:08 +01:00
$response = $next($request);
if (config('ninja.app_env') != 'production') {
2019-03-26 05:46:08 +01:00
// hide requests made by debugbar
if (strstr($request->url(), '_debugbar') === false) {
$queries = DB::getQueryLog();
$count = count($queries);
$timeEnd = microtime(true);
$time = $timeEnd - $timeStart;
2020-12-29 22:10:03 +01:00
nlog($request->method().' - '.$request->url().": $count queries - ".$time);
2020-10-18 09:46:10 +02:00
// if($count > 50)
2021-03-20 01:16:29 +01:00
//nlog($queries);
2019-03-26 05:46:08 +01:00
}
}
2019-03-26 05:46:08 +01:00
return $response;
}
}