-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathControllerAllCommand.php
More file actions
86 lines (75 loc) · 2.79 KB
/
Copy pathControllerAllCommand.php
File metadata and controls
86 lines (75 loc) · 2.79 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
<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 0.1.0
* @license https://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace Bake\Command;
use Bake\Utility\TableScanner;
use Cake\Console\Arguments;
use Cake\Console\ConsoleIo;
use Cake\Console\ConsoleOptionParser;
use Cake\Datasource\ConnectionManager;
use Cake\ORM\Locator\LocatorAwareTrait;
/**
* Task class for creating all controllers at once
*/
class ControllerAllCommand extends BakeCommand
{
use LocatorAwareTrait;
protected ControllerCommand $controllerCommand;
/**
* @inheritDoc
*/
public static function defaultName(): string
{
return 'bake controller all';
}
/**
* Execute the command.
*
* @param \Cake\Console\Arguments $args The command arguments.
* @param \Cake\Console\ConsoleIo $io The console io
* @return int|null The exit code or null for success
*/
public function execute(Arguments $args, ConsoleIo $io): ?int
{
$this->extractCommonProperties($args);
/** @var \Cake\Database\Connection $connection */
$connection = ConnectionManager::get($this->connection);
$scanner = new TableScanner($connection);
foreach ($scanner->listUnskipped() as $table) {
$this->getTableLocator()->clear();
$controllerArgs = new Arguments([$table], $args->getOptions(), ['name']);
$this->controllerCommand->execute($controllerArgs, $io);
}
return static::CODE_SUCCESS;
}
/**
* Gets the option parser instance and configures it.
*
* @param \Cake\Console\ConsoleOptionParser $parser The console option parser
* @return \Cake\Console\ConsoleOptionParser
*/
protected function buildOptionParser(ConsoleOptionParser $parser): ConsoleOptionParser
{
// Assigned here (not initialize()) because on CakePHP 5.4+ the parser is built
// before initialize() runs, while older versions build it after. ??= keeps it
// safe under either ordering and idempotent across repeated calls.
$this->controllerCommand ??= new ControllerCommand();
$parser = $this->controllerCommand->buildOptionParser($parser);
$parser
->setDescription('Bake all controller files with tests.')
->setEpilog('');
return $parser;
}
}