phossa2/logger

View on GitHub
src/Logger/Handler/SyslogHandler.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Phossa Project
 *
 * PHP version 5.4
 *
 * @category  Library
 * @package   Phossa2\Logger
 * @copyright Copyright (c) 2016 phossa.com
 * @license   http://mit-license.org/ MIT License
 * @link      http://www.phossa.com/
 */
/*# declare(strict_types=1); */

namespace Phossa2\Logger\Handler;

use Phossa2\Logger\LogLevel;
use Phossa2\Logger\Message\Message;
use Phossa2\Logger\Entry\LogEntryInterface;
use Phossa2\Logger\Exception\LogicException;
use Phossa2\Logger\Formatter\FormatterInterface;

/**
 * SyslogHandler
 *
 * Log to syslog
 *
 * @package Phossa2\Logger
 * @author  Hong Zhang <phossa@126.com>
 * @see     HandlerAbstract
 * @version 2.0.0
 * @since   2.0.0 added
 * @since   2.0.1 updated constructor
 */
class SyslogHandler extends HandlerAbstract
{
    /**
     * syslog facility
     *
     * @var    int
     * @access protected
     */
    protected $facility;

    /**
     * syslog options
     *
     * @var    int
     * @access protected
     */
    protected $logopts;

    /**
     * syslog priorities
     *
     * @var    array
     * @access protected
     */
    protected $priorities = [
        LogLevel::DEBUG     => LOG_DEBUG,
        LogLevel::INFO      => LOG_INFO,
        LogLevel::NOTICE    => LOG_NOTICE,
        LogLevel::WARNING   => LOG_WARNING,
        LogLevel::ERROR     => LOG_ERR,
        LogLevel::CRITICAL  => LOG_CRIT,
        LogLevel::ALERT     => LOG_ALERT,
        LogLevel::EMERGENCY => LOG_EMERG,
    ];

    /**
     * @param  int $facility
     * @param  int $logOpts
     * @param  FormatterInterface $formatter
     * @param  bool $stopPropagation
     * @access public
     * @since  2.0.1 removed level param
     */
    public function __construct(
        /*# int */ $facility = LOG_USER,
        /*# int */ $logOpts = LOG_PID,
        FormatterInterface $formatter = null,
        /*# bool */ $stopPropagation = false
    ) {
        $this->facility = $facility;
        $this->logopts  = $logOpts;
        parent::__construct($formatter, $stopPropagation);
    }

    /**
     * {@inheritDoc}
     */
    protected function write(LogEntryInterface $logEntry)
    {
        $ident = $logEntry->getChannel();

        if (!openlog($ident, $this->logopts, $this->facility)) {
            throw new LogicException(
                Message::get(Message::LOG_SYSLOG_FAIL, $ident, $this->facility),
                Message::LOG_SYSLOG_FAIL
            );
        }

        syslog(
            $this->priorities[$logEntry->getLevel()],
            $logEntry->getFormatted()
        );
    }

    /**
     * {@inheritDoc}
     */
    protected function close()
    {
        closelog();
    }
}