diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-04-12 21:26:17 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-04-12 21:26:17 -0400 |
commit | af7027ea31a691e2eea6d813f6aa3cf08f8b9d0a (patch) | |
tree | 8524395f06b30f812dca5cd68dd15fa09e3a2410 /app/Console/TaskTriggerCommand.php | |
parent | 2a74ed6e63b05627928e1dd6eeb67d824f4c1903 (diff) |
Rename CLI classes
Diffstat (limited to 'app/Console/TaskTriggerCommand.php')
-rw-r--r-- | app/Console/TaskTriggerCommand.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/app/Console/TaskTriggerCommand.php b/app/Console/TaskTriggerCommand.php new file mode 100644 index 00000000..9e9554f9 --- /dev/null +++ b/app/Console/TaskTriggerCommand.php @@ -0,0 +1,51 @@ +<?php + +namespace Kanboard\Console; + +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; +use Kanboard\Model\Task; +use Kanboard\Event\TaskListEvent; + +class TaskTriggerCommand extends BaseCommand +{ + protected function configure() + { + $this + ->setName('trigger:tasks') + ->setDescription('Trigger scheduler event for all tasks'); + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + foreach ($this->getProjectIds() as $project_id) { + $tasks = $this->taskFinder->getAll($project_id); + $nb_tasks = count($tasks); + + if ($nb_tasks > 0) { + $output->writeln('Trigger task event: project_id='.$project_id.', nb_tasks='.$nb_tasks); + $this->sendEvent($tasks, $project_id); + } + } + } + + private function getProjectIds() + { + $listeners = $this->dispatcher->getListeners(Task::EVENT_DAILY_CRONJOB); + $project_ids = array(); + + foreach ($listeners as $listener) { + $project_ids[] = $listener[0]->getProjectId(); + } + + return array_unique($project_ids); + } + + private function sendEvent(array &$tasks, $project_id) + { + $event = new TaskListEvent(array('project_id' => $project_id)); + $event->setTasks($tasks); + + $this->dispatcher->dispatch(Task::EVENT_DAILY_CRONJOB, $event); + } +} |