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

82 lines
2.0 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
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
2019-03-26 05:46:08 +01:00
namespace App\Http\Middleware;
2021-04-29 01:19:00 +02:00
use App\DataMapper\Analytics\DbQuery;
use App\Utils\Ninja;
2019-03-26 05:46:08 +01:00
use Closure;
use Illuminate\Http\Request;
2022-01-30 00:46:39 +01:00
use Illuminate\Support\Facades\DB;
2021-04-29 01:19:00 +02:00
use Turbo124\Beacon\Facades\LightLogs;
2019-03-26 05:46:08 +01:00
/**
* Class QueryLogging.
*/
class QueryLogging
{
2019-03-26 05:46:08 +01:00
/**
* Handle an incoming request.
*
* @param Request $request
* @param Closure $next
*
* @return mixed
*/
public function handle(Request $request, Closure $next)
{
2021-10-08 07:29:06 +02:00
// Enable query logging for development
2022-08-05 03:28:29 +02:00
if (! Ninja::isHosted() || ! config('beacon.enabled')) {
return $next($request);
}
DB::enableQueryLog();
return $next($request);
}
public function terminate($request, $response)
{
if (! Ninja::isHosted() || ! config('beacon.enabled'))
return;
2019-03-26 05:46:08 +01:00
2021-04-29 01:19:00 +02:00
// hide requests made by debugbar
if (strstr($request->url(), '_debugbar') === false) {
2021-04-29 01:19:00 +02:00
$queries = DB::getQueryLog();
$count = count($queries);
$timeEnd = microtime(true);
$time = $timeEnd - LARAVEL_START;
2021-09-05 06:03:21 +02:00
if ($count > 175) {
nlog("Query count = {$count}");
nlog($queries);
}
2021-06-22 02:51:43 +02:00
$ip = '';
if ($request->hasHeader('Cf-Connecting-Ip')) {
$ip = $request->header('Cf-Connecting-Ip');
} elseif ($request->hasHeader('X-Forwarded-For')) {
$ip = $request->header('Cf-Connecting-Ip');
} else {
$ip = $request->ip();
2021-06-22 02:51:43 +02:00
}
2023-02-16 02:36:09 +01:00
LightLogs::create(new DbQuery($request->method(), substr(urldecode($request->url()), 0, 180), $count, $time, $ip))
->batch();
2019-03-26 05:46:08 +01:00
}
2019-03-26 05:46:08 +01:00
}
}