| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/piwik/plugins/Monolog/Handler/ |
Upload File : |
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\Monolog\Handler;
use Monolog\Handler\AbstractProcessingHandler;
use Monolog\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 function isHandling(array $record)
{
if (!empty($record['context']['ignoreInScreenWriter'])) {
return false;
}
return parent::isHandling($record);
}
protected function write(array $record)
{
switch ($record['level']) {
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;
}
$message = $record['level_name'] . ': ' . htmlentities($record['message'], 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) . ")";
}
}