|
1
|
|
|
<?php |
|
2
|
|
|
/* (c) Anton Medvedev <[email protected]> |
|
3
|
|
|
* |
|
4
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
5
|
|
|
* file that was distributed with this source code. |
|
6
|
|
|
*/ |
|
7
|
|
|
|
|
8
|
|
|
namespace Deployer\Console; |
|
9
|
|
|
|
|
10
|
|
|
use Deployer\Initializer\Initializer; |
|
11
|
|
|
use Deployer\Initializer\Template\CakeTemplate; |
|
12
|
|
|
use Deployer\Initializer\Template\CodeIgniterTemplate; |
|
13
|
|
|
use Deployer\Initializer\Template\CommonTemplate; |
|
14
|
|
|
use Deployer\Initializer\Template\DrupalTemplate; |
|
15
|
|
|
use Deployer\Initializer\Template\LaravelTemplate; |
|
16
|
|
|
use Deployer\Initializer\Template\SymfonyTemplate; |
|
17
|
|
|
use Deployer\Initializer\Template\Yii2AdvancedAppTemplate; |
|
18
|
|
|
use Deployer\Initializer\Template\Yii2BasicAppTemplate; |
|
19
|
|
|
use Deployer\Initializer\Template\YiiTemplate; |
|
20
|
|
|
use Deployer\Initializer\Template\ZendTemplate; |
|
21
|
|
|
use Symfony\Component\Console\Command\Command; |
|
22
|
|
|
use Symfony\Component\Console\Input\InputInterface; |
|
23
|
|
|
use Symfony\Component\Console\Input\InputOption; |
|
24
|
|
|
use Symfony\Component\Console\Output\OutputInterface; |
|
25
|
|
|
use Symfony\Component\Console\Style\SymfonyStyle; |
|
26
|
|
|
use Symfony\Component\Process\Exception\RuntimeException; |
|
27
|
|
|
use Symfony\Component\Process\Process; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* The command for initialize Deployer system in your project |
|
31
|
|
|
* |
|
32
|
|
|
* @author Vitaliy Zhuk <[email protected]> |
|
33
|
|
|
*/ |
|
34
|
|
|
class InitCommand extends Command |
|
35
|
|
|
{ |
|
36
|
|
|
/** |
|
37
|
|
|
* @var Initializer |
|
38
|
|
|
*/ |
|
39
|
|
|
private $initializer; |
|
40
|
|
|
|
|
41
|
|
|
/** |
|
42
|
|
|
* @var array |
|
43
|
|
|
*/ |
|
44
|
|
|
private $availableTemplates; |
|
45
|
|
|
|
|
46
|
|
|
/** |
|
47
|
|
|
* Construct |
|
48
|
|
|
* |
|
49
|
|
|
* @param string $name |
|
50
|
|
|
*/ |
|
51
|
8 |
|
public function __construct($name = null) |
|
52
|
|
|
{ |
|
53
|
8 |
|
$this->initializer = $this->createInitializer(); |
|
54
|
8 |
|
$this->availableTemplates = $this->initializer->getTemplateNames(); |
|
55
|
|
|
|
|
56
|
8 |
|
parent::__construct($name); |
|
57
|
8 |
|
} |
|
58
|
|
|
|
|
59
|
|
|
/** |
|
60
|
|
|
* {@inheritDoc} |
|
61
|
|
|
*/ |
|
62
|
8 |
|
protected function configure() |
|
63
|
|
|
{ |
|
64
|
|
|
$this |
|
65
|
8 |
|
->setName('init') |
|
66
|
8 |
|
->setDescription('Initialize deployer system in your project') |
|
67
|
8 |
|
->addOption('template', 't', InputOption::VALUE_OPTIONAL, 'The template of you project. Available templates: ' . implode(', ', $this->availableTemplates)) |
|
68
|
8 |
|
->addOption('directory', null, InputOption::VALUE_OPTIONAL, 'The directory for create "deploy.php" file', getcwd()) |
|
69
|
8 |
|
->addOption('filename', null, InputOption::VALUE_OPTIONAL, 'The file name. Default "deploy.php"', 'deploy.php'); |
|
70
|
8 |
|
} |
|
71
|
|
|
|
|
72
|
|
|
/** |
|
73
|
|
|
* {@inheritDoc} |
|
74
|
|
|
*/ |
|
75
|
|
|
protected function execute(InputInterface $input, OutputInterface $output) |
|
|
|
|
|
|
76
|
|
|
{ |
|
77
|
|
|
$template = $input->getOption('template'); |
|
78
|
|
|
$directory = $input->getOption('directory'); |
|
79
|
|
|
$file = $input->getOption('filename'); |
|
80
|
|
|
$params = []; |
|
81
|
|
|
|
|
82
|
|
|
if ($template === null) { |
|
83
|
|
|
$io = new SymfonyStyle($input, $output); |
|
84
|
|
|
$helper = $this->getHelper('question'); |
|
|
|
|
|
|
85
|
|
|
$formatter = $this->getHelper('formatter'); |
|
86
|
|
|
|
|
87
|
|
|
// Welcome message |
|
88
|
|
|
$output->writeln([ |
|
89
|
|
|
'', |
|
90
|
|
|
$formatter->formatBlock('Welcome to the Deployer config generator', 'bg=blue;fg=white', true), |
|
91
|
|
|
'', |
|
92
|
|
|
]); |
|
93
|
|
|
|
|
94
|
|
|
$io->text([ |
|
95
|
|
|
'This utility will walk you through creating a deploy.php file.', |
|
96
|
|
|
'It only covers the most common items, and tries to guess sensible defaults.', |
|
97
|
|
|
'', |
|
98
|
|
|
'Press ^C at any time to quit.', |
|
99
|
|
|
]); |
|
100
|
|
|
|
|
101
|
|
|
// Project type |
|
102
|
|
|
$template = $io->choice('Please select your project type', $this->availableTemplates, 'Common'); |
|
103
|
|
|
|
|
104
|
|
|
// Repo |
|
105
|
|
|
$default = false; |
|
106
|
|
|
try { |
|
107
|
|
|
$default = (new Process('git remote get-url origin')) |
|
108
|
|
|
->mustRun() |
|
109
|
|
|
->getOutput(); |
|
110
|
|
|
$default = trim($default); |
|
111
|
|
|
} catch (RuntimeException $e) { |
|
112
|
|
|
// pass |
|
113
|
|
|
} |
|
114
|
|
|
$params['repository'] = $io->ask('Repository', $default); |
|
115
|
|
|
|
|
116
|
|
|
// Privacy |
|
117
|
|
|
$io->text([ |
|
118
|
|
|
'Contribute to the Deployer Development', |
|
119
|
|
|
'', |
|
120
|
|
|
'In order to help development and improve Deployer features in,', |
|
121
|
|
|
'Deployer has a setting for collection of usage data. This function', |
|
122
|
|
|
'collects anonymous usage data and sends it to Deployer. The data is', |
|
123
|
|
|
'used in Deployer development to get reliable statistics on which', |
|
124
|
|
|
'features are used (or not used). The information is not traceable', |
|
125
|
|
|
'to any individual or organization. Participation is voluntary,', |
|
126
|
|
|
'and you can change your mind at any time.', |
|
127
|
|
|
'', |
|
128
|
|
|
'Anonymous usage data contains Deployer version, php version, os type,', |
|
129
|
|
|
'name of the command being executed and whether it was successful or not,', |
|
130
|
|
|
'exception class name, count of hosts and anonymized project hash.', |
|
131
|
|
|
'', |
|
132
|
|
|
'If you would like to allow us to gather this information and help', |
|
133
|
|
|
'us develop a better tool, please add the code below.', |
|
134
|
|
|
'', |
|
135
|
|
|
" <fg=white>set(<fg=cyan>'allow_anonymous_stats'</fg=cyan>, <fg=magenta;options=bold>true</fg=magenta;options=bold>);</fg=white>", |
|
136
|
|
|
'', |
|
137
|
|
|
'This function will not affect the performance of Deployer as', |
|
138
|
|
|
'the data is insignificant and transmitted in separate process.', |
|
139
|
|
|
]); |
|
140
|
|
|
|
|
141
|
|
|
$params['allow_anonymous_stats'] = $GLOBALS['allow_anonymous_stats'] = $io->confirm('Do you confirm?'); |
|
142
|
|
|
} |
|
143
|
|
|
|
|
144
|
|
|
$filePath = $this->initializer->initialize($template, $directory, $file, $params); |
|
145
|
|
|
|
|
146
|
|
|
$output->writeln(sprintf( |
|
147
|
|
|
'<info>Successfully created:</info> <comment>%s</comment>', |
|
148
|
|
|
$filePath |
|
149
|
|
|
)); |
|
150
|
|
|
} |
|
151
|
|
|
|
|
152
|
|
|
/** |
|
153
|
|
|
* Create a initializer system |
|
154
|
|
|
* |
|
155
|
|
|
* @return Initializer |
|
156
|
|
|
*/ |
|
157
|
8 |
|
private function createInitializer() |
|
158
|
|
|
{ |
|
159
|
8 |
|
$initializer = new Initializer(); |
|
160
|
|
|
|
|
161
|
8 |
|
$initializer->addTemplate('Common', new CommonTemplate()); |
|
162
|
8 |
|
$initializer->addTemplate('Laravel', new LaravelTemplate()); |
|
163
|
8 |
|
$initializer->addTemplate('Symfony', new SymfonyTemplate()); |
|
164
|
8 |
|
$initializer->addTemplate('Yii', new YiiTemplate()); |
|
165
|
8 |
|
$initializer->addTemplate('Yii2 Basic App', new Yii2BasicAppTemplate()); |
|
166
|
8 |
|
$initializer->addTemplate('Yii2 Advanced App', new Yii2AdvancedAppTemplate()); |
|
167
|
8 |
|
$initializer->addTemplate('Zend Framework', new ZendTemplate()); |
|
168
|
8 |
|
$initializer->addTemplate('CakePHP', new CakeTemplate()); |
|
169
|
8 |
|
$initializer->addTemplate('CodeIgniter', new CodeIgniterTemplate()); |
|
170
|
8 |
|
$initializer->addTemplate('Drupal', new DrupalTemplate()); |
|
171
|
|
|
|
|
172
|
8 |
|
return $initializer; |
|
173
|
|
|
} |
|
174
|
|
|
} |
|
175
|
|
|
|
Instead of super-globals, we recommend to explicitly inject the dependencies of your class. This makes your code less dependent on global state and it becomes generally more testable: