-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathSsh.php
More file actions
217 lines (182 loc) · 6.2 KB
/
Ssh.php
File metadata and controls
217 lines (182 loc) · 6.2 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
<?php
namespace BeSimple\DeploymentBundle\Deployer;
use Sensio\Bundle\GeneratorBundle\Command\Helper\DialogHelper;
use Symfony\Component\Console\Output\ConsoleOutput;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
use BeSimple\DeploymentBundle\Event\CommandEvent;
use BeSimple\DeploymentBundle\Event\FeedbackEvent;
use BeSimple\DeploymentBundle\Events;
class Ssh
{
/**
* @var Logger
*/
protected $logger;
/**
* @var \Symfony\Component\EventDispatcher\EventDispatcherInterface
*/
protected $dispatcher;
/**
* @var array
*/
protected $config;
/**
* @var resource
*/
protected $session;
/**
* @var resource
*/
protected $shell;
/**
* @var array
*/
protected $stdout;
/**
* @var array
*/
protected $stderr;
/**
* @param Logger $logger
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $eventDispatcher
* @param array $config
*/
public function __construct(Logger $logger, EventDispatcherInterface $eventDispatcher, array $config)
{
$this->logger = $logger;
$this->dispatcher = $eventDispatcher;
$this->config = $config;
$this->session = null;
$this->shell = null;
$this->stdout = array();
$this->stdin = array();
$this->stderr = array();
}
/**
* @param string $glue
* @return array|string
*/
public function getStdout($glue = "\n")
{
if (!$glue) {
return $this->stdout;
}
return implode($glue, $this->stdout);
}
/**
* @param string $glue
* @return array|string
*/
public function getStderr($glue = "\n")
{
if (!$glue) {
return $this->stderr;
}
return implode($glue, $this->stderr);
}
/**
* @param array $connection
* @param array $commands
* @param bool $real
* @return array
*/
public function run(array $connection, array $commands, $real = false)
{
$this->connect($connection);
if($real){
foreach($commands as $command){
$this->execute($command, $connection);
}
}
return $this->stdout;
}
/**
* @throws \InvalidArgumentException|\RuntimeException
* @param array $connection
* @return void
*/
protected function connect(array $connection)
{
$methods = @$connection['connect_methods'] ?: @$this->config['connect_methods'];
$this->session = @ssh2_connect($connection['host'], $connection['ssh_port'], $methods);
if (!$this->session) {
throw new \InvalidArgumentException(sprintf('SSH connection failed on "%s:%s"', $connection['host'], $connection['ssh_port']));
}
$username = @$connection['username'] ?: @$this->config['username'];
$password = @$connection['password'] ?: @$this->config['password'];
if($username && $password){
if(!ssh2_auth_password($this->session, $username, $password)){
throw new \InvalidArgumentException(sprintf('SSH authentication failed for user "%s"', $username));
}
}elseif($username){
$pubkey = @$connection['pubkey_file'] ?: @$this->config['pubkey_file'];
$privkey = @$connection['privkey_file'] ?: @$this->config['privkey_file'];
$passphrase = @$connection['passphrase'] ?: @$this->config['passphrase'];
$co = new ConsoleOutput();
$helper = new DialogHelper();
$helper->setInputStream($this->stdin);
if(!$pubkey){
$pubkey = $helper->ask($co,'pubkey_file?');
}
if(!$privkey){
$privkey = $helper->ask($co,'privkey_file?');
}
if(!$passphrase){
$passphrase = $helper->askHiddenResponse($co,'passphrase?');
}
if(!ssh2_auth_pubkey_file($this->session, $username, $pubkey, $privkey, $passphrase)){
throw new \InvalidArgumentException(sprintf('SSH authentication failed for user "%s" with public key "%s"', $username, $pubkey));
}
}
$this->stdout = array();
$this->stdin = array();
}
/**
* @param array $commandArray
* @param array $connection
*/
protected function execute(array $commandArray, array $connection)
{
$command = $this->buildCommand($commandArray, $connection);
$this->dispatcher->dispatch(Events::onDeploymentSshStart, new CommandEvent($command));
$outStream = ssh2_exec($this->session, $command);
$errStream = ssh2_fetch_stream($outStream, SSH2_STREAM_STDERR);
stream_set_blocking($outStream, true);
stream_set_blocking($errStream, true);
$stdout = stream_get_contents($outStream);
$stderr = stream_get_contents($errStream);
if($stdout){
$this->dispatcher->dispatch(Events::onDeploymentSshFeedback, new FeedbackEvent('out', $stdout));
}
if($stderr){
$this->dispatcher->dispatch(Events::onDeploymentSshFeedback, new FeedbackEvent('err', $stderr));
}
if(!$stderr){
$this->dispatcher->dispatch(Events::onDeploymentSshSuccess, new CommandEvent($command));
}
fclose($outStream);
fclose($errStream);
}
/**
* @param array $commandArray
* @param array $connection
* @return string
* @throws \InvalidArgumentException
*/
protected function buildCommand(array $commandArray, array $connection)
{
$envs = '';
foreach($commandArray['env'] as $key => $value){
$envs .= 'declare -x '.$key.'='.$value.' && ';
}
switch($commandArray['type']){
case 'shell':
return sprintf("%s%s", $envs, $commandArray['command']);
break;
case 'symfony':
return sprintf('%scd %s && %s %s', $envs, $connection['path'], $connection['symfony_command'], $commandArray['command']);
break;
}
throw new \InvalidArgumentException(sprintf('CommandType "%s" invalid', $commandArray['type']));
}
}