-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathAutoLoadOne.php
1647 lines (1588 loc) · 162 KB
/
AutoLoadOne.php
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php /** @noinspection JsonEncodingApiUsageInspection */
/** @noinspection NotOptimalIfConditionsInspection */
/** @noinspection NonSecureUniqidUsageInspection */
/** @noinspection SubStrUsedAsStrPosInspection */
/** @noinspection UnknownInspectionInspection */
/** @noinspection HtmlUnknownAttribute */
/** @noinspection PhpUnhandledExceptionInspection */
namespace eftec\AutoLoadOne;
//*************************************************************
use Exception;
if (!defined('_AUTOLOAD_USER')) {
define('_AUTOLOAD_USER', 'autoloadone');
} // user (web interface)
if (!defined('_AUTOLOAD_PASSWORD')) {
define('_AUTOLOAD_PASSWORD', 'autoloadone');
}
if (!defined('_AUTOLOAD_COMPOSERJSON')) {
/** if true then it considers composer.json {'autoload':{'files':[]}} and adds it as autorun */
define('_AUTOLOAD_COMPOSERJSON', false);
} // password (web interface)
if (!defined('_AUTOLOAD_ENTER')) {
define('_AUTOLOAD_ENTER', true);
} // if you want to auto login (skip user and password) then set to true
if (!defined('_AUTOLOAD_SELFRUN')) {
define('_AUTOLOAD_SELFRUN', true);
} // if you want to self run the class.
if (!defined('_AUTOLOAD_ONLYCLI')) {
define('_AUTOLOAD_ONLYCLI', false);
} // if you want to use only cli. If true, it disabled the web interface.
if (!defined('_AUTOLOAD_SAVEPARAM')) {
define('_AUTOLOAD_SAVEPARAM', true);
} // true if you want to save the parameters.
//*************************************************************
@ini_set('max_execution_time', 600); // Limit of 10 minutes.
/**
* Class AutoLoadOne.
*
* @copyright Jorge Castro C. MIT License https://github.com/EFTEC/AutoLoadOne
*
* @version 1.30.1 2025-02-21
* @noautoload
*/
class AutoLoadOne
{
public const VERSION = '1.30.1';
public ?string $rooturl = '';
public ?string $fileGen = '';
public ?int $savefile = 1;
public ?string $savefileName = 'autoload.php';
public ?int $stop = 0;
public ?int $compression = 1;
public ?int $button = 0;
public ?string $excludeNS = '';
public ?string $excludePath = '';
public ?string $externalPath = '';
public ?string $log = '';
public ?string $logStat = '';
public string $result = '';
public string $cli = '';
public ?bool $logged = false;
public string $current = '';
public float $t1 = 0;
public bool $debugMode = false;
public int $statNumClass = 0;
public int $statNumPHP = 0;
public int $statConflict = 0;
public int $statError = 0;
public array $statNameSpaces = [];
public float $statByteUsed = 1024;
public float $statByteUsedCompressed = 1024;
public string $fileConfig = 'autoloadone.json';
public string $extension = '.php';
private string $baseGen = "";
/**
* AutoLoadOne constructor.
*/
public function __construct()
{
$this->fileGen = '.'; //getcwd(); // dirname($_SERVER['SCRIPT_FILENAME']);
$this->rooturl = '.'; //getcwd(); // dirname($_SERVER['SCRIPT_FILENAME']);
$this->t1 = microtime(true);
$tmpArr = explode('/', $_SERVER['SCRIPT_FILENAME']); // it always returns with linux separators.
$this->fileConfig = end($tmpArr); // the config name shares the same name as the php but with extension .json
$this->fileConfig = $this->dirNameLinux(getcwd()) . '/' . str_replace($this->extension, '.json', $this->fileConfig);
}
/**
* returns dir name linux way.
*
* @param $url
* @param bool $ifFullUrl
*
* @return string
*/
public function dirNameLinux($url, bool $ifFullUrl = true): string
{
$url = trim($url);
$dir = ($ifFullUrl) ? dirname($url) : $url;
$dir = $this->fixSeparator($dir);
// remove trailing /
return rtrim($dir, '/');
}
public function fixSeparator($fullUrl)
{
return str_replace('\\', '/', $fullUrl); // replace windows path for linux path.
}
/** @noinspection PhpUnused */
public static function format($json, $unescapeUnicode, $unescapeSlashes): string
{
$result = '';
$pos = 0;
$strLen = strlen($json);
$indentStr = ' ';
$newLine = "\n";
$outOfQuotes = true;
$buffer = '';
$noescape = true;
for ($i = 0; $i < $strLen; $i++) {
$char = substr($json, $i, 1);
if ('"' === $char && $noescape) {
$outOfQuotes = !$outOfQuotes;
}
if (!$outOfQuotes) {
$buffer .= $char;
$noescape = !('\\' === $char) || !$noescape;
continue;
}
if ('' !== $buffer) {
if ($unescapeSlashes) {
$buffer = str_replace('\\/', '/', $buffer);
}
if ($unescapeUnicode && function_exists('mb_convert_encoding')) {
$buffer = preg_replace_callback('/(\\\\+)u([0-9a-f]{4})/i', static function($match) {
$l = strlen($match[1]);
if ($l % 2) {
$code = hexdec($match[2]);
if (0xD800 <= $code && 0xDFFF >= $code) {
return $match[0];
}
/** @noinspection PhpComposerExtensionStubsInspection */
return str_repeat('\\', $l - 1) .
mb_convert_encoding(pack('H*', $match[2]), 'UTF-8', 'UCS-2BE');
}
return $match[0];
}, $buffer);
}
$result .= $buffer . $char;
$buffer = '';
continue;
}
if (':' === $char) {
$char .= ' ';
} elseif ('}' === $char || ']' === $char) {
$pos--;
$prevChar = substr($json, $i - 1, 1);
if ('{' !== $prevChar && '[' !== $prevChar) {
$result .= $newLine;
$result .= str_repeat($indentStr, $pos);
} else {
$result = rtrim($result);
}
}
$result .= $char;
if (',' === $char || '{' === $char || '[' === $char) {
$result .= $newLine;
if ('{' === $char || '[' === $char) {
$pos++;
}
$result .= str_repeat($indentStr, $pos);
}
}
return $result;
}
public function init(): void
{
$this->log = '';
$this->logStat = '';
if (PHP_SAPI === 'cli') {
$this->initSapi();
} else {
if (_AUTOLOAD_ONLYCLI) {
echo 'You should run it as a command line parameter.';
die(1);
}
$this->initWeb();
}
}
private function initSapi(): void
{
global $argv;
$v = $this::VERSION . ' (c) Jorge Castro';
echo <<<eot
___ __ __ __ ____
/ _ | __ __ / /_ ___ / / ___ ___ _ ___/ // __ \ ___ ___
/ __ |/ // // __// _ \ / /__/ _ \/ _ `// _ // /_/ // _ \/ -_)
/_/ |_|\_,_/ \__/ \___//____/\___/\_,_/ \_,_/ \____//_//_/\__/ $v
eot;
echo "\n";
if (count($argv) < 2) {
// help
echo "-current (scan and generates files from the current folder)\n";
echo "-folder (folder to scan)\n";
echo '-filegen (folder where autoload' . $this->extension . " will be generate)\n";
echo "-save (save the file to generate)\n";
echo "-compression (compress the result)\n";
echo "-savefilename (the filename to be generated. By default its autoload.php)\n";
echo "-excludens (namespace excluded)\n";
echo "-excludepath (path excluded)\n";
echo "-externalpath (external paths)\n";
echo "------------------------------------------------------------------\n";
} else {
$this->getAllParametersCli();
$this->fileGen = ($this->fileGen === '') ? '.' : $this->fileGen; //getcwd()
$this->button = 1;
}
if ($this->current) {
$this->rooturl = '.'; //getcwd();
$this->fileGen = '.'; //getcwd();
$this->savefile = 1;
$this->savefileName = 'autoload.php';
$this->stop = 0;
$this->compression = 1;
$this->button = 1;
$this->excludeNS = '';
$this->externalPath = '';
$this->excludePath = '';
}
echo '-folder ' . $this->rooturl . " (folder to scan)\n";
echo '-filegen ' . $this->fileGen . ' (folder where autoload' . $this->extension . " will be generate)\n";
echo '-save ' . ($this->savefile ? 'yes' : 'no') . " (save filegen)\n";
echo '-compression ' . ($this->compression ? 'yes' : 'no') . " (compress the result)\n";
echo '-savefilename ' . $this->savefileName . " (save filegen name)\n";
echo '-excludens ' . $this->excludeNS . " (namespace excluded)\n";
echo '-excludepath ' . $this->excludePath . " (path excluded)\n";
echo '-externalpath ' . $this->externalPath . " (path external)\n";
echo "------------------------------------------------------------------\n";
}
private function getAllParametersCli(): void
{
$this->rooturl = $this->fixSeparator($this->getParameterCli('folder'));
$this->fileGen = $this->fixSeparator($this->getParameterCli('filegen'));
$this->fileGen = ($this->fileGen === '.') ? $this->rooturl : $this->fileGen;
$this->savefile = $this->getParameterCli('save')==="yes" ? 1:0;
$this->savefileName = $this->getParameterCli('savefilename', 'autoload.php');
$this->stop = $this->getParameterCli('stop') === "yes" ? 1 : 0;
$this->compression = $this->getParameterCli('compression') === "yes" ? 1 : 0;
$this->current = $this->getParameterCli('current', true);
$this->excludeNS = $this->getParameterCli('excludens');
$this->excludePath = $this->getParameterCli('excludepath');
$this->externalPath = $this->getParameterCli('externalpath');
$this->debugMode = $this->getParameterCli('debug');
}
/**
* @param $key
* @param string $default is the defalut value is the parameter is set without value.
*
* @return string
*/
private function getParameterCli($key, string $default = ''): string
{
global $argv;
$p = array_search('-' . $key, $argv, true);
if ($p === false) {
return '';
}
if ($default !== '') {
return $default;
}
if (count($argv) >= $p + 1) {
return $this->removeTrailSlash($argv[$p + 1]);
}
return '';
}
private function removeTrailSlash($txt): string
{
return rtrim($txt, '/\\');
}
private function initWeb(): void
{
@ob_start();
// Not in cli-mode
@session_start();
$this->logged = @$_SESSION['log'];
if (!$this->logged) {
$user = @$_POST['user'];
$password = @$_POST['password'];
if (($user === _AUTOLOAD_USER && $password === _AUTOLOAD_PASSWORD) || _AUTOLOAD_ENTER) {
$_SESSION['log'] = '1';
$this->logged = 1;
} else {
sleep(1); // sleep a second
$_SESSION['log'] = '0';
@session_destroy();
}
@session_write_close();
} else {
$this->button = @$_POST['button'];
if (!$this->button) {
$loadOk = $this->loadParam();
if ($loadOk === false) {
$this->addLog('Unable to load configuration file <b>' . $this->savefileName .
'</b>. It is not obligatory', 'warning');
} else {
$this->addLog('Configuration loaded <b>' . $this->savefileName .
'</b>.', 'info');
}
} else {
$this->debugMode = isset($_GET['debug']);
$this->rooturl = $this->removeTrailSlash(@$_POST['rooturl'] ? $_POST['rooturl'] : $this->rooturl);
$this->fileGen = $this->removeTrailSlash(@$_POST['fileGen'] ? $_POST['fileGen'] : $this->fileGen);
$this->fileGen = ($this->fileGen === '.') ? $this->rooturl : $this->fileGen;
$this->excludeNS =
$this->cleanInputFolder($this->removeTrailSlash(@$_POST['excludeNS'] ? $_POST['excludeNS']
: $this->excludeNS));
$this->excludePath =
$this->cleanInputFolder($this->removeTrailSlash(@$_POST['excludePath'] ? $_POST['excludePath']
: $this->excludePath));
$this->externalPath =
$this->cleanInputFolder($this->removeTrailSlash(@$_POST['externalPath'] ? $_POST['externalPath']
: $this->externalPath));
$this->savefile = (@$_POST['savefile']) ?: $this->savefile;
$this->savefileName = (@$_POST['savefileName']) ?: $this->savefileName;
$this->stop = @$_POST['stop'];
$this->compression = @$_POST['compression'];
}
/** @noinspection PhpConditionAlreadyCheckedInspection */
if ($this->button === 'logout') {
@session_destroy();
$this->logged = 0;
@session_write_close();
}
}
}
/**
* @return bool
*/
private function loadParam(): bool
{
if (!_AUTOLOAD_SAVEPARAM) {
return false;
}
$fullPHP = @file_get_contents($this->savefileName);
if ($fullPHP === false) {
$fullPHP = '';
}
$a1 = strpos($fullPHP, '/* -- CONFIG START HERE --');
if ($a1 === false) {
// we try the old method (json file if exists)
$oldMethod = @file_get_contents($this->fileConfig);
if (!$oldMethod) {
return false;
}
$this->addLog('Reading the configuration using the old method ' . $this->fileConfig . ' (you could delete this file)', 'error');
$param = json_decode($oldMethod, true);
$param = $param['local'] ?? null;
} else {
$a1 += strlen('/* -- CONFIG START HERE --');
$a2 = strpos($fullPHP, '-- CONFIG END HERE -- ', $a1);
if ($a2 === false) {
return false;
}
$txt = trim(substr($fullPHP, $a1, $a2 - $a1));
$param = json_decode($txt, true);
}
if ($param === null) {
return false;
}
$this->fileGen = @$param['fileGen'];
$this->fileGen = ($this->fileGen === '.') ? $this->rooturl : $this->fileGen;
$this->savefile = @$param['savefile'];
$this->compression = @$param['compression'];
$this->savefileName = @$param['savefileName'];
$this->excludeNS = @$param['excludeNS'];
$this->excludePath = @$param['excludePath'];
$this->externalPath = @$param['externalPath'];
return true;
}
/**
* @param mixed $txt The message to show
* @param string $type =['error','warning','info','success','stat','statinfo','staterror'][$i]
*/
public function addLog($txt, string $type = ''): void
{
if (PHP_SAPI === 'cli') {
$txt = str_replace(['<b>', '<i>', '</b>', '</i>'], ["\033[1m", "\033[4m", "\033[0m", "\033[0m"], $txt);
switch ($type) {
case 'error':
case 'staterror':
echo "\033[31m$txt\033[0m\n";
break;
case 'warning':
echo "\033[33m$txt\033[0m\n";
break;
case 'info':
echo "\033[37m$txt\033[0m\n";
break;
case 'success':
echo "\033[32m$txt\033[0m\n";
break;
case 'statinfo':
case 'stat':
echo "\033[34m$txt\033[0m\n";
break;
default:
echo "\033[0m$txt\033[0m\n";
break;
}
} else {
switch ($type) {
case 'error':
$this->log .= "<div class='bg-danger'>$txt</div>";
break;
case 'warning':
$this->log .= "<div class='bg-warning'>$txt</div>";
break;
case 'info':
$this->log .= "<div class='bg-primary'>$txt</div>";
break;
case 'success':
$this->log .= "<div class='bg-success'>$txt</div>";
break;
case 'stat':
$this->logStat .= "<div >$txt</div>";
break;
case 'statinfo':
$this->logStat .= "<div class='bg-primary'>$txt</div>";
break;
case 'staterror':
$this->logStat .= "<div class='bg-danger'>$txt</div>";
break;
default:
$this->log .= "<div>$txt</div>";
break;
}
}
}
/**
* @param $value
*
* @return string
*/
private function cleanInputFolder($value): string
{
// remove windows line carriage
// remove previous ,\n if any and converted into \n. It avoids duplicate ,,\n
// we add ,\n again.
// we remove trailing \
// we remove trailing /
return str_replace(["\r\n", ",\n", "\n", '\\,', '/,'], ["\n", "\n", ",\n", ',', ','], $value);
}
public function process(): void
{
$this->rooturl = $this->fixSeparator($this->rooturl);
$this->fileGen = $this->fixSeparator($this->fileGen);
$this->externalPath = $this->fixSeparator($this->externalPath);
if ($this->rooturl) {
$this->baseGen = $this->dirNameLinux($this->fileGen . '/' . $this->getFileName());
[$files, $json] = $this->listFolderFiles($this->rooturl);
$filesAbsolute = array_fill(0, count($files), false);
$jsonAbsolute = array_fill(0, count($json), false);
$extPathArr = explode(',', $this->externalPath);
foreach ($extPathArr as $ep) {
$ep = $this->dirNameLinux($ep, false);
[$files2, $json2] = $this->listFolderFiles($ep);
foreach ($json2 as $newJson) {
$json[] = $newJson;
$jsonAbsolute[] = true;
}
foreach ($files2 as $newFile) {
$files[] = $newFile;
$filesAbsolute[] = true;
}
}
//die(1);
$ns = [];
$nsAlt = [];
$pathAbsolute = [];
$pathAbsoluteExt = [];
$autoruns = [];
$autorunsFromJson = [];
$autorunsFirst = [];
$excludeNSArr = str_replace(["\n", "\r", ' '], '', $this->excludeNS);
$excludeNSArr = explode(',', $excludeNSArr);
//$excludePathArr = $this->fixSeparator($this->excludePath);
$excludePathArr = str_replace(["\n", "\r"], '', $this->excludePath);
$excludePathArr = explode(',', $excludePathArr);
foreach ($excludePathArr as $key => $item) {
$excludePathArr[$key] = trim($item);
}
$this->result = '';
if ($this->button) {
foreach ($json as $key => $f) {
//echo "running $f<br>";
$f = $this->fixSeparator($f);
$dirOriginal = $this->dirNameLinux($f);
$jsonE = $this->parseJSONFile($dirOriginal);
foreach ($jsonE as $item) {
if (!$jsonAbsolute[$key]) {
$dir = $this->genPath($dirOriginal); //folder/subfolder/f1
$full = $dir . '/' . $item; ///folder/subfolder/f1/F1.php
} else {
//$dir = $dirOriginal; //D:/Dropbox/www/currentproject/AutoLoadOne/examples/folder
$full = $dirOriginal . '/' . $item; //D:/Dropbox/www/currentproject/AutoLoadOne/examples/folder/NaturalClass.php
}
$autoruns[] = $full;
$autorunsFromJson[] = $full;
}
}
$mapped = [];
foreach ($files as $key => $f) {
$f = $this->fixSeparator($f);
$runMe = '';
$pArr = $this->parsePHPFile($f, $runMe);
$dirOriginal = $this->dirNameLinux($f);
if (!$filesAbsolute[$key]) {
$dir = $this->genPath($dirOriginal); //folder/subfolder/f1
$full = $this->genPath($f); ///folder/subfolder/f1/F1.php
} else {
$dir = dirname($f); //D:/Dropbox/www/currentproject/AutoLoadOne/examples/folder
$full = $f; //D:/Dropbox/www/currentproject/AutoLoadOne/examples/folder/NaturalClass.php
}
$urlFull = $this->dirNameLinux($full); ///folder/subfolder/f1
$tmpArr = explode('/', $f); //F1.php
$basefile = end($tmpArr); // the config name shares the same name as the php but with extension .json
if ($runMe !== '') {
switch ($runMe) {
case '@autorun first':
$autorunsFirst[] = $full;
$this->addLog("Adding autorun (priority): <b>$full</b>", 'info');
break;
case '@autorunclass':
$autoruns[] = $full;
$this->addLog("Adding autorun (class, use future): <b>$full</b>", 'info');
break;
case '@autorun':
$autoruns[] = $full;
$this->addLog("Adding autorun: <b>$full</b>", 'info');
break;
}
}
foreach ($pArr as $p) {
$nsp = $p['namespace'];
$cs = $p['classname'];
$this->statNameSpaces[$nsp] = 1;
$this->statNumPHP++;
if ($cs !== '') {
$this->statNumClass++;
}
$altUrl = ($nsp !== '') ? $nsp . '\\' . $cs : $cs; // namespace
if ($nsp !== '' || $cs !== '') {
if ((!isset($ns[$nsp]) || $ns[$nsp] === $dir) && $basefile === $cs . $this->extension) {
// namespace doesn't exist and the class is equals to the name
// adding as a folder
$exclude = false;
if ($nsp !== '' && in_array($nsp, $excludeNSArr, true)) {
//if ($this->inExclusion($nsp, $this->excludeNSArr) && $nsp!="") {
$this->addLog("Ignoring namespace (path specified in <b>Excluded NameSpace</b>): <b>$altUrl -> $full</b>",
'warning');
$exclude = true;
}
if ($this->inExclusion($dir, $excludePathArr)) {
$this->addLog("Ignoring relative path (path specified in <b>Excluded Path</b>): <b>$altUrl -> $dir</b>",
'warning');
$exclude = true;
}
if ($this->inExclusion($dirOriginal, $excludePathArr)) {
$this->addLog("Ignoring full path (path specified in <b>Excluded Path</b>): <b>$altUrl -> $dirOriginal</b>",
'warning');
$exclude = true;
}
if (!$exclude) {
if ($nsp === '') {
$this->addLog("Adding Full map (empty namespace): <b>$altUrl -> $full</b> to class <i>$cs</i>", 'warning');
$nsAlt[$altUrl] = $full;
if ($this->externalPath !== "" && strpos($full, $this->externalPath) === 0) {
$pathAbsoluteExt[$altUrl] = $filesAbsolute[$key];
} else {
$pathAbsolute[$altUrl] = $filesAbsolute[$key];
}
} elseif (isset($ns[$nsp])) {
$mapped[] = $nsp . '\\' . $cs;
$this->addLog("Reusing the folder: <b>$nsp -> $dir</b> to class <i>$cs</i>",
'success');
} else {
$ns[$nsp] = $dir;
if ($this->externalPath !== "" && strpos($dir, $this->externalPath) === 0) {
$pathAbsoluteExt[$nsp] = $filesAbsolute[$key];
} else {
$pathAbsolute[$nsp] = $filesAbsolute[$key];
}
$this->addLog("Adding Folder as namespace: <b>$nsp -> $dir</b> to class <i>$cs</i>", 'info');
}
}
} elseif (isset($nsAlt[$altUrl])) {
$this->addLog("Error Conflict:Class with name <b>$altUrl -> $dir</b>"
. " is already defined. File $f", 'error');
$this->statConflict++;
if ($this->stop) {
die(1);
}
} elseif ((!in_array($altUrl, $excludeNSArr, true) || $nsp === '') &&
!$this->inExclusion($urlFull, $excludePathArr)) {
if (in_array($altUrl, $mapped, true)) {
$this->addLog("Not Added Full relation: <b>$altUrl -> $full</b> to class <i>$cs</i> (already added)", 'warning');
} else {
$this->addLog("Adding Full relation: <b>$altUrl -> $full</b> to class <i>$cs</i>", 'warning');
$nsAlt[$altUrl] = $full;
if ($this->externalPath !== "" && strpos($full, $this->externalPath) === 0) {
$pathAbsoluteExt[$altUrl] = $filesAbsolute[$key];
} else {
$pathAbsolute[$altUrl] = $filesAbsolute[$key];
}
}
}
}
}
if (count($pArr) === 0) {
$this->statNumPHP++;
if ($runMe === '@noautoload') {
$this->addLog("Ignoring <b>$full</b> Reason: <b>@noautoload</b> found", 'warning');
} else {
$this->addLog("Ignoring <b>$full</b> Reason: No class found on file.", 'warning');
}
}
}
foreach ($autorunsFirst as $auto) {
$this->addLog("Adding file <b>$auto</b> Reason: <b>@autoload first</b> found", 'warning');
}
foreach ($autoruns as $auto) {
if (in_array($auto, $autorunsFromJson, true)) {
$this->addLog("Adding file <b>$auto</b> Reason: <b>composer.json</b> found", 'warning');
} else {
$this->addLog("Adding file <b>$auto</b> Reason: <b>@autoload</b> found", 'warning');
}
}
$autoruns = array_merge($autorunsFirst, $autoruns);
$this->result =
$this->genautoload($this->fileGen . '/' . $this->getFileName(), $ns, $nsAlt, $pathAbsolute,
$pathAbsoluteExt, $autoruns);
}
if ($this->statNumPHP === 0) {
$p = 100;
} else {
$p = round((count($ns) + count($nsAlt)) * 100 / $this->statNumPHP, 2);
}
if ($this->statNumClass === 0) {
$pc = 100;
} else {
$pc = round((count($ns) + count($nsAlt)) * 100 / $this->statNumClass, 2);
}
$this->addLog('Number of Classes: <b>' . $this->statNumClass . '</b>', 'stat');
$this->addLog('Number of Namespaces: <b>' . count($this->statNameSpaces) . '</b>', 'stat');
$this->addLog('<b>Number of Maps:</b> <b>' . (count($ns) + count($nsAlt)) . '</b> (you want to reduce it)',
'stat');
$this->addLog('Number of PHP Files: <b>' . $this->statNumPHP . '</b>', 'stat');
$this->addLog('Number of PHP Autorun: <b>' . count($autoruns) . '</b>', 'stat');
$this->addLog('Number of conflicts: <b>' . $this->statConflict . '</b>', 'stat');
if ($this->statError) {
$this->addLog('Number of errors: <b>' . $this->statError . '</b>', 'staterror');
}
$this->addLog('Ratio map per file: <b>' . $p . '% ' . $this->evaluation($p) .
'</b> (less is better. 100% means one map/one file)', 'statinfo');
$this->addLog('Ratio map per classes: <b>' . $pc . '% ' . $this->evaluation($pc) .
'</b> (less is better. 100% means one map/one class)', 'statinfo');
$this->addLog('Map size: <b>' . round($this->statByteUsed / 1024, 1) .
" kbytes</b> (less is better, it's an estimate of the memory used by the map)", 'statinfo');
$this->addLog('Map size Compressed: <b>' . round($this->statByteUsedCompressed / 1024, 1) .
" kbytes</b> (less is better, it's an estimate of the memory used by the map)", 'statinfo');
} else {
$this->addLog('No folder specified');
}
}
/**
* returns the name of the filename if the original filename constains .php then it is not added, otherwise
* it is added.
*
* @return string
*/
public function getFileName(): string
{
if (strpos($this->savefileName, '.php') === false) {
return $this->savefileName . $this->extension;
}
return $this->savefileName;
}
public function listFolderFiles($dir): array
{
$arr = [];
$json = [];
$this->listFolderFilesAlt($dir, $arr, $json);
return [$arr, $json];
}
public function listFolderFilesAlt($dir, &$list, &$json): array
{
if ($dir === '') {
return [];
}
$ffs = @scandir($this->fixRelative($dir));
if ($ffs === false) {
$this->addLog("\nError: Unable to reader folder [$dir]. Check the name of the folder and the permissions",
'error');
$this->statError++;
return [];
}
foreach ($ffs as $ff) {
if ($ff !== '.' && $ff !== '..') {
if ($ff === 'composer.json') {
$json[] = $list[] = $dir . '/' . $ff;
}
if ((strlen($ff) >= 5) && substr($ff, -4) === $this->extension) {
// PHP_OS_FAMILY=='Windows'
$list[] = $dir . '/' . $ff;
}
if (is_dir($dir . '/' . $ff)) {
$this->listFolderFilesAlt($dir . '/' . $ff, $list, $json);
}
}
}
return $list;
}
private function fixRelative($path)
{
if (strpos($path, '..') !== false) {
return getcwd() . '/' . $path;
}
return $path;
}
public function parseJSONFile($filename)
{
try {
$filenameFixed = $this->fixRelative($filename) . '/composer.json';
if (is_file($filenameFixed)) {
$content = file_get_contents($filenameFixed);
} else {
return [];
}
if ($this->debugMode) {
echo $filename . ' trying token...<br>';
}
$tokens = json_decode($content, true);
} catch (Exception $ex) {
echo "Error in $filename\n";
die(1);
}
return $tokens['autoload']['files'] ?? [];
}
public function genPath($path)
{
$path = $this->fixSeparator($path);
if (strpos($path, $this->baseGen) === 0) {
$min1 = strrpos($path, '/');
$min2 = strrpos($this->baseGen . '/', '/');
//$min=min(strlen($path),strlen($this->baseGen));
$min = min($min1, $min2);
$baseCommon = $min;
for ($i = 0; $i < $min; $i++) {
if (substr($path, 0, $i) !== substr($this->baseGen, 0, $i)) {
$baseCommon = $i - 2;
break;
}
}
// moving down the relative path (/../../)
$c = substr_count(substr($this->baseGen, $baseCommon), '/');
$r = str_repeat('/..', $c);
// moving up the relative path
$r2 = substr($path, $baseCommon);
return $r . $r2;
}
return substr($path, strlen($this->baseGen));
}
/**
* @param $filename
* @param string $runMe
*
* @return array
*/
public function parsePHPFile($filename, string &$runMe): array
{
$runMe = '';
$r = [];
try {
if (is_file($this->fixRelative($filename))) {
$content = file_get_contents($this->fixRelative($filename));
} else {
return [];
}
if ($this->debugMode) {
echo $filename . ' trying token...<br>';
}
$tokens = token_get_all($content);
} catch (Exception $ex) {
echo "Error in $filename\n";
die(1);
}
foreach ($tokens as $token) {
if (is_array($token) && ($token[0] === T_COMMENT || $token[0] === T_DOC_COMMENT)) {
if (strpos($token[1], '@noautoload') !== false) {
$runMe = '@noautoload';
return [];
}
if (strpos($token[1], '@autorun') !== false) {
if (strpos($token[1], '@autorunclass') !== false) {
$runMe = '@autorunclass';
} elseif (strpos($token[1], '@autorun first') !== false) {
$runMe = '@autorun first';
} else {
$runMe = '@autorun';
}
}
}
}
$nameSpace = '';
$className = '';
foreach ($tokens as $p => $token) {
if (is_array($token) && $token[0] === T_NAMESPACE) {
// We found a namespace
$ns = '';
for ($i = $p + 2; $i < $p + 30; $i++) {
if (is_array($tokens[$i])) {
$ns .= $tokens[$i][1];
} else {
// tokens[$p]==';' ??
break;
}
}
$nameSpace = $ns;
}
$isClass = false;
// A class is defined by a T_CLASS + a space + name of the class.
if (is_array($token) && ($token[0] === T_CLASS || $token[0] === T_INTERFACE || $token[0] === T_TRAIT) &&
is_array($tokens[$p + 1]) && $tokens[$p + 1][0] === T_WHITESPACE) {
$isClass = true;
if (is_array($tokens[$p - 1]) && $tokens[$p - 1][0] === T_PAAMAYIM_NEKUDOTAYIM &&
$tokens[$p - 1][1] === '::') {
// /namespace/Nameclass:class <-- we skip this case.
$isClass = false;
}
}
if ($isClass) {
// encontramos una clase
$min = min($p + 30, count($tokens) - 1);
for ($i = $p + 2; $i < $min; $i++) {
if (is_array($tokens[$i]) && $tokens[$i][0] === T_STRING) {
$className = $tokens[$i][1];
break;
}
}
$r[] = ['namespace' => trim($nameSpace), 'classname' => trim($className)];
}
} // foreach
return $r;
}
/**
* @param string $path
* @param string[] $exclusions
*
* @return bool
*/
private function inExclusion(string $path, array $exclusions): bool
{
foreach ($exclusions as $ex) {
if ($ex !== '') {
if ($ex[strlen($ex) - 1] === '*') {
$bool = $this->startwith($path, substr($ex, 0, -1));
if ($bool) {
return true;
}
}
if ($ex[0] === '*') {
$bool = $this->endswith($path, $ex);
if ($bool) {
return true;
}
}
if ((strpos($ex, '*') === false) && $path === $ex) {
return true;
}
}
}
return false;
}
public function startwith($string, $test): bool
{
return strpos($string, $test) === 0;
}
public function endswith($string, $test): bool
{
$strlen = strlen($string);
$testlen = strlen($test);
if ($testlen > $strlen) {
return false;
}
return substr_compare($string, $test, $strlen - $testlen, $testlen) === 0;
}
public function genautoload($file, $namespaces, $namespacesAlt, $pathAbsolute, $pathAbsoluteExt, $autoruns)
{
$template = "<?php" . <<<'EOD'
/**
* @noinspection PhpRedundantVariableDocTypeInspection
* @noinspection PhpUnhandledExceptionInspection
* @noinspection PhpMissingParamTypeInspection
* @noinspection ClassConstantCanBeUsedInspection
*/
/* -- CONFIG START HERE --
-- CONFIG END HERE -- */
/**
* This class is used for autocomplete.
* Class _AUTOLOAD_
* @noautoload it avoids to index this class
* @generated by AutoLoadOne {{version}} generated {{date}}
* @copyright Copyright Jorge Castro C - MIT License. https://github.com/EFTEC/AutoLoadOne
*/
/** @var bool $autoloadone__debug if true then in case of error, it shows more information about the source of it */
$autoloadone__debug = true;
/**
* @var string[] ${{tempname}}__arrautoloadCustom It stores the map of definitions full=>filename.<br>
* example: ['namespace\Class']='folder\file.php'
*/
${{tempname}}__arrautoloadCustom = [
{{custom}}
];
${{tempname}}__arrautoloadCustomCommon = [
{{customCommon}}
];
/* @var string[] ${{tempname}}__arrautoload It stores the map of definitions as namespace=>folder
* Example: ['namespace']='folder'
*/
${{tempname}}__arrautoload = [
{{include}}
];
${{tempname}}__arrautoloadCommon = [
{{includeCommon}}
];
/**
* @var boolean[] ${{tempname}}__arrautoloadAbsolute It stores the map absolutely<br>
* Example: $['namespace' or 'namespace\Class']=true if it's absolute (it uses the full path)
*/
${{tempname}}__arrautoloadAbsolute = [
{{includeabsolute}}
];
${{tempname}}__arrautoloadAbsoluteExt = [
{{includeabsoluteext}}
];
/**
* @param $class_name
* @throws Exception
*/
function {{tempname}}__auto($class_name)
{
// it's called only if the class is not loaded.
set_exception_handler('autoloadone_exception_handler');
$p=strrpos($class_name,'\\');
if($p!==false) {
$ns=substr($class_name,0,$p);
$cls=substr($class_name,$p+1);
} else {
$ns='';
$cls=$class_name;
}
// special cases
if (isset($GLOBALS['{{tempname}}__arrautoloadCustom'][$class_name])) {
{{tempname}}__loadIfExists($class_name,$GLOBALS['{{tempname}}__arrautoloadCustom'][$class_name]
, $class_name,'{{tempname}}__arrautoloadCustomCommon');
restore_exception_handler();