-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRunCommandProcessor.php
50 lines (39 loc) · 1.43 KB
/
RunCommandProcessor.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
<?php
namespace Enqueue\AsyncCommand;
use Enqueue\Client\CommandSubscriberInterface;
use Enqueue\Consumption\Result;
use Interop\Queue\PsrContext;
use Interop\Queue\PsrMessage;
use Interop\Queue\PsrProcessor;
use Symfony\Component\Process\PhpExecutableFinder;
use Symfony\Component\Process\Process;
final class RunCommandProcessor implements PsrProcessor, CommandSubscriberInterface
{
/**
* @var string
*/
private $projectDir;
public function __construct($projectDir)
{
$this->projectDir = $projectDir;
}
public function process(PsrMessage $message, PsrContext $context)
{
$command = RunCommand::jsonUnserialize($message->getBody());
$phpBin = (new PhpExecutableFinder())->find();
$consoleBin = file_exists($this->projectDir.'/bin/console') ? './bin/console' : './app/console';
$process = new Process($phpBin.' '.$consoleBin.' '.$command->getCommandLine(), $this->projectDir);
$process->run();
$result = new RunCommandResult($process->getExitCode(), $process->getOutput(), $process->getErrorOutput());
return Result::reply($context->createMessage(json_encode($result)));
}
public static function getSubscribedCommand()
{
return [
'processorName' => Commands::RUN_COMMAND,
'queueName' => Commands::RUN_COMMAND,
'queueNameHardcoded' => true,
'exclusive' => true,
];
}
}