-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRoboFile.php
More file actions
479 lines (437 loc) · 13.6 KB
/
Copy pathRoboFile.php
File metadata and controls
479 lines (437 loc) · 13.6 KB
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
<?php
use Globalis\Robo\Core\Command;
use Globalis\Robo\Core\GitCommand;
use Globalis\Robo\Core\SemanticVersion;
use Symfony\Component\Process\Process;
class RoboFile extends \Globalis\Robo\Tasks
{
/**
* Répertoire contenant les variables de configuration
* @var string
*/
private $configDirectory = __DIR__ . '/.robo/config/';
/**
* Répertoire contenant les fichiers de configuration de l'application
* @var string
*/
private $buildDirectory = __DIR__ . '/.robo/build';
/**
* @var string
*/
private $partsDirectory = __DIR__ . '/.robo/parts';
/**
* Install project
*/
public function install()
{
$this->loadConfig();
$this->buildApp(__DIR__);
$this->installDependencies(__DIR__);
$this->_assetsBuild(__DIR__);
$this->migrateUp();
}
private function installDependencies($appPath)
{
// Install composer dependencies
$task = $this->taskComposerInstall()
->workingDir($appPath)
->preferDist();
if ($this->configVariables['ENVIRONEMENT'] == 'production') {
$task->noDev()
->optimizeAutoloader();
}
$task->run();
// Install NPM dependencies
$task = $this->taskExec('make')
->arg('install')
->dir($appPath . '/public')
->run();
}
/**
* Build portal assets
*/
public function assetsBuild()
{
$this->loadConfig();
$this->_assetsBuild(__DIR__);
}
/**
* Watch changes on portal assets
*/
public function assetsWatch()
{
$this->loadConfig();
$this->taskWatch()
->monitor('public/assets/styles', function () {
$this->_assetsBuildStyles(__DIR__);
})
->monitor('public/assets/scripts', function () {
$this->_assetsBuildScripts(__DIR__);
})
->monitor('public/assets/images', function () {
$this->_assetsBuildImages(__DIR__);
})
->monitor('public/assets/fonts', function () {
$this->_assetsBuildFonts(__DIR__);
})->run();
}
private function _assetsBuild($appPath)
{
$this->_assetsBuildStyles($appPath);
$this->_assetsBuildScripts($appPath);
$this->_assetsBuildImages($appPath);
$this->_assetsBuildFonts($appPath);
}
private function _assetsBuildStyles($appPath)
{
$this->taskExec('node_modules/.bin/node-sass')
->dir(__DIR__ . '/public/')
->rawArg('--output-style=compressed')
->rawArg('assets/styles/main.scss')
->rawArg('-o ' . $appPath .'/public/dist/styles/')
->taskExec('node_modules/.bin/postcss')
->dir(__DIR__ . '/public/')
->rawArg('--config postcss.js')
->rawArg('--replace ' . $appPath .'/public/dist/styles/main.css')
->run();
$this->taskExec('node_modules/.bin/node-sass')
->dir(__DIR__ . '/public/')
->rawArg('--output-style=compressed')
->rawArg('assets/styles/debug.scss')
->rawArg('-o ' . $appPath .'/public/dist/styles/')
->taskExec('node_modules/.bin/postcss')
->dir(__DIR__ . '/public/')
->rawArg('--config postcss.js')
->rawArg('--replace ' . $appPath .'/public/dist/styles/debug.css')
->run();
}
private function _assetsBuildScripts($appPath)
{
$this->taskExec('node_modules/.bin/uglifyjs')
->dir(__DIR__ . '/public/')
->rawArg(__DIR__ . '/public/assets/scripts/*.js')
->rawArg('-o ' . $appPath .'/public/dist/scripts/main.js')
->run();
$this->taskExec('cp')
->dir(__DIR__ . '/public/')
->rawArg('-r ' . $appPath . '/public/assets/scripts/lib dist/scripts')
->run();
$this->taskExec('node_modules/.bin/uglifyjs')
->dir(__DIR__ . '/public/')
->rawArg(__DIR__ . '/public/node_modules/jquery/dist/jquery.js')
->rawArg(__DIR__ . '/public/node_modules/popper.js/dist/umd/popper.js')
->rawArg(__DIR__ . '/public/node_modules/bootstrap/dist/js/bootstrap.js')
->rawArg('-o ' . $appPath .'/public/dist/scripts/vendor.js')
->run();
}
private function _assetsBuildImages($appPath)
{
$this->taskImageMinify(__DIR__ . '/public/assets/images/*')
->to($appPath .'/public/dist/images/')
->run();
}
private function _assetsBuildFonts($appPath)
{
$this->taskRsync()
->fromPath(__DIR__ . '/public/assets/fonts')
->toPath($appPath . '/public/dist/')
->recursive()
->delete()
->option('perms')
->option('chmod', 'Du=rwx,Dgo=rx,Fu=rw,Fgo=r')
->run();
}
private function buildApp($appPath)
{
$this->taskCopyReplaceDir([$this->buildDirectory => $appPath])
->from(array_keys($this->configVariables))
->to($this->configVariables)
->startDelimiter('<##')
->endDelimiter('##>')
->dirPermissions(0755)
->filePermissions(0644)
->run();
// Build part
$this->buildParts($appPath);
}
private function buildParts($path, $config = null)
{
$config = ($config?: $this->configVariables);
$env = $config['ENVIRONEMENT'];
$htaccess_parts_path = $this->partsDirectory . '/htaccess/';
$htaccess_parts =
[
$htaccess_parts_path . 'htaccess-general',
$htaccess_parts_path . 'htaccess-urls',
$htaccess_parts_path . 'htaccess-performances',
$htaccess_parts_path . 'htaccess-php',
$htaccess_parts_path . 'htaccess-security',
];
foreach($htaccess_parts as $key => $part) {
$part_env = $part . '-' . $env;
if(file_exists($part_env)) {
$htaccess_parts[$key] = $part_env;
}
}
$this->taskConcat($htaccess_parts)
->to($path . '/.htaccess')
->run();
$this->taskReplacePlaceholders($path . '/.htaccess')
->from(array_keys($config))
->to($config)
->startDelimiter('<##')
->endDelimiter('##>')
->run();
}
/**
* Configure App
*/
public function config()
{
$this->configVariables = $this->taskConfiguration()
->initConfig($this->getProperties('config'))
->initLocal($this->getProperties('local'))
->initSettings($this->getProperties('settings'))
->configFilePath($this->configDirectory . 'my.config')
->force(true)
->run()
->getData();
// Install project
$this->install();
}
private function loadConfig()
{
$this->configVariables = $this->taskConfiguration()
->initConfig($this->getProperties('config'))
->initLocal($this->getProperties('local'))
->initSettings($this->getProperties('settings'))
->configFilePath($this->configDirectory . 'my.config')
->run()
->getData();
}
/**
* Retourne les propriétés de configurations
*
* @param string $type
* @return array
*/
private function getProperties($type)
{
if (!isset($this->properties)) {
$this->properties = include $this->configDirectory . 'properties.php';
}
return $this->properties[$type];
}
/**
* Database migrate
* Runs all of the available migrations, optionally up to a specific version
*/
public function migrateUp()
{
$this->taskExec('vendor/bin/phinx')
->arg('migrate')
->run();
}
/**
* Migration rollback
* Undo previous migrations executed, optionally down to a specific version
*/
public function migrateDown()
{
$this->taskExec('vendor/bin/phinx')
->arg('rollback')
->run();
}
/**
* Migration create
* Create a new migration file
*
* @param string $name The migration name
*/
public function migrateCreate($name)
{
$name = explode(' ', str_replace(['_', '-'], ' ', $name));
foreach ($name as &$word) {
$word = mb_strtoupper(mb_substr($word, 0, 1)) . mb_substr($word, 1);
}
$name= implode('', $name);
$this->taskExec('vendor/bin/phinx')
->arg('create')
->arg($name)
->run();
}
/**
* Seed create
* Create a seed file
*
* @param string $name The seed name
*/
public function seedCreate($name)
{
$this->taskExec('vendor/bin/phinx')
->arg('seed:create')
->arg($name)
->run();
}
/**
* Seed run
* Run a seed file
*
* @param string $name The seed name
*/
public function seedRun($name = null)
{
$task = $this->taskExec('vendor/bin/phinx')
->arg('seed:run');
if ($name) {
$task->option('-s ' . $name);
}
return $task->run();
}
/**
* Clean project
*/
public function clean()
{
$this->cleanGit();
$this->cleanWaste();
}
/**
* Git prune
*/
public function cleanGit()
{
$this->loadConfig();
$this->taskGitStack()
->stopOnFail()
->exec('fetch --all --prune')
->run();
}
/**
* Delete files likes ._* .DS_Store, etc.
*/
public function cleanWaste()
{
$this->taskCleanWaste(__DIR__)->run();
}
/**
* Start a new feature
*
* @param string $name The feature name
*/
public function featureStart($name)
{
$this->loadConfig();
return $this->taskFeatureStart($name, $this->configVariables['GIT_PATH'])->run();
}
/**
* Finish a feature
*
* @param string $name The feature name
*/
public function featureFinish($name)
{
$this->loadConfig();
return $this->taskFeatureFinish($name, $this->configVariables['GIT_PATH'])->run();
}
/**
* Start a new hotfix
*
* @option string $semversion Version number
* @option string $type Hotfix type (path, minor)
*/
public function hotfixStart($opts = ['semversion' => null, 'type' => 'patch'])
{
$this->loadConfig();
if (empty($opts['semversion'])) {
$version = $this->getVersion()
->increment($opts['type']);
} else {
$version = $opts['semversion'];
}
$this->loadConfig();
return $this->taskHotfixStart((string)$version, $this->configVariables['GIT_PATH'])->run();
}
/**
* Finish a hotfix
*
* @option string $semversion Version number
* @option string $type Hotfix type (path, minor)
*/
public function hotfixFinish($opts = ['semversion' => null, 'type' => 'patch'])
{
$this->loadConfig();
if (empty($opts['semversion'])) {
$version = $this->getVersion()
->increment($opts['type']);
} else {
$version = $opts['semversion'];
}
return $this->taskHotfixFinish((string)$version, $this->configVariables['GIT_PATH'])->run();
}
/**
* Start a new release
*
* @option string $semversion Version number
* @option string $type Relase type (minor, major)
*/
public function releaseStart($opts = ['semversion' => null, 'type' => 'minor'])
{
$this->loadConfig();
if (empty($opts['semversion'])) {
$version = $this->getVersion()
->increment($opts['type']);
} else {
$version = $opts['semversion'];
}
return $this->taskReleaseStart((string)$version, $this->configVariables['GIT_PATH'])->run();
}
/**
* Finish a release
*
* @option string $semversion Version number
* @option string $type Relase type (minor, major)
*/
public function releaseFinish($opts = ['semversion' => null, 'type' => 'minor'])
{
$this->loadConfig();
if (empty($opts['semversion'])) {
$version = $this->getVersion()
->increment($opts['type']);
} else {
$version = $opts['semversion'];
}
return $this->taskReleaseFinish((string)$version, $this->configVariables['GIT_PATH'])->run();
}
/**
* Return current version
*
* @return SemanticVersion
*/
private function getVersion()
{
// Get version from tag
$cmd = new Command($this->configVariables['GIT_PATH']);
$cmd = $cmd->arg('tag')
->execute();
$output = explode(PHP_EOL, trim($cmd->getOutput()));
$currentVersion = '0.0.0';
foreach ($output as $tag) {
if (preg_match(SemanticVersion::REGEX, $tag)) {
if (version_compare($currentVersion, $tag, '<')) {
$currentVersion = $tag;
}
}
}
return new SemanticVersion($currentVersion);
}
private function gitCheckout($branch)
{
$cmd = new GitCommand($this->configVariables['GIT_PATH']);
if (!$cmd->isCleanWorkingTree()) {
$this->io->error("Working tree contains unstaged changes. Aborting.");
return false;
}
return $cmd->checkout($branch);
}
}