summaryrefslogtreecommitdiff
path: root/app/Console/CronjobCommand.php
blob: dae13af9488b2b4e35186720726291a621118b7e (plain)
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
<?php

namespace Kanboard\Console;

use Symfony\Component\Console\Input\ArrayInput;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\NullOutput;

class CronjobCommand extends BaseCommand
{
    private $commands = array(
        'projects:daily-stats',
        'notification:overdue-tasks',
        'trigger:tasks',
    );

    protected function configure()
    {
        $this
            ->setName('cronjob')
            ->setDescription('Execute daily cronjob');
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        foreach ($this->commands as $command) {
            $job = $this->getApplication()->find($command);
            $job->run(new ArrayInput(array('command' => $command)), new NullOutput());
        }
    }
}