1 | <?php |
||
11 | class Tail extends Command |
||
12 | { |
||
13 | /** |
||
14 | * The console command name. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $name = 'tail'; |
||
19 | |||
20 | /** |
||
21 | * The console command description. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $description = 'tail command'; |
||
26 | |||
27 | /** |
||
28 | * $files. |
||
29 | * |
||
30 | * @var \Illuminate\Filesystem\Filesystem |
||
31 | */ |
||
32 | protected $files; |
||
33 | |||
34 | /** |
||
35 | * __construct. |
||
36 | * |
||
37 | * @param \Illuminate\Filesystem\Filesystem $files |
||
38 | */ |
||
39 | 2 | public function __construct(Filesystem $files) |
|
45 | |||
46 | /** |
||
47 | * Handle the command. |
||
48 | * |
||
49 | * @throws \InvalidArgumentException |
||
50 | */ |
||
51 | 2 | public function handle() |
|
52 | { |
||
53 | 2 | $path = $this->argument('path'); |
|
54 | 2 | $lines = (int) $this->option('lines'); |
|
55 | |||
56 | 2 | if (empty($path) === false) { |
|
57 | 1 | $root = function_exists('base_path') === true ? base_path() : getcwd(); |
|
58 | 1 | $file = rtrim($root, '/').'/'.$path; |
|
59 | } else { |
||
60 | 1 | $path = function_exists('storage_path') === true ? storage_path() : getcwd(); |
|
61 | 1 | $path = rtrim($path, '/').'/'; |
|
62 | |||
63 | 1 | $file = (new Collection($this->files->glob($path.'logs/*.log'))) |
|
64 | 1 | ->map(function ($file) { |
|
65 | 1 | return is_file($file) === true ? $file : false; |
|
66 | })->sortByDesc(function ($file) { |
||
67 | 1 | return filectime($file); |
|
68 | 1 | })->first(); |
|
69 | } |
||
70 | |||
71 | 2 | $this->readLine($file, $lines); |
|
72 | 2 | } |
|
73 | |||
74 | /** |
||
75 | * readLine. |
||
76 | * |
||
77 | * @param string $file |
||
78 | * @param int $lines |
||
79 | * @return string |
||
80 | */ |
||
81 | 2 | protected function readLine($file, $lines = 50) |
|
82 | { |
||
83 | 2 | if (is_file($file) === false) { |
|
84 | $this->error('tail: cannot open ‘'.$file.'’ for reading: No such file or directory'); |
||
85 | |||
86 | return; |
||
87 | } |
||
88 | |||
89 | 2 | $fp = fopen($file, 'r'); |
|
90 | 2 | $i = 1; |
|
91 | 2 | $result = []; |
|
92 | 2 | while (! feof($fp)) { |
|
93 | 2 | if ($i > $lines) { |
|
94 | 2 | break; |
|
95 | } |
||
96 | 2 | $content = fgets($fp); |
|
97 | 2 | $result[] = $content; |
|
98 | 2 | $i++; |
|
99 | } |
||
100 | 2 | fclose($fp); |
|
101 | |||
102 | 2 | $this->line(implode('', $result)); |
|
103 | 2 | } |
|
104 | |||
105 | /** |
||
106 | * Get the console command arguments. |
||
107 | * |
||
108 | * @return array |
||
109 | */ |
||
110 | 2 | protected function getArguments() |
|
116 | |||
117 | /** |
||
118 | * Get the console command options. |
||
119 | * |
||
120 | * @return array |
||
121 | */ |
||
122 | 2 | protected function getOptions() |
|
128 | } |
||
129 |
Let’s assume that you have a directory layout like this:
and let’s assume the following content of
Bar.php
:If both files
OtherDir/Foo.php
andSomeDir/Foo.php
are loaded in the same runtime, you will see a PHP error such as the following:PHP Fatal error: Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php
However, as
OtherDir/Foo.php
does not necessarily have to be loaded and the error is only triggered if it is loaded beforeOtherDir/Bar.php
, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias: