forked from consolidation/robo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RoboFile.php
405 lines (357 loc) · 13.7 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
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
<?php
use Symfony\Component\Finder\Finder;
class RoboFile extends \Robo\Tasks
{
// Example:
// ./robo wrap 'Symfony\Component\Filesystem\Filesystem' FilesystemStack
public function wrap($className, $wrapperClassName = "")
{
$delegate = new ReflectionClass($className);
$leadingCommentChars = " * ";
$methodDescriptions = [];
$methodImplementations = [];
$immediateMethods = [];
foreach ($delegate->getMethods(ReflectionMethod::IS_PUBLIC) as $method) {
$methodName = $method->getName();
$getter = preg_match('/^(get|has|is)/', $methodName);
$setter = preg_match('/^(set|unset)/', $methodName);
$argPrototypeList = [];
$argNameList = [];
$needsImplementation = false;
foreach ($method->getParameters() as $arg) {
$argDescription = '$' . $arg->name;
$argNameList[] = $argDescription;
if ($arg->isOptional()) {
$argDescription = $argDescription . ' = ' . str_replace("\n", "", var_export($arg->getDefaultValue(), true));
// We will create wrapper methods for any method that
// has default parameters.
$needsImplementation = true;
}
$argPrototypeList[] = $argDescription;
}
$argPrototypeString = implode(', ', $argPrototypeList);
$argNameListString = implode(', ', $argNameList);
if ($methodName[0] != '_') {
$methodDescriptions[] = "@method $methodName($argPrototypeString)";
if ($getter) {
$immediateMethods[] = " public function $methodName($argPrototypeString)\n {\n return \$this->delegate->$methodName($argNameListString);\n }";
} elseif ($setter) {
$immediateMethods[] = " public function $methodName($argPrototypeString)\n {\n \$this->delegate->$methodName($argNameListString);\n return \$this;\n }";
} elseif ($needsImplementation) {
// Include an implementation for the wrapper method if necessary
$methodImplementations[] = " protected function _$methodName($argPrototypeString)\n {\n \$this->delegate->$methodName($argNameListString);\n }";
}
}
}
$classNameParts = explode('\\', $className);
$delegate = array_pop($classNameParts);
$delegateNamespace = implode('\\', $classNameParts);
if (empty($wrapperClassName)) {
$wrapperClassName = $delegate;
}
$replacements['{delegateNamespace}'] = $delegateNamespace;
$replacements['{delegate}'] = $delegate;
$replacements['{wrapperClassName}'] = $wrapperClassName;
$replacements['{taskname}'] = "task$delegate";
$replacements['{methodList}'] = $leadingCommentChars . implode("\n$leadingCommentChars", $methodDescriptions);
$replacements['{immediateMethods}'] = "\n\n" . implode("\n\n", $immediateMethods);
$replacements['{methodImplementations}'] = "\n\n" . implode("\n\n", $methodImplementations);
$template = file_get_contents(__DIR__ . "/GeneratedWrapper.tmpl");
$template = str_replace(array_keys($replacements), array_values($replacements), $template);
print $template;
}
public function release()
{
$this->yell("Releasing Robo");
$this->docs();
$this->taskGitStack()
->add('-A')
->commit("auto-update")
->pull()
->push()
->run();
$this->pharPublish();
$this->publish();
$this->taskGitHubRelease(\Robo\Runner::VERSION)
->uri('Codegyre/Robo')
->askDescription()
->run();
$this->versionBump();
}
public function test($args = "")
{
return $this->taskCodecept()
->args($args)
->run();
}
public function changed($addition)
{
$this->taskChangelog()
->version(\Robo\Runner::VERSION)
->change($addition)
->run();
}
public function versionBump($version = null)
{
if (!$version) {
$versionParts = explode('.', \Robo\Runner::VERSION);
$versionParts[count($versionParts)-1]++;
$version = implode('.', $versionParts);
}
$this->taskReplaceInFile(__DIR__.'/src/Runner.php')
->from("VERSION = '".\Robo\Runner::VERSION."'")
->to("VERSION = '".$version."'")
->run();
}
/**
* generate docs
*/
public function docs()
{
$collection = $this->collection();
$files = Finder::create()->files()->name('*.php')->in('src/Task');
$docs = [];
foreach ($files as $file) {
if ($file->getFileName() == 'loadTasks.php') {
continue;
}
if ($file->getFileName() == 'loadShortcuts.php') {
continue;
}
$ns = $file->getRelativePath();
if (!$ns) {
continue;
}
$class = basename(substr($file, 0, -4));
class_exists($class = "Robo\\Task\\$ns\\$class");
$docs[$ns][] = $class;
}
ksort($docs);
foreach ($docs as $ns => $tasks) {
$taskGenerator = $this->taskGenDoc("docs/tasks/$ns.md");
$taskGenerator->filterClasses(function (\ReflectionClass $r) {
return !($r->isAbstract() or $r->isTrait()) and $r->implementsInterface('Robo\Contract\TaskInterface');
})->prepend("# $ns Tasks");
sort($tasks);
foreach ($tasks as $class) {
$taskGenerator->docClass($class);
}
$taskGenerator->filterMethods(
function (\ReflectionMethod $m) {
if ($m->isConstructor() or $m->isDestructor() or $m->isStatic()) {
return false;
}
return !in_array($m->name, ['run', '', '__call', 'getCommand', 'getPrinted']) and $m->isPublic(); // methods are not documented
}
)->processClassSignature(
function ($c) {
return "## " . preg_replace('~Task$~', '', $c->getShortName()) . "\n";
}
)->processClassDocBlock(
function (\ReflectionClass $c, $doc) {
$doc = preg_replace('~@method .*?(.*?)\)~', '* `$1)` ', $doc);
$doc = str_replace('\\'.$c->getName(), '', $doc);
return $doc;
}
)->processMethodSignature(
function (\ReflectionMethod $m, $text) {
return str_replace('#### *public* ', '* `', $text) . '`';
}
)->processMethodDocBlock(
function (\ReflectionMethod $m, $text) {
return $text ? ' ' . trim(strtok($text, "\n"), "\n") : '';
}
)->addToCollection($collection);
}
$collection->run();
}
/**
* Builds a site in gh-pages branch. Uses mkdocs
*/
public function publish()
{
$current_branch = exec('git rev-parse --abbrev-ref HEAD');
$collection = $this->collection();
$this->taskGitStack()
->checkout('site')
->merge('master')
->addToCollection($collection);
$this->taskGitStack()
->checkout($current_branch)
->addAsCompletion($collection);
$this->taskFilesystemStack()
->copy('CHANGELOG.md', 'docs/changelog.md')
->addToCollection($collection);
$this->taskFilesystemStack()
->remove('docs/changelog.md')
->addAsCompletion($collection);
$this->taskExec('mkdocs gh-deploy')
->addToCollection($collection);
$collection->run();
}
public function pharBuild()
{
$collection = $this->collection();
$this->taskComposerInstall()
->noDev()
->printed(false)
->addToCollection($collection);
$packer = $this->taskPackPhar('robo.phar');
$files = Finder::create()->ignoreVCS(true)
->files()
->name('*.php')
->path('src')
->path('vendor')
->exclude('symfony/config/Tests')
->exclude('symfony/console/Tests')
->exclude('symfony/event-dispatcher/Tests')
->exclude('symfony/filesystem/Tests')
->exclude('symfony/finder/Tests')
->exclude('symfony/process/Tests')
->exclude('henrikbjorn/lurker/tests')
->in(__DIR__);
foreach ($files as $file) {
$packer->addFile($file->getRelativePathname(), $file->getRealPath());
}
$packer->addFile('robo','robo')
->executable('robo')
->addToCollection($collection);
$this->taskComposerInstall()
->printed(false)
->addToCollection($collection);
$collection->run();
}
public function pharInstall()
{
$this->taskExec('sudo cp')
->arg('robo.phar')
->arg('/usr/bin/robo')
->run();
}
public function pharPublish()
{
$this->pharBuild();
$this->_rename('robo.phar', 'robo-release.phar');
$this->taskGitStack()->checkout('gh-pages')->run();
$this->taskFilesystemStack()
->remove('robo.phar')
->rename('robo-release.phar', 'robo.phar')
->run();
$this->taskGitStack()
->add('robo.phar')
->commit('robo.phar published')
->push('origin','gh-pages')
->checkout('master')
->run();
}
public function tryWatch()
{
$this->taskWatch()->monitor(['composer.json', 'composer.lock'], function() {
$this->taskComposerUpdate()->run();
})->run();
}
public function tryInput()
{
$answer = $this->ask('how are you?');
$this->say('You are '.$answer);
$yes = $this->confirm('Do you want one more question?');
if (!$yes) return;
$lang = $this->askDefault('what is your favorite scripting language?', 'PHP');
$this->say($lang);
$pin = $this->askHidden('Ok, now tell your PIN code (it is hidden)');
$this->yell('Ha-ha, your pin code is: '.$pin);
$this->say('Bye!');
}
/**
* Test parallel execution
*/
public function tryPara()
{
$this->taskParallelExec()
->process('php ~/demos/robotests/parascript.php hey')
->process('php ~/demos/robotests/parascript.php hoy')
->process('php ~/demos/robotests/parascript.php gou')
->process('php ~/demos/robotests/parascript.php die')
->run();
}
public function tryOptbool($opts = ['silent|s' => false])
{
if (!$opts['silent']) $this->say("Hello, world");
}
public function tryServer()
{
$this->taskServer(8000)
->dir('site')
->arg('site/index.php')
->run();
}
public function tryOpenBrowser()
{
$this->taskOpenBrowser([
'http://robo.li',
'https://github.com/Codegyre/Robo'
])
->run();
}
public function tryInteractive()
{
new SomeTask();
$this->_exec('php -r "echo php_sapi_name();"');
}
public function tryError()
{
$result = $this->taskExec('ls xyzzy' . date('U'))->dir('/tmp')->run();
}
public function trySuccess()
{
$result = $this->taskExec('pwd')->run();
}
/**
* Run the PHP Codesniffer on a file or directory.
*
* @param string $file
* A file or directory to analyze.
* @param bool $autofix
* Whether to run the automatic fixer or not.
*/
public function sniff($file = 'src/', $autofix = false)
{
$this->taskExec("./vendor/bin/phpcs --standard=PSR2 {$file}")->run();
if ($autofix == true) {
$this->taskExec('./vendor/bin/phpcbf --standard=PSR2 {$file}')->run();
}
}
public function tryDeprecated()
{
$result = (new \Robo\Task\Base\Exec('pwd'))->run();
}
public function tryTmpDir()
{
// Set up a collection to add tasks to
$collection = $this->collection();
// Get a temporary directory to work in. Note that we get a
// name back, but the directory is not created until the task
// runs. This technically is not thread-safe, but we create
// a random name, so it is unlikely to conflict.
$tmpPath = $this->taskTmpDir()
->addToCollection($collection)
->getPath();
// We can create the temporary directory early by running
// 'runWithoutCompletion()'. n.b. if we called 'run()' at
// this point, the collection's 'complete()' method would be
// called, and the temporary directory would be deleted.
$mktmpResult = $collection->runWithoutCompletion();
if (is_dir($tmpPath)) {
$this->say("Created a temporary directory at $tmpPath");
} else {
$this->say("Requested a temporary directory at $tmpPath, but it was not created");
}
// Run the task collection
$result = $collection->run();
if (is_dir($tmpPath)) {
$this->say("The temporary directory at $tmpPath was not cleaned up after the collection completed.");
} else {
$this->say("The temporary directory at $tmpPath was automatically deleted.");
}
}
}