This repository has been archived by the owner on Jul 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 244
/
builder.php
277 lines (236 loc) · 7.93 KB
/
builder.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
<?php
/**
* Class Builder2
*
* Builds files from given configuration and source templates.
*
* This extends from the original Builder in the `docker-magento` repository.
*/
class Builder2
{
const DEFAULT_CONFIG_FILE = __DIR__ . DIRECTORY_SEPARATOR . "config.json";
const DEFAULT_TEMPLATE_DIR = __DIR__ . DIRECTORY_SEPARATOR . "src/";
const DEFAULT_DESTINATION_DIR = __DIR__;
const DEFAULT_EXECUTABLE_PERMISSIONS = 0755;
const DEFAULT_VERBOSE_LEVEL = 1;
/**
* Build targets and their configuration.
*
* @var array
*/
protected $build_config = [];
/**
* Directory to load template files from.
*
* @var string
*/
protected $template_dir;
/**
* Destination directory for generated files.
*
* @var string
*/
protected $destination_dir;
/**
* File permissions for executable files.
*
* @var int
*/
protected $executable_permissions;
/**
* Verbosity level.
*
* @var int
*/
protected $verbose_level;
public function __construct($options = [])
{
$this->template_dir = $options["template_dir"] ?? static::DEFAULT_TEMPLATE_DIR;
$this->destination_dir = $options["destination_dir"] ?? static::DEFAULT_DESTINATION_DIR;
$this->executable_permissions = $options["executable_file_permissions"] ?? static::DEFAULT_EXECUTABLE_PERMISSIONS;
$this->verbose_level = $options["verbose"] ?? static::DEFAULT_VERBOSE_LEVEL;
$this->loadConfig($options["config_file"] ?? static::DEFAULT_CONFIG_FILE);
}
/**
* Build the files described in the loaded config.
*/
public function run()
{
foreach ($this->build_config as $name => $config) {
$this->verbose(sprintf("Building '%s'...", $name), 1);
foreach ($config["files"] as $file_name => $variables) {
$destination_file = $this->getDestinationFile($file_name, $config);
$contents = "";
if ($template_file = $this->getTemplateFile($file_name, $config)) {
// Merge global variables to the template variables
$variables["version"] = $config["version"];
$variables["flavour"] = $config["flavour"];
$variables["imageSpecificPhpExtensions"] = $config["phpExtensions"];
$variables["xdebugVersion"] = $config["xdebugVersion"];
// Determine whether we should load with the template renderer, or whether we should straight up
// just load the file from disk.
if ($variables['_disable_variables'] ?? false) {
$contents = file_get_contents($template_file);
} else {
$contents = $this->renderTemplate($template_file, $variables);
}
$contents = str_replace('{{generated_by_builder}}', 'This file is automatically generated. Do not edit directly.', $contents);
}
$this->verbose(sprintf("\tWriting '%s'...", $destination_file), 2);
$this->writeFile($destination_file, $contents);
if ($variables["executable"] ?? false) {
$this->verbose(sprintf("\tUpdating permissions on '%s' to '%o'...", $destination_file, $this->executable_permissions), 2);
$this->setFilePermissions($destination_file, $this->executable_permissions);
}
}
}
}
/**
* Load the build configuration from the given file.
*
* @param string $file
*
* @return $this
* @throws Exception
*/
protected function loadConfig($file)
{
$config = json_decode(file_get_contents($file), true);
if (!is_array($config)) {
throw new Exception(sprintf("Invalid configuration in %s!", $file));
}
$this->build_config = $config;
return $this;
}
/**
* Return the template file name for the given file.
*
* @param string $filename
* @param array $config
*
* @return null|string
*/
protected function getTemplateFile($filename, $config)
{
$potential_file_names = [
sprintf("%s-%s-%s", $filename, $config["version"], $config["flavour"]),
sprintf("%s-%s", $filename, $config["version"]),
sprintf("%s-%s", $filename, $config["flavour"]),
$filename,
];
foreach ($potential_file_names as $potential_file_name) {
$path = $this->template_dir . DIRECTORY_SEPARATOR . $potential_file_name;
if (file_exists($path) && is_readable($path)) {
return $path;
}
}
return null;
}
/**
* Get the destination for the given file.
*
* @param string $file_name
* @param array $config
*
* @return string
*/
protected function getDestinationFile($file_name, $config)
{
return implode(DIRECTORY_SEPARATOR, [
$this->destination_dir,
$config["version"] . '-' . $config["flavour"],
$file_name,
]);
}
/**
* Render the given template file using the provided variables and return the resulting output.
*
* @param string $template_file
* @param array $variables
*
* @return string
*/
protected function renderTemplate($template_file, $variables)
{
extract($variables, EXTR_OVERWRITE);
ob_start();
include $template_file;
$output = ob_get_clean();
return $output ?: "";
}
/**
* Write the contents to the given file.
*
* @param string $file_name
* @param string $contents
*
* @return $this
* @throws Exception
*/
protected function writeFile($file_name, $contents)
{
$directory = dirname($file_name);
// If the directory doesn't created then try to create the directory.
if (!is_dir($directory)) {
// Create the directory, preventing race conditions if another process creates the directory for us.
if (!@mkdir($directory, 0755, true) && !is_dir($directory)) {
throw new Exception(sprintf("Unable to create directory %s!", $directory));
}
}
if (file_put_contents($file_name, $contents) === false) {
throw new Exception(sprintf("Failed to write %s!", $file_name));
}
return $this;
}
/**
* Update the permissions on the given file.
*
* @param string $file_name
* @param int $permissions
*
* @return $this
*/
protected function setFilePermissions($file_name, $permissions = 0644)
{
chmod($file_name, $permissions);
return $this;
}
/**
* Print an informational message to the command line.
*
* @param string $message
* @param int $level
* @param bool $newline
*
* @return $this
*/
protected function verbose($message, $level = 1, $newline = true)
{
if ($level <= $this->verbose_level) {
printf("%s%s", $message, $newline ? PHP_EOL : "");
}
return $this;
}
}
/**
* __MAIN__
*/
$args = getopt("hvq");
$options = [];
if (isset($args["h"])) {
echo <<<USAGE
Usage: php builder.php [options]
Options:
-h Print out this help message.
-v Enable verbose output. Can be used multiple times to increase verbosity level.
-q Silence informational messages.
USAGE;
exit;
}
if (isset($args["q"])) {
$options["verbose"] = 0;
} else if (isset($args["v"])) {
$options["verbose"] = count($args["v"]);
}
$builder = new Builder2($options);
$builder->run();