-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocator.php
More file actions
403 lines (331 loc) · 12.4 KB
/
Locator.php
File metadata and controls
403 lines (331 loc) · 12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<?php
/**
* This file is part of Blitz PHP framework.
*
* (c) 2022 Dimitri Sitchet Tomkeu <devcode.dst@gmail.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace BlitzPHP\Autoloader;
use BlitzPHP\Contracts\Autoloader\LocatorInterface;
/**
* Fourni un chargeur pour les fichiers qui ne sont pas des classes dans un namespace.
* Fonctionne avec les Helpers, Views, etc.
*
* @credit <a href="https://codeigniter.com">CodeIgniter4 - CodeIgniter\Autoloader\FileLocator</a>
*/
class Locator implements LocatorInterface
{
/**
* Autoloader a utiliser.
*/
protected Autoloader $autoloader;
/**
* Liste des noms de classe qui n'existent pas.
*
* @var list<class-string>
*/
private array $invalidClassnames = [];
public function __construct(Autoloader $autoloader)
{
$this->setAutoloader($autoloader);
}
public function setAutoloader(Autoloader $autoloader): self
{
$this->autoloader = $autoloader;
return $this;
}
/**
* Tente de localiser un fichier en examinant le nom d'un espace de noms
* et en parcourant les fichiers d'espace de noms PSR-4 que nous connaissons.
*
* @param non-empty-string $file Le fichier d'espace de noms à localiser
* @param non-empty-string|null $folder Le dossier dans l'espace de noms où nous devons rechercher le fichier.
* @param string $ext L'extension de fichier que le fichier doit avoir.
*
* @return false|non-empty-string Le chemin d'accès au fichier, ou false s'il n'est pas trouvé.
*/
public function locateFile(string $file, ?string $folder = null, string $ext = 'php')
{
$file = $this->ensureExt($file, $ext);
// Efface le nom du dossier s'il se trouve au début du nom de fichier
if ($folder !== null && str_starts_with($file, $folder)) {
$file = substr($file, strlen($folder . '/'));
}
// N'est-il pas namespaced ? Essayez le dossier d'application.
if (! str_contains($file, '\\')) {
return $this->legacyLocate($file, $folder);
}
// Standardize slashes to handle nested directories.
$file = strtr($file, '/', '\\');
$file = ltrim($file, '\\');
$segments = explode('\\', $file);
// Le premier segment sera vide si une barre oblique commence le nom du fichier.
if ($segments[0] === '') {
unset($segments[0]);
}
$paths = [];
$filename = '';
// Les espaces de noms sont toujours accompagnés de tableaux de chemins
$namespaces = $this->autoloader->getNamespace();
$keys = array_keys($namespaces);
sort($keys);
foreach ($keys as $namespace) {
if (substr($file, 0, strlen($namespace) + 1) === $namespace . '\\') {
$fileWithoutNamespace = substr($file, strlen($namespace));
// Il peut y avoir des sous-espaces de noms du même fournisseur,
// donc écrasez-les avec des espaces de noms trouvés plus tard.
$paths = $namespaces[$namespace];
$filename = ltrim(str_replace('\\', '/', $fileWithoutNamespace), '/');
}
}
// si aucun espace de noms ne correspond, quittez
if ($paths === []) {
return false;
}
// Vérifier chaque chemin dans l'espace de noms
foreach ($paths as $path) {
// Assurez-vous que la barre oblique finale
$path = rtrim($path, '/') . '/';
// Si nous avons un nom de dossier, la fonction appelante s'attend à ce que ce fichier se trouve
// dans ce dossier, comme "Views" ou "Librairies".
if ($folder !== null && ! str_contains($path . $filename, '/' . $folder . '/')) {
$path .= trim($folder, '/') . '/';
}
$path .= $filename;
if (is_file($path)) {
return realpath($path) ?: $path;
}
}
return false;
}
/**
* Scane les namespace definis, retourne une liste de tous les fichiers
* contenant la sous partie specifiee par $path.
*
* @return list<string> Liste des fichiers du chemins
*/
public function listFiles(string $path): array
{
if ($path === '') {
return [];
}
$files = [];
foreach ($this->getNamespaces() as $namespace) {
$fullPath = $namespace['path'] . $path;
$fullPath = realpath($fullPath) ?: $fullPath;
if (! is_dir($fullPath)) {
continue;
}
$tempFiles = Helper::getFilenames($fullPath, true, false, false);
if ($tempFiles !== []) {
$files = array_merge($files, $tempFiles);
}
}
return array_unique($files);
}
/**
* Analyse l'espace de noms fourni, renvoyant une liste de tous les fichiers
* contenus dans le sous-chemin spécifié par $path.
*
* @return list<non-empty-string> Liste des chemins des fichiers
*/
public function listNamespaceFiles(string $prefix, string $path): array
{
if ($path === '' || $prefix === '') {
return [];
}
$files = [];
// autoloader->getNamespace($prefix) renvoie un tableau de chemins pour cet espace de noms
foreach ($this->autoloader->getNamespace($prefix) as $namespacePath) {
$fullPath = rtrim($namespacePath, '/') . '/' . $path;
$fullPath = realpath($fullPath) ?: $fullPath;
if (! is_dir($fullPath)) {
continue;
}
$tempFiles = Helper::getFilenames($fullPath, true, false, false);
if ($tempFiles !== []) {
$files = array_merge($files, $tempFiles);
}
}
return array_unique($files);
}
/**
* Examine une fichier et retourne le FQCN.
*/
public function getClassname(string $file): string
{
if (is_dir($file)) {
return '';
}
$php = file_get_contents($file);
$tokens = token_get_all($php);
$dlm = false;
$namespace = '';
$className = '';
foreach ($tokens as $i => $token) {
if ($i < 2) {
continue;
}
if ((isset($tokens[$i - 2][1]) && ($tokens[$i - 2][1] === 'phpnamespace' || $tokens[$i - 2][1] === 'namespace')) || ($dlm && $tokens[$i - 1][0] === T_NS_SEPARATOR && $token[0] === T_STRING)) {
if (! $dlm) {
$namespace = 0;
}
if (isset($token[1])) {
$namespace = $namespace ? $namespace . '\\' . $token[1] : $token[1];
$dlm = true;
}
} elseif ($dlm && ($token[0] !== T_NS_SEPARATOR) && ($token[0] !== T_STRING)) {
$dlm = false;
}
if (($tokens[$i - 2][0] === T_CLASS || (isset($tokens[$i - 2][1]) && $tokens[$i - 2][1] === 'phpclass'))
&& $tokens[$i - 1][0] === T_WHITESPACE
&& $token[0] === T_STRING) {
$className = $token[1];
break;
}
}
if ($className === '') {
return '';
}
return $namespace . '\\' . $className;
}
/**
* Recherchez le nom qualifié d'un fichier en fonction de l'espace de noms du premier chemin d'espace de noms correspondant.
*
* @return false|string Le nom qualifié ou false si le chemin n'est pas trouvé
*/
public function findQualifiedNameFromPath(string $path)
{
$path = realpath($path) ?: $path;
if (! is_file($path)) {
return false;
}
foreach ($this->getNamespaces() as $namespace) {
$namespace['path'] = realpath($namespace['path']) ?: $namespace['path'];
if ($namespace['path'] === '') {
continue;
}
if (mb_strpos($path, $namespace['path']) === 0) {
$className = $namespace['prefix'] . '\\' .
ltrim(
str_replace(
'/',
'\\',
mb_substr($path, mb_strlen($namespace['path']))
),
'\\'
);
// Retirons l'extension du fichier (.php)
$className = mb_substr($className, 0, -4);
if (in_array($className, $this->invalidClassnames, true)) {
continue;
}
// Verifions si la classe existe
if (class_exists($className)) {
return $className;
}
// Si la classe n'existe pas, il s'agit d'un nom de classe non valide.
$this->invalidClassnames[] = $className;
}
}
return false;
}
/**
* Recherche dans tous les espaces de noms définis à la recherche d'un fichier.
* Renvoie un tableau de tous les emplacements trouvés pour le fichier défini.
*
* Exemple:
*
* $locator->search('Config/Routes.php');
* // Assuming PSR4 namespaces include foo and bar, might return:
* [
* 'app/Modules/foo/Config/Routes.php',
* 'app/Modules/bar/Config/Routes.php',
* ]
*
* @return list<non-empty-string>
*/
public function search(string $path, string $ext = 'php', bool $prioritizeApp = true): array
{
$path = $this->ensureExt($path, $ext);
$foundPaths = [];
$appPaths = [];
foreach ($this->getNamespaces() as $namespace) {
if (isset($namespace['path']) && is_file($namespace['path'] . $path)) {
$fullPath = $namespace['path'] . $path;
$fullPath = realpath($fullPath) ?: $fullPath;
if ($prioritizeApp) {
$foundPaths[] = $fullPath;
} elseif (defined('APP_PATH') && str_starts_with($fullPath, constant('APP_PATH'))) {
$appPaths[] = $fullPath;
} else {
$foundPaths[] = $fullPath;
}
}
}
if (! $prioritizeApp && $appPaths !== []) {
$foundPaths = [...$foundPaths, ...$appPaths];
}
// Supprimer tous les doublons
return array_values(array_unique($foundPaths));
}
/**
* Retourne les namespace mappees qu'on connait
*
* @return list<array{prefix: non-empty-string, path: non-empty-string}>
*/
protected function getNamespaces(): array
{
$namespaces = [];
$system = [];
foreach ($this->autoloader->getNamespace() as $prefix => $paths) {
foreach ($paths as $path) {
if ($prefix === 'BlitzPHP') {
$system[] = [
'prefix' => $prefix,
'path' => rtrim($path, '\\/') . DIRECTORY_SEPARATOR,
];
continue;
}
$namespaces[] = [
'prefix' => $prefix,
'path' => rtrim($path, '\\/') . DIRECTORY_SEPARATOR,
];
}
}
return array_merge($namespaces, $system);
}
/**
* Vérifie le dossier de l'application pour voir si le fichier peut être trouvé.
* Uniquement pour une utilisation avec des noms de fichiers qui n'incluent PAS d'espacement de noms.
*
* @param non-empty-string|null $folder
*
* @return false|string Le chemin d'accès au fichier, ou false s'il n'est pas trouvé.
*/
protected function legacyLocate(string $file, ?string $folder = null)
{
$path = defined('APP_PATH') ? constant('APP_PATH') : '';
$path .= $folder === null ? $file : $folder . '/' . $file;
$path = realpath($path) ?: $path;
if (is_file($path)) {
return $path;
}
return false;
}
/**
* Garantit qu'une extension se trouve à la fin d'un nom de fichier
*/
protected function ensureExt(string $path, string $ext): string
{
if ($ext !== '') {
$ext = '.' . $ext;
if (! str_ends_with($path, $ext)) {
$path .= $ext;
}
}
return $path;
}
}