-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate.php
421 lines (361 loc) · 9.72 KB
/
generate.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
<?php
/**
* @file
* Contains a Subtheme generation script.
*/
define('GENERATOR_TEMPLATE_FOLDER', 'themes/material_base_subtheme');
define('GENERATOR_PLACEHOLDER', 'THEMENAME');
define('GENERATOR_DEFAULT_THEMENAME', 'material_top');
// Default path should be relative.
define('GENERATOR_DEFAULT_THEMES_PATH', '../../custom');
// Getting project name from environment variables.
if ($project = getenv('PROJECT_NAME')) {
define('GENERATOR_THEMENAME', 'material_' . $project);
}
else {
define('GENERATOR_THEMENAME', GENERATOR_DEFAULT_THEMENAME);
}
/**
* Main function.
*/
handle_arguments($argv, $argc);
/**
* Resolve options from command line arguments.
*
* Execute generate function with corresponding options.
*
* @param array $args
* Array of command line arguments.
* @param int $args_count
* Amount of command line arguments.
*
* @return int
* Result of executing generate function.
*/
function handle_arguments(array $args, $args_count) {
// Handling arguments by amount.
if ($args_count == 1) {
// No args.
return generate_subtheme();
}
elseif ($args_count == 2) {
// 1 argument.
if ($args[1] == '-h' || $args[1] == '--help' || $args[1] == 'help') {
// Argument is help calling.
return show_help();
}
else {
// Check that argument is valid themename.
if (validate_themename($args[1])) {
// Executing generation.
$variables['themename'] = $args[1];
return generate_subtheme($variables);
}
else {
echo 'Theme name not valid.' . PHP_EOL;
exit(1);
}
}
}
elseif ($args_count == 3) {
// 2 arguments.
// Check that 1st argument is valid themename.
if (validate_themename($args[1])) {
// Check that 2nd argument is existing path.
if ($path = validate_path($args[2])) {
// Executing generation.
$variables['themename'] = $args[1];
$variables['path'] = $path;
return generate_subtheme($variables);
}
else {
echo 'Path not valid.' . PHP_EOL;
exit(1);
}
}
else {
echo 'Theme name not valid.' . PHP_EOL;
exit(1);
}
}
else {
// More than 2 arguments.
echo 'Too many arguments.' . PHP_EOL;
exit(1);
}
}
/**
* Show help message.
*/
function show_help() {
echo 'Subtheme generator' . PHP_EOL;
echo PHP_EOL;
echo 'Usage: ' . PHP_EOL;
echo ' php generate.php [themename] [path to themes folder]' . PHP_EOL;
echo PHP_EOL;
echo 'Examples: ' . PHP_EOL;
echo ' php generate.php' . PHP_EOL;
echo ' php generate.php westeros' . PHP_EOL;
echo ' php generate.php westeros "../../custom"' . PHP_EOL;
echo ' php generate.php westeros "/var/www/html/web/themes/custom"' . PHP_EOL;
exit;
}
/**
* Validate themename.
*
* @param string $name
* Name for validate.
*
* @return bool
* TRUE if name valid,
* FALSE if name not valid.
*/
function validate_themename($name) {
if (preg_match('/^[a-z0-9_]+$/', $name)) {
return TRUE;
}
else {
echo 'Theme name should contain only lowercase alphanumeric characters and underscores.' . PHP_EOL;
return FALSE;
}
}
/**
* Validate path.
*
* @param string $path
* Path for validate.
*
* @return mixed
* Absolute path if path valid,
* FALSE if path not valid.
*/
function validate_path($path) {
if (substr($path, 0, 1) == '/') {
// Absolute path.
if (is_dir($path)) {
return realpath($path);
}
else {
echo '"' . $path . '" is not a valid path to folder.' . PHP_EOL;
return FALSE;
}
}
else {
// Relative path.
if (is_dir(__DIR__ . DIRECTORY_SEPARATOR . $path)) {
return realpath(__DIR__ . DIRECTORY_SEPARATOR . $path);
}
else {
echo '"' . __DIR__ . DIRECTORY_SEPARATOR . $path . '" is not a valid path to folder.' . PHP_EOL;
return FALSE;
}
}
// @todo Handle Windows absolute paths.
}
/**
* Generate subtheme.
*
* @param array $variables
* Array of arguments.
*/
function generate_subtheme(array $variables = []) {
if (isset($variables['themename'])) {
$themename = $variables['themename'];
}
else {
$themename = GENERATOR_THEMENAME;
}
if (isset($variables['path'])) {
// Already valid path.
$path = $variables['path'];
}
else {
// Checking default path is valid.
$path = __DIR__ . DIRECTORY_SEPARATOR . GENERATOR_DEFAULT_THEMES_PATH;
if (!is_dir($path)) {
// Creating default path folder.
if (!mkdir($path)) {
echo 'Can not create "' . $path . '".' . PHP_EOL;
exit(1);
}
}
// Providing valid path.
$path = realpath($path);
}
$theme_path = $path . DIRECTORY_SEPARATOR . $themename;
// Copy template folder to themes folder.
copy_template_folder($theme_path);
// Rename files containing placeholder.
rename_template_files($theme_path, $themename);
// Replace placeholders in files content.
replace_template_placeholders($theme_path, $themename);
// Unhide theme and update human name.
update_theme_info($theme_path, $themename);
echo 'Theme "' . $themename . '" was successfully generated.' . PHP_EOL;
exit;
}
/**
* Copy template folder.
*
* @param string $destination
* Path to new theme folder.
*
* @return mixed
* Result of executing.
*/
function copy_template_folder($destination) {
return copy_folder(__DIR__ . DIRECTORY_SEPARATOR . GENERATOR_TEMPLATE_FOLDER, $destination);
}
/**
* Recursively copy folder.
*
* @param string $source
* Path to source.
* @param string $destination
* Path to destination.
*
* @return mixed
* TRUE if success.
*/
function copy_folder($source, $destination) {
// Getting folder content.
if (!$folder = opendir($source)) {
echo 'Can not open "' . $source . '".' . PHP_EOL;
exit(1);
}
// Check for destination folder already exist.
if (is_dir($destination)) {
echo 'Destination folder "' . $destination . '" already exists, skipping.' . PHP_EOL;
// Not an error.
exit;
}
// Creating destination folder.
if (!mkdir($destination)) {
echo 'Can not create "' . $destination . '".' . PHP_EOL;
exit(1);
}
while (FALSE !== ($file = readdir($folder))) {
if (($file != '.') && ($file != '..')) {
$source_file = $source . DIRECTORY_SEPARATOR . $file;
$destination_file = $destination . DIRECTORY_SEPARATOR . $file;
if (is_dir($source_file)) {
copy_folder($source_file, $destination_file);
}
else {
// Copying.
if (!copy($source_file, $destination_file)) {
echo 'Can not copy "' . $source_file . '" to "' . $destination_file . '".' . PHP_EOL;
exit(1);
}
}
}
}
closedir($folder);
return TRUE;
}
/**
* Recursively rename template files.
*
* @param string $path
* Path to theme folder.
* @param string $themename
* Name of the theme.
*
* @return mixed
* TRUE if success.
*/
function rename_template_files($path, $themename) {
// Getting folder content.
if (!$folder = opendir($path)) {
echo 'Can not open "' . $path . '".' . PHP_EOL;
exit(1);
}
while (FALSE !== ($file = readdir($folder))) {
if (($file != '.') && ($file != '..')) {
$target_file = $path . DIRECTORY_SEPARATOR . $file;
if (is_dir($target_file)) {
rename_template_files($target_file, $themename);
}
else {
// Checking filename has placeholder.
if (strpos($file, GENERATOR_PLACEHOLDER) !== FALSE) {
// Preparing new file path.
$new_file = $path . DIRECTORY_SEPARATOR . str_replace(GENERATOR_PLACEHOLDER, $themename, $file);
// Renaming.
if (!rename($target_file, $new_file)) {
echo 'Can not rename "' . $target_file . '" to "' . $new_file . '".' . PHP_EOL;
exit(1);
}
}
}
}
}
closedir($folder);
return TRUE;
}
/**
* Recursively replace template placeholders.
*
* @param string $path
* Path to theme folder.
* @param string $themename
* Name of the theme.
*
* @return mixed
* TRUE if success.
*/
function replace_template_placeholders($path, $themename) {
// Getting folder content.
if (!$folder = opendir($path)) {
echo 'Can not open "' . $path . '".' . PHP_EOL;
exit(1);
}
while (FALSE !== ($file = readdir($folder))) {
if (($file != '.') && ($file != '..')) {
$target_file = $path . DIRECTORY_SEPARATOR . $file;
if (is_dir($target_file)) {
replace_template_placeholders($target_file, $themename);
}
else {
$file_content = file_get_contents($target_file);
$replace = 0;
$file_content = str_replace(GENERATOR_PLACEHOLDER, $themename, $file_content, $replace);
if ($replace) {
if (!file_put_contents($target_file, $file_content)) {
echo 'Can not write to "' . $target_file . '".' . PHP_EOL;
exit(1);
}
}
}
}
}
closedir($folder);
return TRUE;
}
/**
* Update theme properties in THEMENAME.info.yml.
*
* Comment out 'hidden: true', create human readable name.
*
* @param string $path
* Path to theme folder.
* @param string $themename
* Name of the theme.
*
* @return mixed
* TRUE if success.
*/
function update_theme_info($path, $themename) {
$info_file = $path . DIRECTORY_SEPARATOR . $themename . '.info.yml';
$name = ucfirst(str_replace('_', ' ', $themename));
$file_content = file_get_contents($info_file);
// Commenting out 'hidden' property.
$file_content = str_replace('hidden: true', '# hidden: true', $file_content);
// Updating theme name.
$file_content = str_replace('name: Theme name', 'name: ' . $name, $file_content);
if (!file_put_contents($info_file, $file_content)) {
echo 'Can not write to "' . $info_file . '".' . PHP_EOL;
exit(1);
}
return TRUE;
}