HEX
Server: LiteSpeed
System: Linux d8 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: wbwebdes (3015)
PHP: 8.1.31
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/wbwebdes/domains/files.wb-cloud.nl/public_html/apps/logreader/lib/Log/Console.php
<?php

declare(strict_types=1);
/**
 * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */

namespace OCA\LogReader\Log;

use OC\Log\LogDetails;
use OC\SystemConfig;
use OCA\LogReader\Command\Tail;

/**
 * Utility to write log messages to the console as they are emitted
 */
class Console extends LogDetails {
	private int $level;
	private int $terminalWidth;
	private Formatter $formatter;

	public function __construct(Formatter $formatter, SystemConfig $config, string $level, int $terminalWidth) {
		parent::__construct($config);
		$this->formatter = $formatter;
		$this->level = self::parseLogLevel($level);
		$this->terminalWidth = $terminalWidth;
	}

	public function log(int $level, string $app, array $entry) {
		if ($level >= $this->level) {
			$messageWidth = $this->terminalWidth - 8 - 18 - 6;

			$entry = $this->logDetails($app, $entry, $level);

			$lines = explode("\n", $this->formatter->formatMessage($entry, $messageWidth));
			$lines[0] = str_pad(Tail::LEVELS[$level], 8) . ' ' .
				str_pad(wordwrap($app, 18), 18) . ' ' .
				str_pad($lines[0], $messageWidth);

			for ($i = 1; $i < count($lines); $i++) {
				$lines[$i] = str_repeat(' ', 8 + 18 + 2) . $lines[$i];
			}

			foreach ($lines as $line) {
				fwrite(STDERR, $line . "\n");
			}
			fwrite(STDERR, "\n");
		}
	}

	private static function parseLogLevel(string $level): int {
		if (is_numeric($level)) {
			return (int)$level;
		}

		switch (strtoupper($level)) {
			case 'DEBUG':
				return 0;
			case 'INFO':
				return 1;
			case 'WARN':
				return 2;
			case 'ERROR':
				return 3;
			case 'FATAL':
				return 4;
			default:
				throw new \Exception("Unknown log level $level");
		}
	}
}