2018-12-30 21:42:56 +01:00
|
|
|
<?php
|
2020-02-09 15:45:36 +01:00
|
|
|
/**
|
2021-03-29 08:40:20 +02:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:45:36 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2018-12-30 21:42:56 +01:00
|
|
|
|
2019-02-03 22:22:04 +01:00
|
|
|
namespace Friendica\Factory;
|
2018-12-30 21:42:56 +01:00
|
|
|
|
2020-01-19 21:29:36 +01:00
|
|
|
use Friendica\Core\Config\IConfig;
|
2019-02-17 01:56:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2019-06-07 00:10:45 +02:00
|
|
|
use Friendica\Database\Database;
|
2018-12-30 21:42:56 +01:00
|
|
|
use Friendica\Network\HTTPException\InternalServerErrorException;
|
2019-10-22 22:47:37 +02:00
|
|
|
use Friendica\Util\FileSystem;
|
2019-02-28 08:56:28 +01:00
|
|
|
use Friendica\Util\Introspection;
|
2019-03-04 08:42:08 +01:00
|
|
|
use Friendica\Util\Logger\Monolog\DevelopHandler;
|
|
|
|
use Friendica\Util\Logger\Monolog\IntrospectionProcessor;
|
2019-03-03 20:32:27 +01:00
|
|
|
use Friendica\Util\Logger\ProfilerLogger;
|
2019-02-28 09:48:55 +01:00
|
|
|
use Friendica\Util\Logger\StreamLogger;
|
2019-02-27 16:40:35 +01:00
|
|
|
use Friendica\Util\Logger\SyslogLogger;
|
2019-02-27 18:55:26 +01:00
|
|
|
use Friendica\Util\Logger\VoidLogger;
|
2019-02-17 01:56:46 +01:00
|
|
|
use Friendica\Util\Profiler;
|
2018-12-30 21:42:56 +01:00
|
|
|
use Monolog;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
use Psr\Log\LogLevel;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A logger factory
|
|
|
|
*
|
|
|
|
* Currently only Monolog is supported
|
|
|
|
*/
|
|
|
|
class LoggerFactory
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
const DEV_CHANNEL = 'dev';
|
|
|
|
|
2019-02-24 13:40:54 +01:00
|
|
|
/**
|
|
|
|
* A list of classes, which shouldn't get logged
|
2019-05-26 14:33:09 +02:00
|
|
|
*
|
2019-02-24 13:40:54 +01:00
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $ignoreClassList = [
|
|
|
|
Logger::class,
|
|
|
|
Profiler::class,
|
2019-03-23 18:31:22 +01:00
|
|
|
'Friendica\\Util\\Logger',
|
2019-02-24 13:40:54 +01:00
|
|
|
];
|
|
|
|
|
2019-09-17 16:47:00 +02:00
|
|
|
private $channel;
|
|
|
|
|
|
|
|
public function __construct(string $channel)
|
2019-07-21 20:24:16 +02:00
|
|
|
{
|
2019-09-17 16:47:00 +02:00
|
|
|
$this->channel = $channel;
|
2019-07-21 20:24:16 +02:00
|
|
|
}
|
|
|
|
|
2018-12-30 21:42:56 +01:00
|
|
|
/**
|
|
|
|
* Creates a new PSR-3 compliant logger instances
|
|
|
|
*
|
2020-01-19 21:29:36 +01:00
|
|
|
* @param Database $database The Friendica Database instance
|
|
|
|
* @param IConfig $config The config
|
|
|
|
* @param Profiler $profiler The profiler of the app
|
|
|
|
* @param FileSystem $fileSystem FileSystem utils
|
2018-12-30 21:42:56 +01:00
|
|
|
*
|
|
|
|
* @return LoggerInterface The PSR-3 compliant logger instance
|
|
|
|
*/
|
2020-01-19 21:29:36 +01:00
|
|
|
public function create(Database $database, IConfig $config, Profiler $profiler, FileSystem $fileSystem)
|
2018-12-30 21:42:56 +01:00
|
|
|
{
|
2019-02-27 18:55:26 +01:00
|
|
|
if (empty($config->get('system', 'debugging', false))) {
|
2019-03-02 14:40:59 +01:00
|
|
|
$logger = new VoidLogger();
|
2019-06-07 00:10:45 +02:00
|
|
|
$database->setLogger($logger);
|
2019-03-02 14:40:59 +01:00
|
|
|
return $logger;
|
2019-02-27 18:55:26 +01:00
|
|
|
}
|
|
|
|
|
2019-02-28 08:56:28 +01:00
|
|
|
$introspection = new Introspection(self::$ignoreClassList);
|
2019-05-26 14:33:09 +02:00
|
|
|
$level = $config->get('system', 'loglevel');
|
|
|
|
$loglevel = self::mapLegacyConfigDebugLevel((string)$level);
|
2019-02-28 08:56:28 +01:00
|
|
|
|
2019-03-03 20:32:27 +01:00
|
|
|
switch ($config->get('system', 'logger_config', 'stream')) {
|
2019-02-27 16:40:35 +01:00
|
|
|
case 'monolog':
|
|
|
|
$loggerTimeZone = new \DateTimeZone('UTC');
|
|
|
|
Monolog\Logger::setTimezone($loggerTimeZone);
|
|
|
|
|
2019-09-17 16:47:00 +02:00
|
|
|
$logger = new Monolog\Logger($this->channel);
|
2019-02-27 16:40:35 +01:00
|
|
|
$logger->pushProcessor(new Monolog\Processor\PsrLogMessageProcessor());
|
|
|
|
$logger->pushProcessor(new Monolog\Processor\ProcessIdProcessor());
|
|
|
|
$logger->pushProcessor(new Monolog\Processor\UidProcessor());
|
2019-03-04 08:42:08 +01:00
|
|
|
$logger->pushProcessor(new IntrospectionProcessor($introspection, LogLevel::DEBUG));
|
2019-02-27 16:40:35 +01:00
|
|
|
|
2019-02-27 18:55:26 +01:00
|
|
|
$stream = $config->get('system', 'logfile');
|
2019-02-27 16:40:35 +01:00
|
|
|
|
2019-05-26 14:33:09 +02:00
|
|
|
// just add a stream in case it's either writable or not file
|
|
|
|
if (!is_file($stream) || is_writable($stream)) {
|
2019-10-21 21:53:55 +02:00
|
|
|
try {
|
|
|
|
static::addStreamHandler($logger, $stream, $loglevel);
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
// No Logger ..
|
|
|
|
$logger = new VoidLogger();
|
|
|
|
}
|
2019-05-26 14:33:09 +02:00
|
|
|
}
|
2019-02-27 16:40:35 +01:00
|
|
|
break;
|
2019-03-03 20:32:27 +01:00
|
|
|
|
|
|
|
case 'syslog':
|
2019-10-21 21:53:55 +02:00
|
|
|
try {
|
|
|
|
$logger = new SyslogLogger($this->channel, $introspection, $loglevel);
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
// No logger ...
|
|
|
|
$logger = new VoidLogger();
|
|
|
|
}
|
2019-03-03 20:32:27 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'stream':
|
|
|
|
default:
|
|
|
|
$stream = $config->get('system', 'logfile');
|
2019-05-26 14:33:09 +02:00
|
|
|
// just add a stream in case it's either writable or not file
|
|
|
|
if (!is_file($stream) || is_writable($stream)) {
|
2019-10-21 21:53:55 +02:00
|
|
|
try {
|
2019-10-22 22:47:37 +02:00
|
|
|
$logger = new StreamLogger($this->channel, $stream, $introspection, $fileSystem, $loglevel);
|
2019-10-21 21:53:55 +02:00
|
|
|
} catch (\Throwable $t) {
|
|
|
|
// No logger ...
|
|
|
|
$logger = new VoidLogger();
|
|
|
|
}
|
2019-05-26 14:33:09 +02:00
|
|
|
} else {
|
|
|
|
$logger = new VoidLogger();
|
|
|
|
}
|
2019-03-03 20:32:27 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$profiling = $config->get('system', 'profiling', false);
|
|
|
|
|
|
|
|
// In case profiling is enabled, wrap the ProfilerLogger around the current logger
|
|
|
|
if (isset($profiling) && $profiling !== false) {
|
|
|
|
$logger = new ProfilerLogger($logger, $profiler);
|
2019-02-03 22:22:04 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 00:10:45 +02:00
|
|
|
$database->setLogger($logger);
|
2018-12-30 21:42:56 +01:00
|
|
|
return $logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new PSR-3 compliant develop logger
|
|
|
|
*
|
|
|
|
* If you want to debug only interactions from your IP or the IP of a remote server for federation debug,
|
|
|
|
* you'll use this logger instance for the duration of your work.
|
|
|
|
*
|
|
|
|
* It should never get filled during normal usage of Friendica
|
|
|
|
*
|
2020-01-19 21:29:36 +01:00
|
|
|
* @param IConfig $config The config
|
|
|
|
* @param Profiler $profiler The profiler of the app
|
|
|
|
* @param FileSystem $fileSystem FileSystem utils
|
2018-12-30 21:42:56 +01:00
|
|
|
*
|
|
|
|
* @return LoggerInterface The PSR-3 compliant logger instance
|
2019-03-03 20:32:27 +01:00
|
|
|
*
|
2019-02-27 16:40:35 +01:00
|
|
|
* @throws InternalServerErrorException
|
2019-03-03 20:32:27 +01:00
|
|
|
* @throws \Exception
|
2018-12-30 21:42:56 +01:00
|
|
|
*/
|
2020-01-19 21:29:36 +01:00
|
|
|
public static function createDev(IConfig $config, Profiler $profiler, FileSystem $fileSystem)
|
2018-12-30 21:42:56 +01:00
|
|
|
{
|
2019-02-11 21:13:53 +01:00
|
|
|
$debugging = $config->get('system', 'debugging');
|
|
|
|
$stream = $config->get('system', 'dlogfile');
|
|
|
|
$developerIp = $config->get('system', 'dlogip');
|
|
|
|
|
2019-05-26 14:33:09 +02:00
|
|
|
if ((!isset($developerIp) || !$debugging) &&
|
|
|
|
(!is_file($stream) || is_writable($stream))) {
|
2019-03-03 20:32:27 +01:00
|
|
|
$logger = new VoidLogger();
|
|
|
|
return $logger;
|
2019-02-11 21:13:53 +01:00
|
|
|
}
|
|
|
|
|
2019-03-09 14:28:31 +01:00
|
|
|
$loggerTimeZone = new \DateTimeZone('UTC');
|
|
|
|
Monolog\Logger::setTimezone($loggerTimeZone);
|
|
|
|
|
2019-02-28 08:56:28 +01:00
|
|
|
$introspection = new Introspection(self::$ignoreClassList);
|
|
|
|
|
2019-03-03 20:32:27 +01:00
|
|
|
switch ($config->get('system', 'logger_config', 'stream')) {
|
2018-12-30 21:42:56 +01:00
|
|
|
|
2019-03-03 20:32:27 +01:00
|
|
|
case 'monolog':
|
2019-03-09 14:36:32 +01:00
|
|
|
$loggerTimeZone = new \DateTimeZone('UTC');
|
|
|
|
Monolog\Logger::setTimezone($loggerTimeZone);
|
|
|
|
|
2019-07-21 20:24:16 +02:00
|
|
|
$logger = new Monolog\Logger(self::DEV_CHANNEL);
|
2019-03-03 20:32:27 +01:00
|
|
|
$logger->pushProcessor(new Monolog\Processor\PsrLogMessageProcessor());
|
|
|
|
$logger->pushProcessor(new Monolog\Processor\ProcessIdProcessor());
|
|
|
|
$logger->pushProcessor(new Monolog\Processor\UidProcessor());
|
2019-03-04 08:42:08 +01:00
|
|
|
$logger->pushProcessor(new IntrospectionProcessor($introspection, LogLevel::DEBUG));
|
2019-03-03 20:32:27 +01:00
|
|
|
|
2019-03-04 08:42:08 +01:00
|
|
|
$logger->pushHandler(new DevelopHandler($developerIp));
|
2019-03-03 20:32:27 +01:00
|
|
|
|
|
|
|
static::addStreamHandler($logger, $stream, LogLevel::DEBUG);
|
|
|
|
break;
|
2018-12-30 21:42:56 +01:00
|
|
|
|
2019-03-03 20:32:27 +01:00
|
|
|
case 'syslog':
|
2019-07-21 20:24:16 +02:00
|
|
|
$logger = new SyslogLogger(self::DEV_CHANNEL, $introspection, LogLevel::DEBUG);
|
2019-03-03 20:32:27 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'stream':
|
|
|
|
default:
|
2019-10-22 22:47:37 +02:00
|
|
|
$logger = new StreamLogger(self::DEV_CHANNEL, $stream, $introspection, $fileSystem, LogLevel::DEBUG);
|
2019-03-03 20:32:27 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$profiling = $config->get('system', 'profiling', false);
|
|
|
|
|
|
|
|
// In case profiling is enabled, wrap the ProfilerLogger around the current logger
|
|
|
|
if (isset($profiling) && $profiling !== false) {
|
|
|
|
$logger = new ProfilerLogger($logger, $profiler);
|
|
|
|
}
|
2019-02-11 21:13:53 +01:00
|
|
|
|
2018-12-30 21:42:56 +01:00
|
|
|
return $logger;
|
|
|
|
}
|
|
|
|
|
2019-02-11 21:13:53 +01:00
|
|
|
/**
|
|
|
|
* Mapping a legacy level to the PSR-3 compliant levels
|
2019-05-26 14:33:09 +02:00
|
|
|
*
|
2019-02-11 21:13:53 +01:00
|
|
|
* @see https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md#5-psrlogloglevel
|
|
|
|
*
|
|
|
|
* @param string $level the level to be mapped
|
|
|
|
*
|
|
|
|
* @return string the PSR-3 compliant level
|
|
|
|
*/
|
|
|
|
private static function mapLegacyConfigDebugLevel($level)
|
|
|
|
{
|
|
|
|
switch ($level) {
|
|
|
|
// legacy WARNING
|
|
|
|
case "0":
|
|
|
|
return LogLevel::ERROR;
|
|
|
|
// legacy INFO
|
|
|
|
case "1":
|
|
|
|
return LogLevel::WARNING;
|
|
|
|
// legacy TRACE
|
|
|
|
case "2":
|
|
|
|
return LogLevel::NOTICE;
|
|
|
|
// legacy DEBUG
|
|
|
|
case "3":
|
|
|
|
return LogLevel::INFO;
|
|
|
|
// legacy DATA
|
2019-10-21 21:53:55 +02:00
|
|
|
case "4":
|
2019-10-22 22:48:54 +02:00
|
|
|
// legacy ALL
|
|
|
|
case "5":
|
2019-10-22 22:47:37 +02:00
|
|
|
return LogLevel::DEBUG;
|
2019-02-11 21:13:53 +01:00
|
|
|
// default if nothing set
|
|
|
|
default:
|
|
|
|
return $level;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-30 21:42:56 +01:00
|
|
|
/**
|
|
|
|
* Adding a handler to a given logger instance
|
|
|
|
*
|
2019-05-26 14:33:09 +02:00
|
|
|
* @param LoggerInterface $logger The logger instance
|
|
|
|
* @param mixed $stream The stream which handles the logger output
|
|
|
|
* @param string $level The level, for which this handler at least should handle logging
|
2018-12-30 21:42:56 +01:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*
|
|
|
|
* @throws \Exception in case of general failures
|
|
|
|
*/
|
|
|
|
public static function addStreamHandler($logger, $stream, $level = LogLevel::NOTICE)
|
|
|
|
{
|
|
|
|
if ($logger instanceof Monolog\Logger) {
|
2019-01-07 21:54:40 +01:00
|
|
|
$loglevel = Monolog\Logger::toMonologLevel($level);
|
|
|
|
|
|
|
|
// fallback to notice if an invalid loglevel is set
|
|
|
|
if (!is_int($loglevel)) {
|
|
|
|
$loglevel = LogLevel::NOTICE;
|
|
|
|
}
|
2019-02-24 13:40:54 +01:00
|
|
|
|
2019-01-07 21:54:40 +01:00
|
|
|
$fileHandler = new Monolog\Handler\StreamHandler($stream, $loglevel);
|
2018-12-30 21:42:56 +01:00
|
|
|
|
|
|
|
$formatter = new Monolog\Formatter\LineFormatter("%datetime% %channel% [%level_name%]: %message% %context% %extra%\n");
|
|
|
|
$fileHandler->setFormatter($formatter);
|
|
|
|
|
|
|
|
$logger->pushHandler($fileHandler);
|
|
|
|
}
|
|
|
|
}
|
2019-02-17 21:12:12 +01:00
|
|
|
|
|
|
|
public static function addVoidHandler($logger)
|
|
|
|
{
|
|
|
|
if ($logger instanceof Monolog\Logger) {
|
|
|
|
$logger->pushHandler(new Monolog\Handler\NullHandler());
|
|
|
|
}
|
|
|
|
}
|
2018-12-30 21:42:56 +01:00
|
|
|
}
|