2019-01-24 07:13:44 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Util\Logger;
|
|
|
|
|
|
|
|
use Monolog\Logger;
|
|
|
|
use Monolog\Processor\ProcessorInterface;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Injects line/file//function where the log message came from
|
|
|
|
*
|
|
|
|
* Based on the class IntrospectionProcessor without the "class" information
|
|
|
|
* @see IntrospectionProcessor
|
|
|
|
*/
|
|
|
|
class FriendicaProcessor implements ProcessorInterface
|
|
|
|
{
|
|
|
|
private $level;
|
|
|
|
|
|
|
|
private $skipStackFramesCount;
|
|
|
|
|
2019-01-28 10:21:48 +00:00
|
|
|
private $skipClassesPartials;
|
|
|
|
|
2019-01-24 07:13:44 +00:00
|
|
|
private $skipFunctions = [
|
|
|
|
'call_user_func',
|
|
|
|
'call_user_func_array',
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string|int $level The minimum logging level at which this Processor will be triggered
|
2019-01-28 10:21:48 +00:00
|
|
|
* @param array $skipClassesPartials An array of classes to skip during logging
|
2019-01-24 07:13:44 +00:00
|
|
|
* @param int $skipStackFramesCount If the logger should use information from other hierarchy levels of the call
|
|
|
|
*/
|
2019-01-28 10:21:48 +00:00
|
|
|
public function __construct($level = Logger::DEBUG, array $skipClassesPartials = array(), $skipStackFramesCount = 0)
|
2019-01-24 07:13:44 +00:00
|
|
|
{
|
|
|
|
$this->level = Logger::toMonologLevel($level);
|
2019-01-28 10:21:48 +00:00
|
|
|
$this->skipClassesPartials = array_merge(array('Monolog\\'), $skipClassesPartials);
|
2019-01-24 07:13:44 +00:00
|
|
|
$this->skipStackFramesCount = $skipStackFramesCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function __invoke(array $record)
|
|
|
|
{
|
|
|
|
// return if the level is not high enough
|
|
|
|
if ($record['level'] < $this->level) {
|
|
|
|
return $record;
|
|
|
|
}
|
|
|
|
|
|
|
|
$trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS);
|
|
|
|
|
2019-01-24 14:23:42 +00:00
|
|
|
$i = 1;
|
2019-01-24 07:13:44 +00:00
|
|
|
|
2019-01-28 10:21:48 +00:00
|
|
|
while ($this->isTraceClassOrSkippedFunction($trace, $i)) {
|
|
|
|
if (isset($trace[$i]['class'])) {
|
|
|
|
foreach ($this->skipClassesPartials as $part) {
|
|
|
|
if (strpos($trace[$i]['class'], $part) !== false) {
|
|
|
|
$i++;
|
|
|
|
continue 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} elseif (in_array($trace[$i]['function'], $this->skipFunctions)) {
|
|
|
|
$i++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2019-01-24 07:13:44 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 10:21:48 +00:00
|
|
|
$i += $this->skipStackFramesCount;
|
|
|
|
|
2019-01-24 07:13:44 +00:00
|
|
|
// we should have the call source now
|
|
|
|
$record['extra'] = array_merge(
|
|
|
|
$record['extra'],
|
|
|
|
[
|
2019-01-24 14:23:42 +00:00
|
|
|
'file' => isset($trace[$i - 1]['file']) ? basename($trace[$i - 1]['file']) : null,
|
2019-01-24 07:13:44 +00:00
|
|
|
'line' => isset($trace[$i - 1]['line']) ? $trace[$i - 1]['line'] : null,
|
|
|
|
'function' => isset($trace[$i]['function']) ? $trace[$i]['function'] : null,
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
return $record;
|
|
|
|
}
|
2019-01-28 10:21:48 +00:00
|
|
|
|
|
|
|
private function isTraceClassOrSkippedFunction(array $trace, $index)
|
|
|
|
{
|
|
|
|
if (!isset($trace[$index])) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return isset($trace[$index]['class']) || in_array($trace[$index]['function'], $this->skipFunctions);
|
|
|
|
}
|
2019-01-24 07:13:44 +00:00
|
|
|
}
|