Passed
Push — develop ( ba5262...9c69c6 )
by nguereza
04:59
created

FileHandler::__construct()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 5
nc 2
nop 1
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Platine Logger
5
 *
6
 * Platine Logger is the implementation of PSR 3
7
 *
8
 * This content is released under the MIT License (MIT)
9
 *
10
 * Copyright (c) 2020 Platine Logger
11
 *
12
 * Permission is hereby granted, free of charge, to any person obtaining a copy
13
 * of this software and associated documentation files (the "Software"), to deal
14
 * in the Software without restriction, including without limitation the rights
15
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
16
 * copies of the Software, and to permit persons to whom the Software is
17
 * furnished to do so, subject to the following conditions:
18
 *
19
 * The above copyright notice and this permission notice shall be included in all
20
 * copies or substantial portions of the Software.
21
 *
22
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28
 * SOFTWARE.
29
 */
30
31
/**
32
 *  @file FileHandler.php
33
 *
34
 *  The File Logger handler class
35
 *
36
 *  @package    Platine\Logger
37
 *  @author Platine Developers Team
38
 *  @copyright  Copyright (c) 2020
39
 *  @license    http://opensource.org/licenses/MIT  MIT License
40
 *  @link   http://www.iacademy.cf
41
 *  @version 1.0.0
42
 *  @filesource
43
 */
44
45
declare(strict_types=1);
46
47
namespace Platine\Logger;
48
49
use Exception;
50
use RuntimeException;
51
use Throwable;
52
53
class FileHandler extends AbstractLoggerHandler
54
{
55
56
    /**
57
     * The log directory path
58
     * @var string
59
     */
60
    protected string $logPath;
61
62
    /**
63
     * Create new File Handler
64
     * {@inheritdoc}
65
     */
66
    public function __construct(
67
        array $config = []
68
    ) {
69
        parent::__construct($config);
70
71
        $logPath = sys_get_temp_dir();
72
        if (isset($config['log_path'])) {
73
            $logPath = $config['log_path'];
74
        }
75
        $this->logPath = rtrim($logPath, '/\\') . DIRECTORY_SEPARATOR;
76
    }
77
78
    /**
79
     * Set log directory path
80
     * @param string $logPath
81
     *
82
     * @return self
83
     */
84
    public function setLogPath(string $logPath): self
85
    {
86
        $this->logPath = rtrim($logPath, '/\\') . DIRECTORY_SEPARATOR;
87
88
        return $this;
89
    }
90
91
    /**
92
     * {@inheritdoc}
93
     */
94
    public function log($level, string $message, array $context = []): void
95
    {
96
        //Check the log directory
97
        $this->checkLogDir();
98
99
        $logFilePath = $this->logPath . 'logs-' . date('Y-m-d') . '.log';
100
        $logLine = $this->format($level, $message, $context);
101
102
        try {
103
            $handler = fopen($logFilePath, 'a+');
104
            // exclusive lock, will get released when the file is closed
105
            flock($handler, LOCK_EX);
106
            fwrite($handler, $logLine);
107
            fclose($handler);
108
        } catch (Throwable $e) {
109
            throw new RuntimeException(sprintf(
110
                'Could not open log file [%s] for writing to channel [%s].',
111
                $logFilePath,
112
                $this->channel
113
            ));
114
        }
115
116
        // Log to stdout if option set to do so.
117
        if ($this->stdout) {
118
            print($logLine);
119
        }
120
    }
121
122
    /**
123
     * Check if log directory is valid (exists and writable)
124
     * @return void
125
     */
126
    protected function checkLogDir(): void
127
    {
128
        if (!is_dir($this->logPath) || !is_writable($this->logPath)) {
129
            throw new Exception(sprintf(
130
                'The log directory [%s] does not exist or is not writable',
131
                $this->logPath
132
            ));
133
        }
134
    }
135
}
136