Processor
2 weeks ago
WC
2 weeks ago
WP
2 weeks ago
deprecated
2 weeks ago
BasicLoggerFactory.php
2 weeks ago
LoggerFacade.php
2 weeks ago
LoggerFactory.php
2 weeks ago
Settings.php
2 weeks ago
SimpleLoggerFactory.php
2 weeks ago
WPDeskLoggerFactory.php
2 weeks ago
SimpleLoggerFactory.php
75 lines
| 1 | <?php |
| 2 | |
| 3 | declare (strict_types=1); |
| 4 | namespace FSVendor\WPDesk\Logger; |
| 5 | |
| 6 | use FSVendor\Monolog\Handler\FingersCrossedHandler; |
| 7 | use FSVendor\Monolog\Handler\HandlerInterface; |
| 8 | use FSVendor\Monolog\Logger; |
| 9 | use FSVendor\Monolog\Handler\ErrorLogHandler; |
| 10 | use FSVendor\Monolog\Processor\PsrLogMessageProcessor; |
| 11 | use FSVendor\Monolog\Processor\UidProcessor; |
| 12 | use FSVendor\Psr\Log\LogLevel; |
| 13 | use FSVendor\WPDesk\Logger\WC\WooCommerceHandler; |
| 14 | final class SimpleLoggerFactory implements LoggerFactory |
| 15 | { |
| 16 | /** |
| 17 | * @var array{ |
| 18 | * level?: string, |
| 19 | * action_level?: string|null, |
| 20 | * } |
| 21 | */ |
| 22 | private $options; |
| 23 | /** @var string */ |
| 24 | private $channel; |
| 25 | /** @var Logger */ |
| 26 | private $logger; |
| 27 | /** |
| 28 | * Valid options are: |
| 29 | * * level (default debug): Default logging level |
| 30 | * * action_level: If value is set, it will act as the minimum level at which logger will be triggered using FingersCrossedHandler {@see https://seldaek.github.io/monolog/doc/02-handlers-formatters-processors.html#wrappers--special-handlers} |
| 31 | */ |
| 32 | public function __construct(string $channel, $options = null) |
| 33 | { |
| 34 | $this->channel = $channel; |
| 35 | $options = $options ?? new Settings(); |
| 36 | if ($options instanceof Settings) { |
| 37 | $options = $options->to_array(); |
| 38 | } |
| 39 | $this->options = array_merge(['level' => LogLevel::DEBUG, 'action_level' => null], $options); |
| 40 | } |
| 41 | public function getLogger($name = null): Logger |
| 42 | { |
| 43 | if ($this->logger) { |
| 44 | return $this->logger; |
| 45 | } |
| 46 | $this->logger = new Logger($this->channel, [], [new PsrLogMessageProcessor(null, \true), new UidProcessor()], wp_timezone()); |
| 47 | if (\function_exists('wc_get_logger') && \did_action('woocommerce_init')) { |
| 48 | $this->set_wc_handler(); |
| 49 | } else { |
| 50 | \add_action('woocommerce_init', [$this, 'set_wc_handler']); |
| 51 | } |
| 52 | // In the worst-case scenario, when WC logs are not available (yet, or at all), |
| 53 | // fallback to WP logs, but only when enabled. |
| 54 | if (empty($this->logger->getHandlers()) && defined('WP_DEBUG_LOG') && \WP_DEBUG_LOG) { |
| 55 | $this->set_handler($this->logger, new ErrorLogHandler(ErrorLogHandler::OPERATING_SYSTEM, $this->options['level'])); |
| 56 | } |
| 57 | return $this->logger; |
| 58 | } |
| 59 | /** |
| 60 | * @internal |
| 61 | */ |
| 62 | public function set_wc_handler(): void |
| 63 | { |
| 64 | $this->set_handler($this->logger, new WooCommerceHandler(\wc_get_logger(), $this->channel)); |
| 65 | } |
| 66 | private function set_handler(Logger $logger, HandlerInterface $handler): void |
| 67 | { |
| 68 | if (is_string($this->options['action_level'])) { |
| 69 | $handler = new FingersCrossedHandler($handler, $this->options['action_level']); |
| 70 | } |
| 71 | // Purposefully replace all existing handlers. |
| 72 | $logger->setHandlers([$handler]); |
| 73 | } |
| 74 | } |
| 75 |