-
Notifications
You must be signed in to change notification settings - Fork 2
/
ClearRemoteOpcacheHandler.php
36 lines (30 loc) · 1.36 KB
/
ClearRemoteOpcacheHandler.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
<?php
namespace DigipolisGent\Robo\Helpers\EventHandler\DefaultHandler;
use DigipolisGent\CommandBuilder\CommandBuilder;
use DigipolisGent\Robo\Helpers\EventHandler\AbstractTaskEventHandler;
use DigipolisGent\Robo\Helpers\Util\RemoteConfig;
use DigipolisGent\Robo\Task\Deploy\Ssh\Auth\KeyFile;
use Symfony\Component\EventDispatcher\GenericEvent;
class ClearRemoteOpcacheHandler extends AbstractTaskEventHandler
{
use \DigipolisGent\Robo\Task\Deploy\Tasks;
/**
* {@inheritDoc}
*/
public function handle(GenericEvent $event)
{
/** @var RemoteConfig $remoteConfig */
$remoteConfig = $event->getArgument('remoteConfig');
$remoteSettings = $remoteConfig->getRemoteSettings();
$timeouts = $event->getArgument('timeouts');
$auth = new KeyFile($remoteConfig->getUser(), $remoteConfig->getPrivateKeyFile());
$clearOpcache = CommandBuilder::create('vendor/bin/robo digipolis:clear-op-cache')->addArgument($remoteSettings['opcache']['env']);
if (isset($remoteSettings['opcache']['host'])) {
$clearOpcache->addOption('host', $remoteSettings['opcache']['host']);
}
return $this->taskSsh($remoteConfig->getHost(), $auth)
->remoteDirectory($remoteSettings['rootdir'], true)
->timeout($timeouts['clear_op_cache'])
->exec((string) $clearOpcache);
}
}