File size: 793 Bytes
e4f4821
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<?php

namespace Kanboard\Console;

use Kanboard\Core\Queue\JobHandler;
use SimpleQueue\Job;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

/**
 * Class JobCommand
 *
 * @package Kanboard\Console
 * @author  Frederic Guillot
 */
class JobCommand extends BaseCommand
{
    protected function configure()
    {
        $this
            ->setName('job')
            ->setDescription('Execute individual job (read payload from stdin)')
        ;
    }

    protected function execute(InputInterface $input, OutputInterface $output): int
    {
        $payload = fgets(STDIN);

        $job = new Job();
        $job->unserialize($payload);

        JobHandler::getInstance($this->container)->executeJob($job);
        return 0;
    }
}