1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\Monolog\Handler;
use Monolog\Handler\AbstractProcessingHandler;
use Monolog\LogRecord;
use Piwik\Log\Logger;
use Piwik\Common;
use Piwik\Notification;
use Piwik\Notification\Manager;
use Zend_Session_Exception;
/**
* Writes log messages into HTML notification box.
*/
class WebNotificationHandler extends AbstractProcessingHandler
{
public const MAX_NOTIFICATION_MESSAGE_LENGTH = 512;
public function isHandling(LogRecord $record): bool
{
if (!empty($record->context['ignoreInScreenWriter'])) {
return false;
}
return parent::isHandling($record);
}
protected function write(LogRecord $record): void
{
switch ($record->level->value) {
case Logger::EMERGENCY:
case Logger::ALERT:
case Logger::CRITICAL:
case Logger::ERROR:
$context = Notification::CONTEXT_ERROR;
break;
case Logger::WARNING:
$context = Notification::CONTEXT_WARNING;
break;
default:
$context = Notification::CONTEXT_INFO;
break;
}
$recordMessage = $record->message;
$recordMessage = str_replace(PIWIK_INCLUDE_PATH, '', $recordMessage);
$recordMessage = substr($recordMessage, 0, self::MAX_NOTIFICATION_MESSAGE_LENGTH);
$message = $record->level->getName() . ': ' . htmlentities($recordMessage, ENT_COMPAT | ENT_HTML401, 'UTF-8');
$message .= $this->getLiteDebuggingInfo();
$notification = new Notification($message);
$notification->context = $context;
$notification->flags = 0;
try {
Manager::notify(Common::getRandomString(), $notification);
} catch (Zend_Session_Exception $e) {
// Can happen if this handler is enabled in CLI
// Silently ignore the error.
}
}
private function getLiteDebuggingInfo()
{
$info = [
'Module' => Common::getRequestVar('module', false),
'Action' => Common::getRequestVar('action', false),
'Method' => Common::getRequestVar('method', false),
'Trigger' => Common::getRequestVar('trigger', false),
'In CLI mode' => Common::isPhpCliMode() ? 'true' : 'false',
];
$parts = [];
foreach ($info as $title => $value) {
if (empty($value)) {
continue;
}
$parts[] = "$title: $value";
}
if (empty($parts)) {
return "";
}
return "\n(" . implode(', ', $parts) . ")";
}
}
|