-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRoboFile.php
365 lines (333 loc) · 10 KB
/
RoboFile.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
<?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();
return $this->collectionBuilder()
->addTask($this->buildApp(__DIR__))
->addTask($this->installDependencies(__DIR__))
->addTask($this->migrateUp());
}
private function installDependencies($appPath)
{
// Install composer dependencies
$task = $this->taskComposerInstall()
->workingDir($appPath)
->preferDist();
if ($this->configVariables['ENVIRONEMENT'] == 'production') {
$task->noDev()
->optimizeAutoloader();
}
return $task;
}
private function buildApp($appPath)
{
return $this->collectionBuilder()
->addTask($this->taskCopyReplaceDir([$this->buildDirectory => $appPath])
->from(array_keys($this->configVariables))
->to($this->configVariables)
->startDelimiter('<##')
->endDelimiter('##>')
->dirPermissions(0755)
->filePermissions(0644)
)->addTask($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;
}
}
return $this->collectionBuilder()
->addTask($this->taskConcat($htaccess_parts)
->to($path . '/.htaccess')
)->addTask($this->taskReplacePlaceholders($path . '/.htaccess')
->from(array_keys($config))
->to($config)
->startDelimiter('<##')
->endDelimiter('##>')
);
}
/**
* 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
return $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()
{
return $this->taskExec('vendor/bin/phinx')
->arg('migrate');
}
/**
* Migration rollback
* Undo previous migrations executed, optionally down to a specific version
*/
public function migrateDown()
{
return $this->taskExec('vendor/bin/phinx')
->arg('rollback');
}
/**
* 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);
return $this->taskExec('vendor/bin/phinx')
->arg('create')
->arg($name);
}
/**
* Seed create
* Create a seed file
*
* @param string $name The seed name
*/
public function seedCreate($name)
{
return $this->taskExec('vendor/bin/phinx')
->arg('seed:create')
->arg($name);
}
/**
* 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;
}
/**
* Clean project
*/
public function clean()
{
return $this->collectionBuilder()
->addTask($this->cleanGit())
->addTask($this->cleanWaste());
}
/**
* Git prune
*/
public function cleanGit()
{
$this->loadConfig();
return $this->taskGitStack()
->stopOnFail()
->exec('fetch --all --prune');
}
/**
* Delete files likes ._* .DS_Store, etc.
*/
public function cleanWaste()
{
return $this->taskCleanWaste(__DIR__);
}
/**
* Start a new feature
*
* @param string $name The feature name
*/
public function featureStart($name)
{
$this->loadConfig();
return $this->taskFeatureStart($name, $this->configVariables['GIT_PATH']);
}
/**
* Finish a feature
*
* @param string $name The feature name
*/
public function featureFinish($name)
{
$this->loadConfig();
return $this->taskFeatureFinish($name, $this->configVariables['GIT_PATH']);
}
/**
* 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']);
}
/**
* 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']);
}
/**
* Start a new release
*
* @option string $semversion Version number->run()
* @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']);
}
/**
* 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']);
}
/**
* 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);
}
}