forked from mevdschee/php-crud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.php
120 lines (110 loc) · 3.23 KB
/
build.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
<?php
function removeIgnored(string $dir, array &$entries, array $ignore)
{
foreach ($entries as $i => $entry) {
if (isset($ignore[$dir . '/' . $entry])) {
unset($entries[$i]);
}
}
}
function prioritySort(string $dir, array &$entries, array $priority)
{
$first = array();
foreach ($entries as $i => $entry) {
if (isset($priority[$dir . '/' . $entry])) {
array_push($first, $entry);
unset($entries[$i]);
}
}
sort($entries);
foreach ($first as $entry) {
array_unshift($entries, $entry);
}
}
function runDir(string $base, string $dir, array &$lines, array $ignore, array $priority): int
{
$count = 0;
$entries = scandir($dir);
removeIgnored($dir, $entries, $ignore);
prioritySort($dir, $entries, $priority);
foreach ($entries as $entry) {
if ($entry === '.' || $entry === '..') {
continue;
}
$filename = "$base/$dir/$entry";
if (is_dir($filename)) {
$count += runDir($base, "$dir/$entry", $lines, $ignore, $priority);
}
}
foreach ($entries as $entry) {
$filename = "$base/$dir/$entry";
if (is_file($filename)) {
if (substr($entry, -4) != '.php') {
continue;
}
$data = file_get_contents($filename);
$data = preg_replace('|/\*\*.*?\*/|s', '', $data);
array_push($lines, "// file: $dir/$entry");
foreach (explode("\n", $data) as $line) {
if (!preg_match('/^<\?php|^namespace |^use |vendor\/autoload|declare\s*\(\s*strict_types\s*=\s*1|^\s*\/\//', $line)) {
array_push($lines, $line);
}
}
$count++;
}
}
return $count;
}
function addHeader(array &$lines)
{
$head = <<<EOF
<?php
/**
* PHP-CRUD-API v2 License: MIT
* Maurits van der Schee: [email protected]
* https://github.com/mevdschee/php-crud-api
*
* Dependencies:
* - vendor/psr/*: PHP-FIG
* https://github.com/php-fig
* - vendor/nyholm/*: Tobias Nyholm
* https://github.com/Nyholm
**/
namespace Tqdev\PhpCrudApi;
EOF;
foreach (explode("\n", $head) as $line) {
array_push($lines, $line);
}
}
function run(string $base, array $dirs, string $filename, array $ignore, array $priority)
{
$lines = [];
$start = microtime(true);
addHeader($lines);
$ignore = array_flip($ignore);
$priority = array_flip($priority);
$count = 0;
foreach ($dirs as $dir) {
$count += runDir($base, $dir, $lines, $ignore, $priority);
}
$data = implode("\n", $lines);
$data = preg_replace('/\n({)?\s*\n\s*\n/', "\n$1\n", $data);
file_put_contents('tmp_' . $filename, $data);
ob_start();
include 'tmp_' . $filename;
ob_end_clean();
rename('tmp_' . $filename, $filename);
$end = microtime(true);
$time = ($end - $start) * 1000;
echo sprintf("%d files combined in %d ms into '%s'\n", $count, $time, $filename);
}
$ignore = [
'vendor/autoload.php',
'vendor/composer',
'vendor/php-http',
'vendor/nyholm/psr7/src/Factory/HttplugFactory.php',
];
$priority = [
'vendor/psr',
];
run(__DIR__, ['vendor', 'src'], 'api.php', $ignore, $priority);