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
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2021 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Fisharebest\Webtrees\Console;
use Composer\Script\Event;
use Fisharebest\Localization\Translation;
use Illuminate\Support\Collection;
use League\Flysystem\Filesystem;
use League\Flysystem\FilesystemException;
use League\Flysystem\FilesystemReader;
use League\Flysystem\Local\LocalFilesystemAdapter;
use function basename;
use function dirname;
use function file_put_contents;
use function glob;
use function str_contains;
use function var_export;
/**
* Command-line utilities.
*/
class ComposerScripts
{
// Location of our translation files.
private const PO_FILE_PATTERN = 'resources/lang/*/*.po';
// Path to the root folder.
private const ROOT_DIR = __DIR__ . '/../../';
/**
* Rebuild the .POT, .PO and .PHP file.
*
* @param Event $event
*/
public static function languageFiles(Event $event): void
{
require $event->getComposer()->getConfig()->get('vendor-dir') . '/autoload.php';
$io = $event->getIO();
$po_files = glob(self::PO_FILE_PATTERN) ?: [];
foreach ($po_files as $po_file) {
$translation = new Translation($po_file);
$translations = $translation->asArray();
$io->write($po_file . ': ' . count($translations));
$php_file = dirname($po_file) . '/' . basename($po_file, '.po') . '.php';
$php_code = "<?php\n\nreturn " . var_export($translations, true) . ";\n";
file_put_contents($php_file, $php_code);
}
}
/**
* Ensure every class has a corresponding test script.
*
* @param Event $event
*
* @throws FilesystemException
*/
public static function missingTests(Event $event): void
{
require $event->getComposer()->getConfig()->get('vendor-dir') . '/autoload.php';
$io = $event->getIO();
$filesystem = new Filesystem(new LocalFilesystemAdapter(self::ROOT_DIR));
$scripts = Collection::make($filesystem->listContents('app', FilesystemReader::LIST_DEEP))
->filter(static function (array $file): bool {
return $file['type'] !== 'dir';
})
->map(static function (array $file): string {
return $file['path'];
})
->filter(static function (string $script): bool {
return !str_contains($script, 'Interface.php') && !str_contains($script, 'Abstract');
})
;
foreach ($scripts as $script) {
$class = strtr($script, ['app/' => '', '.php' => '', '/' => '\\']);
$test = strtr($script, ['app/' => 'tests/app/', '.php' => 'Test.php']);
if (!$filesystem->fileExists($test)) {
$io->write('Creating test script for: ' . $class);
$filesystem->write($test, self::testStub($class));
}
}
}
/**
* Create an empty test script.
*
* @param string $class
*
* @return string
*/
private static function testStub(string $class): string
{
$year = date('Y');
$namespace = strtr(dirname(strtr($class, ['\\' => '/'])), ['/' => '\\']);
$base_class = basename(strtr($class, ['\\' => '/']));
if ($namespace === '.') {
$namespace = 'Fisharebest\\Webtrees';
} else {
$namespace = 'Fisharebest\\Webtrees\\' . $namespace;
}
return <<<"end_of_file"
<?php
/**
* webtrees: online genealogy
* Copyright (C) {$year} webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace {$namespace};
use Fisharebest\\Webtrees\\TestCase;
/**
* Test harness for the class {$base_class}
*
* @covers {$namespace}\\{$base_class}
*/
class {$base_class}Test extends TestCase
{
}
end_of_file;
}
}
|