Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@..
Decoded Output download
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bridge\Monolog\Handler;
use Monolog\Handler\AbstractHandler;
use Monolog\Level;
use Monolog\Logger;
use Monolog\LogRecord;
use Symfony\Component\Notifier\Notification\Notification;
use Symfony\Component\Notifier\NotifierInterface;
/**
* Uses Notifier as a log handler.
*
* @author Fabien Potencier <[email protected]>
*/
final class NotifierHandler extends AbstractHandler
{
public function __construct(
private NotifierInterface $notifier,
string|int|Level $level = Level::Error,
bool $bubble = true,
) {
parent::__construct(Logger::toMonologLevel($level)->isLowerThan(Level::Error) ? Level::Error : $level, $bubble);
}
public function handle(LogRecord $record): bool
{
if (!$this->isHandling($record)) {
return false;
}
$this->notify([$record]);
return !$this->bubble;
}
public function handleBatch(array $records): void
{
if ($records = array_filter($records, $this->isHandling(...))) {
$this->notify($records);
}
}
private function notify(array $records): void
{
$record = $this->getHighestRecord($records);
if (($record->context['exception'] ?? null) instanceof \Throwable) {
$notification = Notification::fromThrowable($record->context['exception']);
} else {
$notification = new Notification($record->message);
}
$notification->importanceFromLogLevelName($record->level->getName());
$this->notifier->send($notification, ...$this->notifier->getAdminRecipients());
}
private function getHighestRecord(array $records): array|LogRecord
{
$highestRecord = null;
foreach ($records as $record) {
if (null === $highestRecord || $highestRecord->level->isLowerThan($record->level)) {
$highestRecord = $record;
}
}
return $highestRecord;
}
}
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Bridge\Monolog\Handler;
use Monolog\Handler\AbstractHandler;
use Monolog\Level;
use Monolog\Logger;
use Monolog\LogRecord;
use Symfony\Component\Notifier\Notification\Notification;
use Symfony\Component\Notifier\NotifierInterface;
/**
* Uses Notifier as a log handler.
*
* @author Fabien Potencier <[email protected]>
*/
final class NotifierHandler extends AbstractHandler
{
public function __construct(
private NotifierInterface $notifier,
string|int|Level $level = Level::Error,
bool $bubble = true,
) {
parent::__construct(Logger::toMonologLevel($level)->isLowerThan(Level::Error) ? Level::Error : $level, $bubble);
}
public function handle(LogRecord $record): bool
{
if (!$this->isHandling($record)) {
return false;
}
$this->notify([$record]);
return !$this->bubble;
}
public function handleBatch(array $records): void
{
if ($records = array_filter($records, $this->isHandling(...))) {
$this->notify($records);
}
}
private function notify(array $records): void
{
$record = $this->getHighestRecord($records);
if (($record->context['exception'] ?? null) instanceof \Throwable) {
$notification = Notification::fromThrowable($record->context['exception']);
} else {
$notification = new Notification($record->message);
}
$notification->importanceFromLogLevelName($record->level->getName());
$this->notifier->send($notification, ...$this->notifier->getAdminRecipients());
}
private function getHighestRecord(array $records): array|LogRecord
{
$highestRecord = null;
foreach ($records as $record) {
if (null === $highestRecord || $highestRecord->level->isLowerThan($record->level)) {
$highestRecord = $record;
}
}
return $highestRecord;
}
}
Function Calls
None |
Stats
MD5 | bd6f3b712f5c49fc38a65ef7cc94f6fc |
Eval Count | 0 |
Decode Time | 89 ms |