1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Helldar\LaravelLangPublisher\Support; |
4
|
|
|
|
5
|
|
|
use Helldar\LaravelLangPublisher\Concerns\Contains; |
6
|
|
|
use Helldar\LaravelLangPublisher\Concerns\Logger; |
7
|
|
|
use Helldar\LaravelLangPublisher\Facades\Config as ConfigFacade; |
8
|
|
|
|
9
|
|
|
final class Path |
10
|
|
|
{ |
11
|
|
|
use Contains; |
12
|
|
|
use Logger; |
|
|
|
|
13
|
|
|
|
14
|
43 |
|
public function source(string $package, string $locale): string |
15
|
|
|
{ |
16
|
43 |
|
$this->log('Getting the path to the source files of the localization:', $package, $locale); |
17
|
|
|
|
18
|
43 |
|
if ($this->isEnglish($locale)) { |
19
|
43 |
|
return $this->cleanable($this->getBasePath(), $package, $this->getSourcePath()); |
20
|
|
|
} |
21
|
|
|
|
22
|
14 |
|
return $this->locales($package, $locale); |
23
|
|
|
} |
24
|
|
|
|
25
|
43 |
|
public function sourceFull(string $package, string $locale, string $filename): string |
26
|
|
|
{ |
27
|
43 |
|
$this->log('Getting the path to the source file of the localization:', $package, $locale, $filename); |
28
|
|
|
|
29
|
43 |
|
$path = $this->source($package, $locale); |
30
|
|
|
|
31
|
43 |
|
return $this->cleanable($path, $filename); |
32
|
|
|
} |
33
|
43 |
|
|
34
|
|
|
public function target(string $locale, bool $is_json = false): string |
35
|
|
|
{ |
36
|
30 |
|
$this->log('Getting the path to the target files of the localization:', $locale, $is_json); |
37
|
|
|
|
38
|
30 |
|
$path = $this->getTargetPath(); |
39
|
|
|
|
40
|
30 |
|
$suffix = $is_json ? '' : '/' . $locale; |
41
|
|
|
|
42
|
30 |
|
return $this->clean($path) . $suffix; |
43
|
|
|
} |
44
|
30 |
|
|
45
|
|
|
public function targetFull(string $locale, ?string $filename): string |
46
|
|
|
{ |
47
|
36 |
|
$this->log('Getting the full path to the target files of the localization:', $locale, $filename); |
48
|
|
|
|
49
|
36 |
|
$is_json = ! empty($filename) && $this->isJson($filename); |
50
|
|
|
|
51
|
36 |
|
$path = $this->target($locale, $is_json); |
52
|
|
|
|
53
|
|
|
return $path . '/' . $filename; |
54
|
28 |
|
} |
55
|
|
|
|
56
|
28 |
|
public function locales(string $package, string $locale = null): string |
57
|
|
|
{ |
58
|
28 |
|
$this->log('Getting the path to the source translation files for', $package, $locale); |
59
|
|
|
|
60
|
28 |
|
return $this->cleanable($this->getBasePath(), $package, $this->getLocalesPath(), $locale); |
61
|
|
|
} |
62
|
|
|
|
63
|
28 |
|
public function directory(string $path): string |
64
|
|
|
{ |
65
|
28 |
|
$this->log('Getting the directory name from file path:', $path); |
66
|
|
|
|
67
|
28 |
|
$path = pathinfo($path, PATHINFO_DIRNAME); |
68
|
|
|
|
69
|
28 |
|
return $this->clean($path); |
|
|
|
|
70
|
|
|
} |
71
|
|
|
|
72
|
|
|
public function filename(string $path): string |
73
|
|
|
{ |
74
|
|
|
$this->log('Getting file name without extension and path:', $path); |
75
|
|
|
|
76
|
|
|
$path = pathinfo($path, PATHINFO_FILENAME); |
77
|
|
|
|
78
|
|
|
return $this->clean($path); |
|
|
|
|
79
|
|
|
} |
80
|
|
|
|
81
|
28 |
|
public function basename(string $path): string |
82
|
|
|
{ |
83
|
28 |
|
$this->log('Getting file basename without extension and path:', $path); |
84
|
|
|
|
85
|
28 |
|
$path = pathinfo($path, PATHINFO_BASENAME); |
86
|
|
|
|
87
|
28 |
|
return $this->clean($path); |
|
|
|
|
88
|
|
|
} |
89
|
|
|
|
90
|
43 |
|
public function extension(string $path): string |
91
|
|
|
{ |
92
|
43 |
|
$this->log('Getting file extension from path:', $path); |
93
|
|
|
|
94
|
43 |
|
$path = pathinfo($path, PATHINFO_EXTENSION); |
95
|
43 |
|
|
96
|
|
|
return $this->clean($path); |
|
|
|
|
97
|
43 |
|
} |
98
|
|
|
|
99
|
|
|
public function clean(string $path = null, bool $both = false): ?string |
100
|
36 |
|
{ |
101
|
|
|
$this->log('Clearing the path from the trailing character:', $path); |
102
|
|
|
|
103
|
43 |
|
if (! empty($path)) { |
104
|
|
|
$chars = '\\/'; |
105
|
43 |
|
|
106
|
|
|
return $both ? trim($path, $chars) : rtrim($path, $chars); |
107
|
43 |
|
} |
108
|
43 |
|
|
109
|
|
|
return $path; |
110
|
|
|
} |
111
|
43 |
|
|
112
|
|
|
protected function cleanable(...$values): string |
113
|
|
|
{ |
114
|
43 |
|
$this->log('Cleaning values to compile a path:', $values); |
115
|
|
|
|
116
|
43 |
|
foreach ($values as &$value) { |
117
|
|
|
$value = $this->clean($value); |
118
|
|
|
} |
119
|
43 |
|
|
120
|
|
|
return implode('/', $values); |
121
|
43 |
|
} |
122
|
|
|
|
123
|
|
|
protected function getBasePath(): string |
124
|
36 |
|
{ |
125
|
|
|
return ConfigFacade::basePath(); |
126
|
36 |
|
} |
127
|
|
|
|
128
|
|
|
protected function getSourcePath(): string |
129
|
43 |
|
{ |
130
|
|
|
return ConfigFacade::sourcePath(); |
131
|
43 |
|
} |
132
|
|
|
|
133
|
|
|
protected function getLocalesPath(): string |
134
|
|
|
{ |
135
|
|
|
return ConfigFacade::localesPath(); |
136
|
|
|
} |
137
|
|
|
|
138
|
|
|
protected function getTargetPath(): string |
139
|
|
|
{ |
140
|
|
|
return ConfigFacade::resourcesPath(); |
141
|
|
|
} |
142
|
|
|
} |
143
|
|
|
|